@misterhuydo/sentinel 1.0.76 → 1.0.82
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/minify-map.json +6 -0
- package/.cairn/session.json +2 -2
- package/.cairn/views/2a85cc_init.js +2 -0
- package/lib/init.js +356 -319
- package/lib/upgrade.js +40 -0
- package/package.json +21 -21
- package/python/sentinel/fix_engine.py +3 -1
- package/python/sentinel/sentinel_boss.py +1573 -1367
- package/python/sentinel/slack_bot.py +427 -384
- package/python/sentinel/state_store.py +423 -341
package/.cairn/.hint-lock
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2026-03-22T17:
|
|
1
|
+
2026-03-22T17:57:09.109Z
|
package/.cairn/minify-map.json
CHANGED
|
@@ -4,5 +4,11 @@
|
|
|
4
4
|
"state": "compressed",
|
|
5
5
|
"minifiedAt": 1774128147034.2527,
|
|
6
6
|
"readCount": 1
|
|
7
|
+
},
|
|
8
|
+
"J:\\Projects\\Sentinel\\cli\\lib\\init.js": {
|
|
9
|
+
"tempPath": "J:\\Projects\\Sentinel\\cli\\.cairn\\views\\2a85cc_init.js",
|
|
10
|
+
"state": "compressed",
|
|
11
|
+
"minifiedAt": 1774189651415.41,
|
|
12
|
+
"readCount": 1
|
|
7
13
|
}
|
|
8
14
|
}
|
package/.cairn/session.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"message": "Auto-checkpoint at 2026-03-22T17:
|
|
3
|
-
"checkpoint_at": "2026-03-22T17:
|
|
2
|
+
"message": "Auto-checkpoint at 2026-03-22T17:52:08.090Z",
|
|
3
|
+
"checkpoint_at": "2026-03-22T17:52:08.091Z",
|
|
4
4
|
"active_files": [],
|
|
5
5
|
"notes": [],
|
|
6
6
|
"mtime_snapshot": {}
|
|
@@ -125,6 +125,8 @@ module.exports = async function init() {
|
|
|
125
125
|
step('Installing Node tools…');
|
|
126
126
|
installNpmGlobal('@misterhuydo/cairn-mcp', 'cairn');
|
|
127
127
|
installNpmGlobal('@anthropic-ai/claude-code', 'claude');
|
|
128
|
+
info('Hooking Cairn MCP into Claude Code…');
|
|
129
|
+
runLive('cairn', ['install']);
|
|
128
130
|
step('Claude Code authentication…');
|
|
129
131
|
if (authMode === 'apikey' && anthropicKey) {
|
|
130
132
|
ok('API key will be written to each project\'s sentinel.properties');
|