Compare commits

..

No commits in common. "f504584ce4fc64da2683698916953d2a37afce01" and "befad9b539de69c9f0874c2b798090010d134346" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@because/sandlot",
"version": "0.0.45",
"version": "0.0.44",
"description": "Sandboxed, branch-based development with Claude",
"type": "module",
"bin": {

View File

@ -220,6 +220,7 @@ async function configureEnvironment(home: string, apiKey: string): Promise<void>
const hooks = {
UserPromptSubmit: [{ hooks: [{ type: "command", command: `${activityBin} active` }] }],
PreToolUse: [{ hooks: [{ type: "command", command: `${activityBin} active` }] }],
Stop: [{ hooks: [{ type: "command", command: `${activityBin} idle` }] }],
}
const statusLine = { type: "command", command: `/home/${USER}/.local/bin/sandlot-statusline` }
const settingsJson = JSON.stringify({ apiKeyHelper: "~/.claude/api-key-helper.sh", skipDangerousModePermissionPrompt: true, hooks, statusLine })