@misterhuydo/sentinel 1.4.89 → 1.4.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cairn/.hint-lock +1 -1
- package/.cairn/session.json +2 -2
- package/lib/.cairn/minify-map.json +8 -1
- package/lib/.cairn/views/ff8fde_test.js +172 -0
- package/lib/add.js +8 -20
- package/package.json +1 -1
- package/python/sentinel/config_loader.py +12 -4
- package/python/sentinel/dev_watcher.py +288 -0
- package/python/sentinel/fix_engine.py +25 -0
- package/python/sentinel/git_manager.py +51 -1
- package/python/sentinel/main.py +268 -2
- package/python/sentinel/repo_task_engine.py +381 -0
- package/python/sentinel/sentinel_boss.py +373 -6
- package/python/sentinel/sentinel_dev.py +448 -0
- package/python/sentinel/state_store.py +121 -0
- package/templates/log-configs/_example.properties +21 -32
- package/templates/sentinel.properties +5 -6
|
@@ -42,12 +42,11 @@ WORKSPACE_DIR=./workspace
|
|
|
42
42
|
# this key instead of the shared Claude Pro subscription.
|
|
43
43
|
# ANTHROPIC_API_KEY=sk-ant-...
|
|
44
44
|
|
|
45
|
-
# Private
|
|
46
|
-
#
|
|
47
|
-
#
|
|
48
|
-
#
|
|
49
|
-
# Run `sentinel add` to generate
|
|
50
|
-
# PRIVATE_SLACK=false
|
|
45
|
+
# Private credentials — place any project-specific secrets in private_sentinel.properties
|
|
46
|
+
# in this project directory (gitignored — never committed to the config repo).
|
|
47
|
+
# Sentinel auto-loads it if present. Supported keys: SLACK_BOT_TOKEN, SLACK_APP_TOKEN,
|
|
48
|
+
# GITHUB_TOKEN, ANTHROPIC_API_KEY, and any other sentinel.properties key.
|
|
49
|
+
# Run `sentinel add` to generate private_sentinel.properties interactively.
|
|
51
50
|
|
|
52
51
|
# Boss mode override — overrides the workspace-level BOSS_MODE for this project only.
|
|
53
52
|
# Options: standard (default) | strict | fun
|