borgmcp 0.9.55 → 0.9.57
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/dist/assimilate-cmd.d.ts +2 -5
- package/dist/assimilate-cmd.d.ts.map +1 -1
- package/dist/assimilate-cmd.js +12 -0
- package/dist/assimilate-cmd.js.map +1 -1
- package/dist/assimilate-deps.d.ts.map +1 -1
- package/dist/assimilate-deps.js +2 -9
- package/dist/assimilate-deps.js.map +1 -1
- package/dist/claude.js +28 -6
- package/dist/claude.js.map +1 -1
- package/dist/cli-help.d.ts +16 -0
- package/dist/cli-help.d.ts.map +1 -0
- package/dist/cli-help.js +24 -0
- package/dist/cli-help.js.map +1 -0
- package/dist/codex-remote.d.ts +60 -12
- package/dist/codex-remote.d.ts.map +1 -1
- package/dist/codex-remote.js +173 -80
- package/dist/codex-remote.js.map +1 -1
- package/dist/inbox-monitor.d.ts.map +1 -1
- package/dist/inbox-monitor.js +15 -0
- package/dist/inbox-monitor.js.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/regen-format.d.ts +19 -0
- package/dist/regen-format.d.ts.map +1 -1
- package/dist/regen-format.js +55 -1
- package/dist/regen-format.js.map +1 -1
- package/dist/role-section.d.ts +110 -0
- package/dist/role-section.d.ts.map +1 -0
- package/dist/role-section.js +207 -0
- package/dist/role-section.js.map +1 -0
- package/dist/setup.js +15 -6
- package/dist/setup.js.map +1 -1
- package/dist/subscription-retry.d.ts +40 -0
- package/dist/subscription-retry.d.ts.map +1 -0
- package/dist/subscription-retry.js +23 -0
- package/dist/subscription-retry.js.map +1 -0
- package/dist/templates.d.ts +1 -0
- package/dist/templates.d.ts.map +1 -1
- package/dist/templates.js +76 -14
- package/dist/templates.js.map +1 -1
- package/package.json +1 -1
package/dist/templates.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export interface MessageTaxonomyClass {
|
|
|
39
39
|
prefixes?: string[];
|
|
40
40
|
routing: 'broadcast' | 'directed';
|
|
41
41
|
default_to?: string[];
|
|
42
|
+
lifecycle?: 'dispatch' | 'completion';
|
|
42
43
|
}
|
|
43
44
|
export type MessageTaxonomy = MessageTaxonomyClass[];
|
|
44
45
|
export declare const GIT_OPERATIONAL_DISCIPLINE_BUILDER = "\n\n**Git operational discipline (empirically-motivated):**\n\nThese rules come from a real production-primary-branch-corruption incident, where chained git ops + a soft-reset with divergent-ancestor staging silently deleted a merged PR's work from origin/main. Same failure class is repeatable by any drone touching git state.\n\n- **Pre-commit reflex: always run `git diff --staged --stat` before `git commit`.** Verify file count, LOC direction (+/-), and paths match intent. Costs <100ms; catches anomalous diffs (deleted files, large unexpected -LOC, wrong path) before they reach origin.\n- **Never chain `&&` across git-state-touching ops.** `git checkout && git pull && git commit && git push` silently swallows downstream-fatal signals from upstream steps (e.g., `git checkout main` aborts on uncommitted local changes; the `&&` chain's exit-code check doesn't surface the abort context). Split into separate Bash calls with status verification (`git status` between steps) so each step's failure is observable before the next runs.\n- **Recovery from divergent branches: `git reset --hard` (acknowledged-destructive, predictable), NOT `git reset --soft`.** Soft-reset preserves the staging index from a different ancestor's diff, so the next `git commit` ships a negative-diff against the new HEAD invisibly. `--hard` is loud about its destruction; `--soft` is silent about it. When in doubt, `git reset --hard origin/<branch>` + re-apply local changes via Edit (or stash before resetting) is the predictable shape.\n- **Force-pushes are bounded operations.** Force-tag-push (single ref; `git push --force origin <tag>`) is acceptable for tag-correction recovery and has small blast-radius. Force-push-branch (`git push --force origin <branch>`) destroys upstream history and rewrites other drones' merge-base references \u2014 never run without explicit Queen authorization and a named recovery scenario.";
|
package/dist/templates.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../src/templates.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAEH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,iBAAiB,EAAE,MAAM,CAAC;IAC1B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAI/B;AAED,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,EAAE,WAAW,GAAG,UAAU,CAAC;IAClC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../src/templates.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAEH,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,iBAAiB,EAAE,MAAM,CAAC;IAC1B,oBAAoB,EAAE,MAAM,CAAC;IAC7B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAI/B;AAED,MAAM,WAAW,oBAAoB;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,EAAE,WAAW,GAAG,UAAU,CAAC;IAClC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;IACtB,SAAS,CAAC,EAAE,UAAU,GAAG,YAAY,CAAC;CACvC;AAED,MAAM,MAAM,eAAe,GAAG,oBAAoB,EAAE,CAAC;AA8OrD,eAAO,MAAM,kCAAkC,g4DASqV,CAAC;AAErY,eAAO,MAAM,sCAAsC,srFAUgjB,CAAC;AAUpmB,eAAO,MAAM,4BAA4B,qvBAI8mB,CAAC;AAExpB,eAAO,MAAM,2BAA2B,0tDAS0R,CAAC;AAEnU,eAAO,MAAM,uBAAuB,skEAWsN,CAAC;AAE3P,eAAO,MAAM,4BAA4B,UAExC,CAAC;AAEF,eAAO,MAAM,8BAA8B,UAK1C,CAAC;AAEF,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;;OAKG;IACH,gBAAgB,CAAC,EAAE,eAAe,CAAC;CACpC;AAkbD,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,QAAQ,CAG9C,CAAC;AAEF,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,QAAQ,GAAG,IAAI,CAEzD;AAED,wBAAgB,iBAAiB,IAAI,MAAM,EAAE,CAE5C;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,6BAA6B,CAC3C,gBAAgB,EAAE,MAAM,EACxB,QAAQ,EAAE,QAAQ,GAAG,IAAI,GACxB,MAAM,CAKR;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,4BAA4B,CAC1C,oBAAoB,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAC/C,QAAQ,EAAE,QAAQ,GACjB,MAAM,GAAG,IAAI,CAQf;AAED,wBAAgB,+BAA+B,CAC7C,gBAAgB,EAAE,eAAe,GAAG,IAAI,GAAG,SAAS,EACpD,QAAQ,EAAE,QAAQ,GAAG,IAAI,GACxB,eAAe,GAAG,IAAI,CAExB"}
|
package/dist/templates.js
CHANGED
|
@@ -30,6 +30,19 @@
|
|
|
30
30
|
// descriptions weave these constants in so new cubes inherit the
|
|
31
31
|
// codified discipline automatically.
|
|
32
32
|
// ====================================================================
|
|
33
|
+
// gh#496-A(b) GO-FORWARD AUTHORING CONVENTION (role-text rationale-split):
|
|
34
|
+
// When authoring or refactoring a role's `detailed_description`, separate
|
|
35
|
+
// operational RULES from RATIONALE. Put WHY / background / case-study prose
|
|
36
|
+
// in dedicated `<topic> rationale:` PLAIN-LABEL sections — a flush-left line
|
|
37
|
+
// whose short label ends in "rationale" + a single trailing colon (e.g.
|
|
38
|
+
// `Deadlock-resolution rationale:`). The regen render (`compressRoleText` in
|
|
39
|
+
// regen-format.ts) auto-compresses each such section to an on-demand
|
|
40
|
+
// `borg:role-rationale` stub, keeping rules + ALL safety disciplines inline.
|
|
41
|
+
// ⛔ Operational rules and safety constants (WAKE_PATH_MONITOR_DISCIPLINE,
|
|
42
|
+
// GIT_OPERATIONAL_DISCIPLINE_*, PUSH_DISCIPLINE_*) MUST NEVER live inside a
|
|
43
|
+
// rationale section. Legacy dense role text is rule-WHY-interleaved and stays
|
|
44
|
+
// inline (correct); the compression value compounds as new/refactored roles
|
|
45
|
+
// adopt this convention. See docs/superpowers/specs/2026-06-01-gh496Ab-rationale-split.md.
|
|
33
46
|
const DENSE_COMMUNICATION_DISCIPLINE = `
|
|
34
47
|
|
|
35
48
|
**Dense communication discipline:**
|
|
@@ -159,8 +172,6 @@ When the cube is at risk of deadlock — any pattern where progress requires act
|
|
|
159
172
|
|
|
160
173
|
**Forcing function**: if you (Coordinator) see two posts that imply "someone should pick this up" without naming who, that's a deadlock-risk signal. Assign explicitly within one cadence-bucket (5-15 min per the cadence table). Escalate to Queen ONLY for Queen-class assignment decisions.
|
|
161
174
|
|
|
162
|
-
**Why high-priority**: Coordinator deadlock-resolution failures cascade — every minute the cube waits on an unowned action is a minute of multiple drones idling. The cost compounds with drone count + concurrent sprint activity. Resolution is cheap (one cube-log post naming an assignee); the absence of resolution is expensive.
|
|
163
|
-
|
|
164
175
|
**Companion bottom-up rule — idle drones may volunteer cross-role**: idle drones (capacity clean, no in-flight work) may volunteer to pick up unowned cross-role tasks even when the work doesn't match their primary role description, provided: (a) the work is visible in the cube log as unowned (REVIEW-READY without an explicit assignee for the gate-class they're volunteering for; OR a Coordinator post tagged with "needs cross-coverage"), (b) the volunteer drone posts \`VOLUNTEER: <task> — <lens-axis I'm covering>\` BEFORE doing the work so the Coordinator + cube see the claim, (c) the volunteer drone explicitly names which axis-lens they're applying (e.g., a CR-axis drone volunteering for QA-by-non-author posts \`VOLUNTEER: <branch> — QA-axis cross-coverage from CR-axis lens\` to make the cross-role framing explicit), (d) the volunteer drone's primary role doesn't have an in-flight obligation. The bottom-up rule is belt-and-suspenders with the Coordinator-explicit-assignment rule above — both can fire; whichever lands first owns the work.
|
|
165
176
|
|
|
166
177
|
**Reassignment authority (autonomous-mode scope):** the Coordinator-class seat (Queen-by-delegation included) has standing authority to reassign roles within the existing cube's role roster WITHOUT per-reassignment Queen authorization, provided: (a) the reassignment is to a confirmed-alive drone, (b) the previous drone is documented as unresponsive per Step 3, (c) the reassignment is announced in cube log. Reassignment is operational continuity, not a Queen-policy decision.`;
|
|
@@ -329,31 +340,55 @@ const SOFTWARE_DEV = {
|
|
|
329
340
|
message_taxonomy: [
|
|
330
341
|
{
|
|
331
342
|
class: 'status-claim',
|
|
332
|
-
prefixes: ['STARTING', 'ACK', 'PONG', 'READY', 'PUSHING'
|
|
343
|
+
prefixes: ['STARTING', 'ACK', 'PONG', 'READY', 'PUSHING'],
|
|
344
|
+
routing: 'directed',
|
|
345
|
+
default_to: ['coordinator', 'queen'],
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
class: 'completion-status',
|
|
349
|
+
prefixes: ['DONE', 'SHIPPED'],
|
|
333
350
|
routing: 'directed',
|
|
334
351
|
default_to: ['coordinator', 'queen'],
|
|
352
|
+
lifecycle: 'completion',
|
|
335
353
|
},
|
|
336
354
|
{
|
|
337
355
|
class: 'gate-signal',
|
|
338
356
|
prefixes: [
|
|
339
357
|
'REVIEW-READY',
|
|
340
|
-
'REVIEW-APPROVED',
|
|
341
358
|
'REVIEW-FEEDBACK',
|
|
342
|
-
'QA-PASS',
|
|
343
359
|
'QA-FAIL',
|
|
344
|
-
'SECURITY-APPROVED',
|
|
345
360
|
'SECURITY-FEEDBACK',
|
|
346
|
-
'UX-APPROVED',
|
|
347
361
|
'UX-FEEDBACK',
|
|
348
|
-
'PM-APPROVED',
|
|
349
362
|
'PM-FEEDBACK',
|
|
350
|
-
'BLOCKED',
|
|
351
363
|
],
|
|
352
364
|
routing: 'broadcast',
|
|
353
365
|
},
|
|
366
|
+
{
|
|
367
|
+
class: 'completion-gate',
|
|
368
|
+
prefixes: [
|
|
369
|
+
'REVIEW-APPROVED',
|
|
370
|
+
'QA-PASS',
|
|
371
|
+
'SECURITY-APPROVED',
|
|
372
|
+
'UX-APPROVED',
|
|
373
|
+
'PM-APPROVED',
|
|
374
|
+
],
|
|
375
|
+
routing: 'broadcast',
|
|
376
|
+
lifecycle: 'completion',
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
class: 'blocked-signal',
|
|
380
|
+
prefixes: ['BLOCKED'],
|
|
381
|
+
routing: 'broadcast',
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
class: 'dispatch-routing',
|
|
385
|
+
prefixes: ['DISPATCH', 'ASSIGN', 'ROUTING'],
|
|
386
|
+
routing: 'broadcast',
|
|
387
|
+
lifecycle: 'dispatch',
|
|
388
|
+
},
|
|
354
389
|
{
|
|
355
390
|
class: 'coordination',
|
|
356
|
-
prefixes: ['
|
|
391
|
+
prefixes: ['PING', 'DECISION', 'MERGING', 'MERGED'],
|
|
357
392
|
routing: 'broadcast',
|
|
358
393
|
},
|
|
359
394
|
{
|
|
@@ -407,7 +442,10 @@ Log conventions you use:
|
|
|
407
442
|
|
|
408
443
|
Read the log first on every regen. Act only on actionable signals.
|
|
409
444
|
|
|
410
|
-
**Elevation to the Queen role (autonomous variant):** When the human Queen authorizes autonomous operation (a few hours, overnight, etc.), your role is reassigned to Queen via \`borg:reassign-drone\`. Same base responsibilities documented here; the Queen role adds autonomous-mode behaviors (ship-on-consensus, periodic STATE-SUMMARY cadence, sustained-idle stop, operator-credentialed deferral) documented in its own \`detailed_description\`. On the human Queen's return, you're reassigned back to this role. Class-hierarchy invariant: only a drone currently in a human-seat role (Coordinator in this template) can be promoted to a queen-class role — \`borg:reassign-drone\` enforces this server-side; reassign through a human-seat role first if you're elevating a drone from elsewhere.${ACTIVE_MOMENTUM_OWNERSHIP}${ANTI_PASSIVE_STANDING_DISCIPLINE}${ONE_SIGNAL_PER_POST_DISCIPLINE}${DENSE_COMMUNICATION_DISCIPLINE}${RELEASE_CYCLE_SHAPES}${CONDITIONAL_DISPATCH_ENFORCEMENT}${COORDINATOR_WORKFLOW_RULES}${GIT_OPERATIONAL_DISCIPLINE_COORDINATOR}${SCHEDULEWAKEUP_CADENCE}${PUSH_DISCIPLINE_COORDINATOR}${WAKE_PATH_MONITOR_DISCIPLINE}
|
|
445
|
+
**Elevation to the Queen role (autonomous variant):** When the human Queen authorizes autonomous operation (a few hours, overnight, etc.), your role is reassigned to Queen via \`borg:reassign-drone\`. Same base responsibilities documented here; the Queen role adds autonomous-mode behaviors (ship-on-consensus, periodic STATE-SUMMARY cadence, sustained-idle stop, operator-credentialed deferral) documented in its own \`detailed_description\`. On the human Queen's return, you're reassigned back to this role. Class-hierarchy invariant: only a drone currently in a human-seat role (Coordinator in this template) can be promoted to a queen-class role — \`borg:reassign-drone\` enforces this server-side; reassign through a human-seat role first if you're elevating a drone from elsewhere.${ACTIVE_MOMENTUM_OWNERSHIP}${ANTI_PASSIVE_STANDING_DISCIPLINE}${ONE_SIGNAL_PER_POST_DISCIPLINE}${DENSE_COMMUNICATION_DISCIPLINE}${RELEASE_CYCLE_SHAPES}${CONDITIONAL_DISPATCH_ENFORCEMENT}${COORDINATOR_WORKFLOW_RULES}${GIT_OPERATIONAL_DISCIPLINE_COORDINATOR}${SCHEDULEWAKEUP_CADENCE}${PUSH_DISCIPLINE_COORDINATOR}${WAKE_PATH_MONITOR_DISCIPLINE}
|
|
446
|
+
|
|
447
|
+
Deadlock-resolution rationale:
|
|
448
|
+
Coordinator deadlock-resolution failures cascade — every minute the cube waits on an unowned action is a minute of multiple drones idling. The cost compounds with drone count + concurrent sprint activity. Resolution is cheap (one cube-log post naming an assignee); the absence of resolution is expensive.`,
|
|
411
449
|
},
|
|
412
450
|
{
|
|
413
451
|
name: 'Builder',
|
|
@@ -619,18 +657,42 @@ const STARTER = {
|
|
|
619
657
|
message_taxonomy: [
|
|
620
658
|
{
|
|
621
659
|
class: 'status-claim',
|
|
622
|
-
prefixes: ['STARTING', 'ACK', 'PONG', 'READY'
|
|
660
|
+
prefixes: ['STARTING', 'ACK', 'PONG', 'READY'],
|
|
661
|
+
routing: 'directed',
|
|
662
|
+
default_to: ['coordinator', 'queen'],
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
class: 'completion-status',
|
|
666
|
+
prefixes: ['DONE'],
|
|
623
667
|
routing: 'directed',
|
|
624
668
|
default_to: ['coordinator', 'queen'],
|
|
669
|
+
lifecycle: 'completion',
|
|
625
670
|
},
|
|
626
671
|
{
|
|
627
672
|
class: 'gate-signal',
|
|
628
|
-
prefixes: ['REVIEW-READY', '
|
|
673
|
+
prefixes: ['REVIEW-READY', 'FEEDBACK'],
|
|
674
|
+
routing: 'broadcast',
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
class: 'completion-gate',
|
|
678
|
+
prefixes: ['APPROVED'],
|
|
679
|
+
routing: 'broadcast',
|
|
680
|
+
lifecycle: 'completion',
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
class: 'blocked-signal',
|
|
684
|
+
prefixes: ['BLOCKED'],
|
|
685
|
+
routing: 'broadcast',
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
class: 'dispatch-routing',
|
|
689
|
+
prefixes: ['DISPATCH', 'ASSIGN'],
|
|
629
690
|
routing: 'broadcast',
|
|
691
|
+
lifecycle: 'dispatch',
|
|
630
692
|
},
|
|
631
693
|
{
|
|
632
694
|
class: 'coordination',
|
|
633
|
-
prefixes: ['
|
|
695
|
+
prefixes: ['PING', 'DECISION'],
|
|
634
696
|
routing: 'broadcast',
|
|
635
697
|
},
|
|
636
698
|
],
|
package/dist/templates.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.js","sourceRoot":"","sources":["../src/templates.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;
|
|
1
|
+
{"version":3,"file":"templates.js","sourceRoot":"","sources":["../src/templates.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "borgmcp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.57",
|
|
4
4
|
"description": "Coordinate AI coding agents in shared cubes. Works with Claude Code and Codex. Create projects, assign roles, and share a live activity log.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|