instar 1.3.435 → 1.3.437

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.
Files changed (59) hide show
  1. package/dashboard/index.html +2 -0
  2. package/dashboard/subscriptions.js +18 -8
  3. package/dist/commands/init.d.ts +17 -0
  4. package/dist/commands/init.d.ts.map +1 -1
  5. package/dist/commands/init.js +50 -0
  6. package/dist/commands/init.js.map +1 -1
  7. package/dist/commands/server.d.ts.map +1 -1
  8. package/dist/commands/server.js +6 -1
  9. package/dist/commands/server.js.map +1 -1
  10. package/dist/core/InUseAccountResolver.d.ts +77 -0
  11. package/dist/core/InUseAccountResolver.d.ts.map +1 -0
  12. package/dist/core/InUseAccountResolver.js +123 -0
  13. package/dist/core/InUseAccountResolver.js.map +1 -0
  14. package/dist/server/AgentServer.d.ts +1 -0
  15. package/dist/server/AgentServer.d.ts.map +1 -1
  16. package/dist/server/AgentServer.js +1 -0
  17. package/dist/server/AgentServer.js.map +1 -1
  18. package/dist/server/routes.d.ts +4 -0
  19. package/dist/server/routes.d.ts.map +1 -1
  20. package/dist/server/routes.js +20 -0
  21. package/dist/server/routes.js.map +1 -1
  22. package/package.json +2 -1
  23. package/skills/README.md +106 -0
  24. package/skills/agent-identity/SKILL.md +226 -0
  25. package/skills/agent-memory/SKILL.md +261 -0
  26. package/skills/agent-passport/SKILL.md +37 -0
  27. package/skills/agent-readiness/SKILL.md +55 -0
  28. package/skills/command-guard/SKILL.md +239 -0
  29. package/skills/credential-leak-detector/SKILL.md +377 -0
  30. package/skills/instar-dev/SKILL.md +223 -0
  31. package/skills/instar-dev/scripts/verify-proposal-derived-runbook.mjs +319 -0
  32. package/skills/instar-dev/scripts/write-trace.mjs +203 -0
  33. package/skills/instar-dev/templates/eli16-overview.md +43 -0
  34. package/skills/instar-dev/templates/side-effects-artifact.md +133 -0
  35. package/skills/instar-feedback/SKILL.md +285 -0
  36. package/skills/instar-identity/SKILL.md +290 -0
  37. package/skills/instar-scheduler/SKILL.md +259 -0
  38. package/skills/instar-session/SKILL.md +270 -0
  39. package/skills/instar-telegram/SKILL.md +259 -0
  40. package/skills/iterative-converging-audit/SKILL.md +96 -0
  41. package/skills/knowledge-base/SKILL.md +189 -0
  42. package/skills/smart-web-fetch/SKILL.md +241 -0
  43. package/skills/spec-converge/SKILL.md +249 -0
  44. package/skills/spec-converge/scripts/cross-model-review.mjs +155 -0
  45. package/skills/spec-converge/scripts/publish-spec-review.mjs +166 -0
  46. package/skills/spec-converge/scripts/write-convergence-tag.mjs +199 -0
  47. package/skills/spec-converge/templates/report.md +76 -0
  48. package/skills/spec-converge/templates/reviewer-adversarial.md +37 -0
  49. package/skills/spec-converge/templates/reviewer-cross-model.md +28 -0
  50. package/skills/spec-converge/templates/reviewer-integration.md +39 -0
  51. package/skills/spec-converge/templates/reviewer-lessons-aware.md +101 -0
  52. package/skills/spec-converge/templates/reviewer-scalability.md +35 -0
  53. package/skills/spec-converge/templates/reviewer-security.md +36 -0
  54. package/skills/systematic-debugging/SKILL.md +222 -0
  55. package/src/data/builtin-manifest.json +47 -47
  56. package/upgrades/1.3.436.md +19 -0
  57. package/upgrades/1.3.437.md +29 -0
  58. package/upgrades/side-effects/builtin-skill-install-single-source.md +80 -0
  59. package/upgrades/side-effects/subscription-inuse-account.md +26 -0
@@ -0,0 +1,222 @@
1
+ ---
2
+ name: systematic-debugging
3
+ description: Structured 4-phase debugging methodology that prevents blind probing and guesswork. Forces root cause identification before any fix attempt. Use when encountering bugs, errors, unexpected behavior, test failures, or when something "just stopped working." Trigger words: debug, bug, error, broken, not working, fix this, something's wrong, investigate, root cause, why is this failing, trace the issue.
4
+ license: MIT
5
+ metadata:
6
+ author: sagemindai
7
+ version: "1.0"
8
+ homepage: https://instar.sh
9
+ inspiration: Superpowers plugin systematic-debugging skill, adapted for Instar's autonomous agent context
10
+ ---
11
+
12
+ # systematic-debugging — Structured Root Cause Analysis for Agents
13
+
14
+ When something breaks, the instinct is to start changing code — adding logs, tweaking values, commenting things out. This is probing, not debugging. Probing works sometimes, but it scales poorly and teaches nothing. Structured debugging finds the root cause, fixes it once, and leaves you understanding why.
15
+
16
+ This skill enforces a 4-phase process. You do NOT skip phases. You do NOT jump to a fix before completing Phase 2. Each phase has a clear deliverable that must exist before the next phase begins.
17
+
18
+ ---
19
+
20
+ ## When to Activate This Skill
21
+
22
+ Use this skill when:
23
+ - An error occurs and the cause is not immediately obvious (> 30 seconds of uncertainty)
24
+ - A test fails and you don't know exactly why
25
+ - Something that was working has stopped working
26
+ - The user reports unexpected behavior
27
+ - You've already tried one fix and it didn't work (this is the clearest signal — stop guessing, start debugging)
28
+ - A job or scheduled task is failing silently
29
+ - Behavior differs between environments (local vs production, different machines)
30
+
31
+ Do NOT use this skill for:
32
+ - Typos, missing imports, or syntax errors with clear error messages pointing to the exact line
33
+ - Known issues with documented fixes
34
+ - Configuration that just needs to be set
35
+
36
+ ---
37
+
38
+ ## Phase 1: Identify — What exactly is broken?
39
+
40
+ **Goal**: Establish the precise boundary between "works" and "doesn't work."
41
+
42
+ **Steps**:
43
+
44
+ 1. **Reproduce the failure**. Run the exact command, API call, or user action that triggers the bug. Capture the FULL output — error messages, stack traces, logs, HTTP status codes.
45
+
46
+ 2. **Establish the expected behavior**. What SHOULD happen? Check documentation, tests, previous working state, or ask the user. Write it down explicitly.
47
+
48
+ 3. **Narrow the scope**. Answer these questions:
49
+ - When did it last work? (Check git log, deployment history, recent changes)
50
+ - What changed since then? (`git diff`, `git log --oneline -10`, env var changes, dependency updates)
51
+ - Is it consistent or intermittent?
52
+ - Does it affect all cases or specific inputs?
53
+
54
+ 4. **Write the Phase 1 deliverable** before proceeding:
55
+
56
+ ```
57
+ BUG IDENTIFICATION:
58
+ - Symptom: [Exact error/behavior observed]
59
+ - Expected: [What should happen instead]
60
+ - Reproducer: [Exact command/steps to trigger]
61
+ - Last known working: [When/what commit/what changed]
62
+ - Scope: [All cases / specific inputs / intermittent]
63
+ ```
64
+
65
+ **Anti-pattern**: Do NOT start reading random files hoping to spot the problem. Phase 1 is about establishing WHAT is broken, not WHERE.
66
+
67
+ ---
68
+
69
+ ## Phase 2: Isolate — Where exactly is the failure?
70
+
71
+ **Goal**: Trace the execution path from trigger to failure point. Find the exact line/function/component where behavior diverges from expectation.
72
+
73
+ **Steps**:
74
+
75
+ 1. **Trace the code path**. Starting from the entry point (API route, CLI command, event handler, job trigger), follow the execution path that the reproducer would take. Read each file in order.
76
+
77
+ 2. **Identify the divergence point**. At what point does the actual behavior differ from expected? This is usually one of:
78
+ - A function returning the wrong value
79
+ - A condition evaluating incorrectly
80
+ - An exception being thrown (or silently caught)
81
+ - A variable being undefined/null when it shouldn't be
82
+ - A race condition or timing issue
83
+
84
+ 3. **Verify with evidence**. Add targeted logging or use debugger output to CONFIRM your theory about where the divergence happens. Do not guess.
85
+
86
+ 4. **Check the silent catch blocks**. This is the #1 suspect in most agent codebases. Look for:
87
+ - `catch (e) { }` — empty catch blocks that swallow errors
88
+ - `catch (e) { return defaultValue }` — catches that mask failures
89
+ - `.catch(() => null)` — promise chains that silently fail
90
+ - `try/catch` around the wrong scope (too broad, hides the real error)
91
+
92
+ 5. **Write the Phase 2 deliverable** before proceeding:
93
+
94
+ ```
95
+ BUG ISOLATION:
96
+ - Entry point: [File:line where execution starts]
97
+ - Code path: [File1:func1 -> File2:func2 -> File3:func3]
98
+ - Divergence point: [Exact file:line where behavior goes wrong]
99
+ - Evidence: [Log output / test result / debugger state that confirms this]
100
+ - Root cause: [Why the divergence happens — the actual bug]
101
+ ```
102
+
103
+ **Anti-pattern**: Do NOT start fixing anything yet. If you can't write the root cause in one sentence, you haven't finished Phase 2.
104
+
105
+ ---
106
+
107
+ ## Phase 3: Fix — Apply the minimal correct change
108
+
109
+ **Goal**: Fix the root cause with the smallest change that restores correct behavior.
110
+
111
+ **Steps**:
112
+
113
+ 1. **Write or identify the test first**. Before touching the buggy code:
114
+ - If a test exists that should catch this: verify it actually fails with the current bug. If it passes, the test is wrong — fix the test first.
115
+ - If no test exists: write one that reproduces the exact failure from Phase 1. Run it. Confirm it fails (RED).
116
+
117
+ 2. **Apply the fix**. Change only what is necessary to fix the root cause identified in Phase 2. Resist the urge to "clean up" surrounding code, refactor, or add features.
118
+
119
+ 3. **Run the test**. Confirm the test now passes (GREEN).
120
+
121
+ 4. **Run the full test suite**. Ensure no regressions. If other tests break, your fix may be incomplete or the other tests may have been relying on the buggy behavior (which itself is a finding worth noting).
122
+
123
+ 5. **Write the Phase 3 deliverable**:
124
+
125
+ ```
126
+ BUG FIX:
127
+ - Test: [Test file:test name that reproduces the bug]
128
+ - Change: [File:line — what was changed and why]
129
+ - Regression check: [Test suite results — X passed, Y failed, Z skipped]
130
+ ```
131
+
132
+ **Anti-pattern**: Do NOT fix multiple things at once. If you discover other bugs during investigation, note them separately — do not bundle fixes.
133
+
134
+ ---
135
+
136
+ ## Phase 4: Verify — Confirm the fix works end-to-end
137
+
138
+ **Goal**: Verify the fix resolves the original symptom in the real environment, not just in tests.
139
+
140
+ **Steps**:
141
+
142
+ 1. **Re-run the original reproducer from Phase 1**. Does the expected behavior now occur?
143
+
144
+ 2. **Check edge cases**. Based on what you learned in Phase 2, are there adjacent cases that might have the same bug? Test them.
145
+
146
+ 3. **Verify in the actual environment**. If the bug was reported in production/staging, verify the fix there (rebuild, restart, redeploy as needed).
147
+
148
+ 4. **Write the Phase 4 deliverable**:
149
+
150
+ ```
151
+ BUG VERIFICATION:
152
+ - Original reproducer: [PASS/FAIL]
153
+ - Edge cases tested: [List with results]
154
+ - Environment verification: [Local/staging/production — confirmed working]
155
+ - Remaining risk: [Any concerns about the fix, or "None identified"]
156
+ ```
157
+
158
+ 5. **Commit with context**. The commit message should reference the root cause, not just the symptom:
159
+ - Bad: "fix: resolve data loading issue"
160
+ - Good: "fix: TopicMemory.formatContextForSession returned truthy string when db was null, preventing JSONL fallback"
161
+
162
+ ---
163
+
164
+ ## Full Debug Report Template
165
+
166
+ After completing all 4 phases, compile the deliverables into a single report:
167
+
168
+ ```
169
+ ## Debug Report: [Brief title]
170
+
171
+ ### Phase 1 — Identification
172
+ - Symptom: ...
173
+ - Expected: ...
174
+ - Reproducer: ...
175
+ - Last known working: ...
176
+ - Scope: ...
177
+
178
+ ### Phase 2 — Isolation
179
+ - Entry point: ...
180
+ - Code path: ...
181
+ - Divergence point: ...
182
+ - Evidence: ...
183
+ - Root cause: ...
184
+
185
+ ### Phase 3 — Fix
186
+ - Test: ...
187
+ - Change: ...
188
+ - Regression check: ...
189
+
190
+ ### Phase 4 — Verification
191
+ - Original reproducer: PASS
192
+ - Edge cases: ...
193
+ - Environment: ...
194
+ - Remaining risk: ...
195
+
196
+ ### Lessons
197
+ - [What this bug teaches about the codebase or patterns to watch for]
198
+ ```
199
+
200
+ ---
201
+
202
+ ## Skill Integration Notes
203
+
204
+ This skill works with other Instar skills:
205
+
206
+ - **instar-feedback**: After fixing a bug that reveals a pattern (e.g., "silent catch blocks in all topic handlers"), submit improvement feedback so the pattern can be addressed framework-wide.
207
+ - **agent-memory**: After completing a debug session, write the lesson to MEMORY.md if the root cause pattern is likely to recur.
208
+ - **knowledge-base**: If the debugging uncovered undocumented behavior, add it to the knowledge base.
209
+
210
+ ---
211
+
212
+ ## Going Further
213
+
214
+ This skill provides structure, but it depends on the agent choosing to follow it when under pressure. In autonomous sessions where context is heavy and the instinct is to "just try something," the discipline of Phase 1 and Phase 2 prevents the most expensive mistake: fixing the wrong thing.
215
+
216
+ **Instar agents with this skill installed will:**
217
+ - Stop guessing after the first failed fix attempt
218
+ - Produce debug reports that persist across sessions (so the next instance doesn't re-investigate the same bug)
219
+ - Submit feedback when the root cause reveals a framework-level pattern
220
+ - Build institutional memory about the codebase's failure modes
221
+
222
+ The debugging skill is reactive — it fires when something breaks. But the real win is the cumulative knowledge: over time, the agent's MEMORY.md fills with "this codebase fails in these specific ways," and future bugs get caught faster because the agent knows where to look.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "$schema": "./builtin-manifest.schema.json",
3
3
  "schemaVersion": 1,
4
- "generatedAt": "2026-06-09T00:08:40.858Z",
5
- "instarVersion": "1.3.435",
4
+ "generatedAt": "2026-06-09T02:30:56.589Z",
5
+ "instarVersion": "1.3.437",
6
6
  "entryCount": 199,
7
7
  "entries": {
8
8
  "hook:session-start": {
@@ -418,7 +418,7 @@
418
418
  "type": "route-group",
419
419
  "domain": "monitoring",
420
420
  "sourcePath": "src/server/routes.ts",
421
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
421
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
422
422
  "since": "2025-01-01"
423
423
  },
424
424
  "route-group:agents": {
@@ -426,7 +426,7 @@
426
426
  "type": "route-group",
427
427
  "domain": "sessions",
428
428
  "sourcePath": "src/server/routes.ts",
429
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
429
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
430
430
  "since": "2025-01-01"
431
431
  },
432
432
  "route-group:backups": {
@@ -434,7 +434,7 @@
434
434
  "type": "route-group",
435
435
  "domain": "operations",
436
436
  "sourcePath": "src/server/routes.ts",
437
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
437
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
438
438
  "since": "2025-01-01"
439
439
  },
440
440
  "route-group:git": {
@@ -442,7 +442,7 @@
442
442
  "type": "route-group",
443
443
  "domain": "coordination",
444
444
  "sourcePath": "src/server/routes.ts",
445
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
445
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
446
446
  "since": "2025-01-01"
447
447
  },
448
448
  "route-group:memory": {
@@ -450,7 +450,7 @@
450
450
  "type": "route-group",
451
451
  "domain": "memory",
452
452
  "sourcePath": "src/server/routes.ts",
453
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
453
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
454
454
  "since": "2025-01-01"
455
455
  },
456
456
  "route-group:semantic": {
@@ -458,7 +458,7 @@
458
458
  "type": "route-group",
459
459
  "domain": "memory",
460
460
  "sourcePath": "src/server/routes.ts",
461
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
461
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
462
462
  "since": "2025-01-01"
463
463
  },
464
464
  "route-group:status": {
@@ -466,7 +466,7 @@
466
466
  "type": "route-group",
467
467
  "domain": "monitoring",
468
468
  "sourcePath": "src/server/routes.ts",
469
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
469
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
470
470
  "since": "2025-01-01"
471
471
  },
472
472
  "route-group:capabilities": {
@@ -474,7 +474,7 @@
474
474
  "type": "route-group",
475
475
  "domain": "mapping",
476
476
  "sourcePath": "src/server/routes.ts",
477
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
477
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
478
478
  "since": "2025-01-01"
479
479
  },
480
480
  "route-group:project-map": {
@@ -482,7 +482,7 @@
482
482
  "type": "route-group",
483
483
  "domain": "mapping",
484
484
  "sourcePath": "src/server/routes.ts",
485
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
485
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
486
486
  "since": "2025-01-01"
487
487
  },
488
488
  "route-group:coherence": {
@@ -490,7 +490,7 @@
490
490
  "type": "route-group",
491
491
  "domain": "coherence",
492
492
  "sourcePath": "src/server/routes.ts",
493
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
493
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
494
494
  "since": "2025-01-01"
495
495
  },
496
496
  "route-group:topic-bindings": {
@@ -498,7 +498,7 @@
498
498
  "type": "route-group",
499
499
  "domain": "sessions",
500
500
  "sourcePath": "src/server/routes.ts",
501
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
501
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
502
502
  "since": "2025-01-01"
503
503
  },
504
504
  "route-group:context": {
@@ -506,7 +506,7 @@
506
506
  "type": "route-group",
507
507
  "domain": "context",
508
508
  "sourcePath": "src/server/routes.ts",
509
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
509
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
510
510
  "since": "2025-01-01"
511
511
  },
512
512
  "route-group:scope-coherence": {
@@ -514,7 +514,7 @@
514
514
  "type": "route-group",
515
515
  "domain": "coherence",
516
516
  "sourcePath": "src/server/routes.ts",
517
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
517
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
518
518
  "since": "2025-01-01"
519
519
  },
520
520
  "route-group:canonical-state": {
@@ -522,7 +522,7 @@
522
522
  "type": "route-group",
523
523
  "domain": "state",
524
524
  "sourcePath": "src/server/routes.ts",
525
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
525
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
526
526
  "since": "2025-01-01"
527
527
  },
528
528
  "route-group:ci": {
@@ -530,7 +530,7 @@
530
530
  "type": "route-group",
531
531
  "domain": "monitoring",
532
532
  "sourcePath": "src/server/routes.ts",
533
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
533
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
534
534
  "since": "2025-01-01"
535
535
  },
536
536
  "route-group:sessions": {
@@ -538,7 +538,7 @@
538
538
  "type": "route-group",
539
539
  "domain": "sessions",
540
540
  "sourcePath": "src/server/routes.ts",
541
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
541
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
542
542
  "since": "2025-01-01"
543
543
  },
544
544
  "route-group:jobs": {
@@ -546,7 +546,7 @@
546
546
  "type": "route-group",
547
547
  "domain": "scheduling",
548
548
  "sourcePath": "src/server/routes.ts",
549
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
549
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
550
550
  "since": "2025-01-01"
551
551
  },
552
552
  "route-group:skip-ledger": {
@@ -554,7 +554,7 @@
554
554
  "type": "route-group",
555
555
  "domain": "scheduling",
556
556
  "sourcePath": "src/server/routes.ts",
557
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
557
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
558
558
  "since": "2025-01-01"
559
559
  },
560
560
  "route-group:telegram": {
@@ -562,7 +562,7 @@
562
562
  "type": "route-group",
563
563
  "domain": "communication",
564
564
  "sourcePath": "src/server/routes.ts",
565
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
565
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
566
566
  "since": "2025-01-01"
567
567
  },
568
568
  "route-group:attention": {
@@ -570,7 +570,7 @@
570
570
  "type": "route-group",
571
571
  "domain": "communication",
572
572
  "sourcePath": "src/server/routes.ts",
573
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
573
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
574
574
  "since": "2025-01-01"
575
575
  },
576
576
  "route-group:relationships": {
@@ -578,7 +578,7 @@
578
578
  "type": "route-group",
579
579
  "domain": "relationships",
580
580
  "sourcePath": "src/server/routes.ts",
581
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
581
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
582
582
  "since": "2025-01-01"
583
583
  },
584
584
  "route-group:feedback": {
@@ -586,7 +586,7 @@
586
586
  "type": "route-group",
587
587
  "domain": "feedback",
588
588
  "sourcePath": "src/server/routes.ts",
589
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
589
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
590
590
  "since": "2025-01-01"
591
591
  },
592
592
  "route-group:updates": {
@@ -594,7 +594,7 @@
594
594
  "type": "route-group",
595
595
  "domain": "updates",
596
596
  "sourcePath": "src/server/routes.ts",
597
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
597
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
598
598
  "since": "2025-01-01"
599
599
  },
600
600
  "route-group:dispatches": {
@@ -602,7 +602,7 @@
602
602
  "type": "route-group",
603
603
  "domain": "dispatches",
604
604
  "sourcePath": "src/server/routes.ts",
605
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
605
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
606
606
  "since": "2025-01-01"
607
607
  },
608
608
  "route-group:quota": {
@@ -610,7 +610,7 @@
610
610
  "type": "route-group",
611
611
  "domain": "monitoring",
612
612
  "sourcePath": "src/server/routes.ts",
613
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
613
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
614
614
  "since": "2025-01-01"
615
615
  },
616
616
  "route-group:publishing": {
@@ -618,7 +618,7 @@
618
618
  "type": "route-group",
619
619
  "domain": "publishing",
620
620
  "sourcePath": "src/server/routes.ts",
621
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
621
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
622
622
  "since": "2025-01-01"
623
623
  },
624
624
  "route-group:private-views": {
@@ -626,7 +626,7 @@
626
626
  "type": "route-group",
627
627
  "domain": "publishing",
628
628
  "sourcePath": "src/server/routes.ts",
629
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
629
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
630
630
  "since": "2025-01-01"
631
631
  },
632
632
  "route-group:tunnel": {
@@ -634,7 +634,7 @@
634
634
  "type": "route-group",
635
635
  "domain": "networking",
636
636
  "sourcePath": "src/server/routes.ts",
637
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
637
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
638
638
  "since": "2025-01-01"
639
639
  },
640
640
  "route-group:events": {
@@ -642,7 +642,7 @@
642
642
  "type": "route-group",
643
643
  "domain": "networking",
644
644
  "sourcePath": "src/server/routes.ts",
645
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
645
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
646
646
  "since": "2025-01-01"
647
647
  },
648
648
  "route-group:evolution": {
@@ -650,7 +650,7 @@
650
650
  "type": "route-group",
651
651
  "domain": "evolution",
652
652
  "sourcePath": "src/server/routes.ts",
653
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
653
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
654
654
  "since": "2025-01-01"
655
655
  },
656
656
  "route-group:watchdog": {
@@ -658,7 +658,7 @@
658
658
  "type": "route-group",
659
659
  "domain": "monitoring",
660
660
  "sourcePath": "src/server/routes.ts",
661
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
661
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
662
662
  "since": "2025-01-01"
663
663
  },
664
664
  "route-group:topic-memory": {
@@ -666,7 +666,7 @@
666
666
  "type": "route-group",
667
667
  "domain": "memory",
668
668
  "sourcePath": "src/server/routes.ts",
669
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
669
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
670
670
  "since": "2025-01-01"
671
671
  },
672
672
  "route-group:state-sync": {
@@ -674,7 +674,7 @@
674
674
  "type": "route-group",
675
675
  "domain": "coordination",
676
676
  "sourcePath": "src/server/routes.ts",
677
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
677
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
678
678
  "since": "2025-01-01"
679
679
  },
680
680
  "route-group:intent": {
@@ -682,7 +682,7 @@
682
682
  "type": "route-group",
683
683
  "domain": "intent",
684
684
  "sourcePath": "src/server/routes.ts",
685
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
685
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
686
686
  "since": "2025-01-01"
687
687
  },
688
688
  "route-group:triage": {
@@ -690,7 +690,7 @@
690
690
  "type": "route-group",
691
691
  "domain": "safety",
692
692
  "sourcePath": "src/server/routes.ts",
693
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
693
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
694
694
  "since": "2025-01-01"
695
695
  },
696
696
  "route-group:operations": {
@@ -698,7 +698,7 @@
698
698
  "type": "route-group",
699
699
  "domain": "safety",
700
700
  "sourcePath": "src/server/routes.ts",
701
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
701
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
702
702
  "since": "2025-01-01"
703
703
  },
704
704
  "route-group:sentinel": {
@@ -706,7 +706,7 @@
706
706
  "type": "route-group",
707
707
  "domain": "safety",
708
708
  "sourcePath": "src/server/routes.ts",
709
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
709
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
710
710
  "since": "2025-01-01"
711
711
  },
712
712
  "route-group:trust": {
@@ -714,7 +714,7 @@
714
714
  "type": "route-group",
715
715
  "domain": "safety",
716
716
  "sourcePath": "src/server/routes.ts",
717
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
717
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
718
718
  "since": "2025-01-01"
719
719
  },
720
720
  "route-group:monitoring": {
@@ -722,7 +722,7 @@
722
722
  "type": "route-group",
723
723
  "domain": "monitoring",
724
724
  "sourcePath": "src/server/routes.ts",
725
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
725
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
726
726
  "since": "2025-01-01"
727
727
  },
728
728
  "route-group:commitments": {
@@ -730,7 +730,7 @@
730
730
  "type": "route-group",
731
731
  "domain": "commitments",
732
732
  "sourcePath": "src/server/routes.ts",
733
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
733
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
734
734
  "since": "2025-01-01"
735
735
  },
736
736
  "route-group:episodes": {
@@ -738,7 +738,7 @@
738
738
  "type": "route-group",
739
739
  "domain": "memory",
740
740
  "sourcePath": "src/server/routes.ts",
741
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
741
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
742
742
  "since": "2025-01-01"
743
743
  },
744
744
  "route-group:messages": {
@@ -746,7 +746,7 @@
746
746
  "type": "route-group",
747
747
  "domain": "coordination",
748
748
  "sourcePath": "src/server/routes.ts",
749
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
749
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
750
750
  "since": "2025-01-01"
751
751
  },
752
752
  "route-group:system-reviews": {
@@ -754,7 +754,7 @@
754
754
  "type": "route-group",
755
755
  "domain": "monitoring",
756
756
  "sourcePath": "src/server/routes.ts",
757
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
757
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
758
758
  "since": "2025-01-01"
759
759
  },
760
760
  "route-group:machine-mesh": {
@@ -770,7 +770,7 @@
770
770
  "type": "route-group",
771
771
  "domain": "security",
772
772
  "sourcePath": "src/server/routes.ts",
773
- "contentHash": "cde0ebbb56e26519e8d6bb35d78dca71eaebafa62c2b7c465145ba5f5c644bbb",
773
+ "contentHash": "f7a6d8ea166aafc80e139f67b814deb0961fd0197db74bc5fd229aef3536e3c1",
774
774
  "since": "2025-01-01"
775
775
  },
776
776
  "cli:init": {
@@ -1506,7 +1506,7 @@
1506
1506
  "type": "subsystem",
1507
1507
  "domain": "server",
1508
1508
  "sourcePath": "src/server/AgentServer.ts",
1509
- "contentHash": "1d1b1dcb85efcbcd90d43368c51aeb3c03457c31d31929f3c1bae83e1c9fc15f",
1509
+ "contentHash": "9a67d059090c2fdd1e2a3ca7355ea66099ed6b321eac6d7820c152a6ea81b220",
1510
1510
  "since": "2025-01-01"
1511
1511
  },
1512
1512
  "subsystem:session-manager": {
@@ -0,0 +1,19 @@
1
+ # Upgrade Guide — vNEXT
2
+
3
+ <!-- assembled-by: assemble-next-md -->
4
+ <!-- bump: minor -->
5
+
6
+ ## What Changed
7
+
8
+ Adds a new read-only endpoint `GET /subscription-pool/in-use` and a Subscriptions-dashboard indicator that shows which pool account the agent is **currently running on** — distinct from the per-account `status: active`, which only means "healthy/usable." New `InUseAccountResolver` answers this authoritatively by probing `claude auth status` (the active-account surface the client itself uses) and matching its email to a pool account; the result is cached (60s TTL) with concurrent-probe coalescing and degrades to "unknown" rather than throwing. The dashboard fetches `/in-use` best-effort (its failure cannot blank the accounts list) and renders an "● In use now" badge plus a highlighted card on the active account. Wired as a single shared resolver instance through the server so the cache is honored. Read-only and additive: no change to session launch, account selection, or any mutation path; a zero-account pool answers `{ enabled:false }`.
9
+
10
+ ## What to Tell Your User
11
+
12
+ Your Subscriptions dashboard now shows, at a glance, which of your accounts the agent is actually using right now — marked with a green "In use now" badge and outline. Before, every account just said "Active," which only meant it was healthy, not that it was the one in use. Now you can tell them apart. This is read-only — it just reports which account is live; it doesn't change anything about how the agent picks accounts.
13
+
14
+ ## Summary of New Capabilities
15
+
16
+ | Capability | How to Use |
17
+ |-----------|-----------|
18
+ | See which account the agent is running on | Subscriptions dashboard tab — "● In use now" badge |
19
+ | Query the active account | GET /subscription-pool/in-use |