@misterhuydo/sentinel 1.0.70 → 1.0.71

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 CHANGED
@@ -1 +1 @@
1
- 2026-03-22T16:24:09.877Z
1
+ 2026-03-22T16:55:34.040Z
@@ -1,10 +1,4 @@
1
1
  {
2
- "J:\\Projects\\Sentinel\\cli\\lib\\upgrade.js": {
3
- "tempPath": "J:\\Projects\\Sentinel\\cli\\.cairn\\views\\fb78ac_upgrade.js",
4
- "state": "edit-ready",
5
- "minifiedAt": 1774129312316.9353,
6
- "readCount": 1
7
- },
8
2
  "J:\\Projects\\Sentinel\\cli\\bin\\sentinel.js": {
9
3
  "tempPath": "J:\\Projects\\Sentinel\\cli\\.cairn\\views\\a348d8_sentinel.js",
10
4
  "state": "compressed",
@@ -1,6 +1,6 @@
1
1
  {
2
- "message": "Auto-checkpoint at 2026-03-22T16:47:05.682Z",
3
- "checkpoint_at": "2026-03-22T16:47:05.683Z",
2
+ "message": "Auto-checkpoint at 2026-03-22T16:53:06.075Z",
3
+ "checkpoint_at": "2026-03-22T16:53:06.076Z",
4
4
  "active_files": [],
5
5
  "notes": [],
6
6
  "mtime_snapshot": {}
package/lib/upgrade.js CHANGED
@@ -31,6 +31,15 @@ module.exports = async function upgrade() {
31
31
  process.exit(1);
32
32
  }
33
33
 
34
+ // Upgrade dependencies
35
+ info('Upgrading @misterhuydo/cairn-mcp...');
36
+ spawnSync('npm', ['install', '-g', '@misterhuydo/cairn-mcp@latest'], { stdio: 'inherit' });
37
+ ok('@misterhuydo/cairn-mcp upgraded');
38
+
39
+ info('Upgrading @anthropic-ai/claude-code...');
40
+ spawnSync('npm', ['install', '-g', '@anthropic-ai/claude-code@latest'], { stdio: 'inherit' });
41
+ ok('@anthropic-ai/claude-code upgraded');
42
+
34
43
  // Find where npm installed it
35
44
  const npmRoot = execSync('npm root -g', { encoding: 'utf8' }).trim();
36
45
  const pkgDir = path.join(npmRoot, '@misterhuydo', 'sentinel');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@misterhuydo/sentinel",
3
- "version": "1.0.70",
3
+ "version": "1.0.71",
4
4
  "description": "Sentinel — Autonomous DevOps Agent installer and manager",
5
5
  "bin": {
6
6
  "sentinel": "./bin/sentinel.js"