CtrlK
BlogDocsLog inGet started
Tessl Logo

juliusbrussee/caveman

Compressed caveman-style prose for AI coding agents — cuts ~65% output tokens while keeping full technical accuracy

96

1.00x
Quality

100%

Does it follow best practices?

Impact

96%

1.00x

Average score across 38 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

task.mdevals/scenario-15/

Java Thread Safety

Problem

This Java singleton is used in a multi-threaded web server, and users are occasionally seeing each other's data:

public class UserContext {
    private static UserContext instance;
    private String currentUserId;

    public static UserContext getInstance() {
        if (instance == null) instance = new UserContext();
        return instance;
    }

    public void setUser(String userId) { this.currentUserId = userId; }
    public String getUser() { return this.currentUserId; }
}

Identify the bugs and provide the fix.

evals

README.md

SKILL.md

tile.json