borgmcp 0.9.41 → 0.9.43
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.map +1 -1
- package/dist/assimilate-cmd.js +2 -56
- package/dist/assimilate-cmd.js.map +1 -1
- package/dist/claude.js +5 -73
- package/dist/claude.js.map +1 -1
- package/dist/codex-app-wake.d.ts.map +1 -1
- package/dist/codex-app-wake.js +10 -1
- package/dist/codex-app-wake.js.map +1 -1
- package/dist/codex-launch.d.ts +31 -0
- package/dist/codex-launch.d.ts.map +1 -0
- package/dist/codex-launch.js +77 -0
- package/dist/codex-launch.js.map +1 -0
- package/dist/index.js +28 -28
- package/dist/index.js.map +1 -1
- package/dist/regen-format.d.ts.map +1 -1
- package/dist/regen-format.js +8 -6
- package/dist/regen-format.js.map +1 -1
- package/dist/regen.js +1 -1
- package/dist/regen.js.map +1 -1
- package/dist/remote-client.d.ts +5 -5
- package/dist/remote-client.d.ts.map +1 -1
- package/dist/remote-client.js +3 -3
- package/dist/remote-client.js.map +1 -1
- package/dist/templates.d.ts +13 -13
- package/dist/templates.d.ts.map +1 -1
- package/dist/templates.js +19 -19
- package/dist/templates.js.map +1 -1
- package/package.json +1 -1
package/dist/templates.d.ts
CHANGED
|
@@ -38,39 +38,39 @@ export interface Template {
|
|
|
38
38
|
roles: TemplateRole[];
|
|
39
39
|
/**
|
|
40
40
|
* Optional cube directive text shipped with the template. Applied at
|
|
41
|
-
* cube-creation time (when operator passes empty
|
|
41
|
+
* cube-creation time (when operator passes empty cube_directive) and
|
|
42
42
|
* at `borg:apply-template` time (no-clobber — only fills empty
|
|
43
43
|
* directives, never overwrites operator-customized text). See
|
|
44
|
-
* `
|
|
44
|
+
* `resolveCubeDirectiveForCreate` / `resolveCubeDirectiveForApply` below
|
|
45
45
|
* for the resolution discipline.
|
|
46
46
|
*/
|
|
47
|
-
|
|
47
|
+
cube_directive?: string;
|
|
48
48
|
}
|
|
49
49
|
export declare const TEMPLATES: Record<string, Template>;
|
|
50
50
|
export declare function getTemplate(name: string): Template | null;
|
|
51
51
|
export declare function listTemplateNames(): string[];
|
|
52
52
|
/**
|
|
53
|
-
* Resolve which
|
|
54
|
-
* Operator-supplied text takes precedence; template
|
|
53
|
+
* Resolve which cube_directive text to use at cube-creation time.
|
|
54
|
+
* Operator-supplied text takes precedence; template cube_directive fills
|
|
55
55
|
* in when the operator passes empty/whitespace-only input. Returns the
|
|
56
56
|
* operator's empty string only when no template is specified OR the
|
|
57
|
-
* template carries no
|
|
57
|
+
* template carries no cube_directive.
|
|
58
58
|
*
|
|
59
59
|
* The discipline: operator-customized directives MUST NOT be
|
|
60
60
|
* overridden by template defaults. Templates fill in the blank, never
|
|
61
61
|
* stomp.
|
|
62
62
|
*/
|
|
63
|
-
export declare function
|
|
63
|
+
export declare function resolveCubeDirectiveForCreate(operatorSupplied: string, template: Template | null): string;
|
|
64
64
|
/**
|
|
65
|
-
* Resolve whether to write the template's
|
|
65
|
+
* Resolve whether to write the template's cube_directive to an existing
|
|
66
66
|
* cube at `borg:apply-template` time. Returns the text to write when
|
|
67
|
-
* the cube has empty/whitespace-only
|
|
68
|
-
* carries
|
|
67
|
+
* the cube has empty/whitespace-only cube_directive AND the template
|
|
68
|
+
* carries cube_directive; returns null in all no-op cases.
|
|
69
69
|
*
|
|
70
|
-
* The discipline: no-clobber. An existing cube's
|
|
70
|
+
* The discipline: no-clobber. An existing cube's cube_directive text
|
|
71
71
|
* may carry operator customizations that the template apply MUST NOT
|
|
72
|
-
* overwrite. Caller passes the cube's current
|
|
72
|
+
* overwrite. Caller passes the cube's current cube_directive; helper
|
|
73
73
|
* returns the new text or null (signal "no change needed").
|
|
74
74
|
*/
|
|
75
|
-
export declare function
|
|
75
|
+
export declare function resolveCubeDirectiveForApply(currentCubeDirective: string | null | undefined, template: Template): string | null;
|
|
76
76
|
//# sourceMappingURL=templates.d.ts.map
|
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;CAIzB;AAmRD,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,YAAY,EAAE,CAAC;IACtB;;;;;;;OAOG;IACH,
|
|
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;CAIzB;AAmRD,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;CACzB;AA0TD,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"}
|
package/dist/templates.js
CHANGED
|
@@ -288,23 +288,23 @@ The initial \`git push\` to a feature branch (the one that produces \`REVIEW-REA
|
|
|
288
288
|
* the canonical discipline. Project-agnostic; safe to apply as the
|
|
289
289
|
* default cube directive for any new software-dev cube.
|
|
290
290
|
*/
|
|
291
|
-
const
|
|
291
|
+
const COORDINATOR_DISPATCH_DISCIPLINE_CUBE_DIRECTIVE = `## Coordinator dispatch discipline
|
|
292
292
|
|
|
293
293
|
Three principles for any DISPATCH/ROUTING/ASSIGN/PING-class post asking a specific drone for action:
|
|
294
294
|
|
|
295
295
|
- **Make it reachable**: verify any named SHA/branch/PR on origin BEFORE posting; post as its own cube log entry (never appended to MERGED/SHIPPED — the Monitor preview cuts at ~80 chars); lead with the actionable verb in the first 80 characters.
|
|
296
|
-
- **Verify before claiming**: source-grep load-bearing code-state claims against \`origin/<primary-branch
|
|
296
|
+
- **Verify before claiming**: source-grep load-bearing code-state claims against the ref being claimed BEFORE posting. For \`origin/<primary-branch>\`, PR-head, branch, merge-SHA, or tag claims, use \`git show <ref>:<path> | grep -n "<symbol>"\`; use working-tree \`grep\` only for explicitly local/uncommitted claims. Integrate QA-FLAG / correction posts from other drones since your last post (silently re-using uncorrected framing is the failure mode).
|
|
297
297
|
- **Structure the work unambiguously**: for FRICTION posts, structurally separate "observation" from "hypothesis"; for DISPATCH-FIX posts, lead with explicit integration shape — \`[SEPARATE: fresh branch]\` / \`[INTEGRATED: amend]\` / \`[NEW COMMIT: existing branch]\`.
|
|
298
298
|
|
|
299
299
|
Pre-\`borg:log\` checklist:
|
|
300
300
|
- [ ] Reachable: refs verified on origin + own entry + lead with verb?
|
|
301
|
-
- [ ] Verified: code-state claim source-grep'd + cube-log corrections folded?
|
|
301
|
+
- [ ] Verified: code-state claim source-grep'd against the claimed ref + cube-log corrections folded?
|
|
302
302
|
- [ ] Structured: FRICTION observation/hypothesis labeled + DISPATCH-FIX integration shape explicit?
|
|
303
303
|
`;
|
|
304
304
|
const SOFTWARE_DEV = {
|
|
305
305
|
name: 'software-dev',
|
|
306
306
|
description: 'Multi-agent software development. Coordinator (held by the human Queen) directs Builders, a Code Reviewer, a QA Tester, a UX Expert, a UI Designer, a Visionary, a Product Manager, and a Security Auditor. The Queen role (autonomous-mode delegation target) is platform-supplied and available on every cube.',
|
|
307
|
-
|
|
307
|
+
cube_directive: COORDINATOR_DISPATCH_DISCIPLINE_CUBE_DIRECTIVE,
|
|
308
308
|
roles: [
|
|
309
309
|
{
|
|
310
310
|
name: 'Coordinator',
|
|
@@ -460,7 +460,7 @@ Read the log first on every regen. Act only on actionable UI-axis signals; mere
|
|
|
460
460
|
detailed_description: `You are the cube's integrative present-tense thinker — the dedicated owner of "does the thing we just shipped actually match the thing we said we shipped?" Other drones produce features, fixes, refactors; you audit the resulting product for internal consistency and alignment with the stated product vision. Autonomous — coordinate through the log.
|
|
461
461
|
|
|
462
462
|
Your job:
|
|
463
|
-
- Walk the live product surface — marketing pages, dashboard UI, CLI output, documentation, API responses, tool descriptions, any user-readable text — and compare against the internal definition of what was supposed to ship (sprint dispatches, spec docs, role descriptions,
|
|
463
|
+
- Walk the live product surface — marketing pages, dashboard UI, CLI output, documentation, API responses, tool descriptions, any user-readable text — and compare against the internal definition of what was supposed to ship (sprint dispatches, spec docs, role descriptions, cube directives).
|
|
464
464
|
- Flag drift: places where the live surface says one thing and the internal source says another (or where the surface lags the actual product reality). Examples: pricing copy that doesn't match the billing system, feature descriptions that reference deprecated capabilities, onboarding flow that points to surfaces that no longer exist, tool descriptions that don't match tool behavior.
|
|
465
465
|
- Check coherence ACROSS surfaces: does the dashboard description of feature X match the marketing page's description match the API documentation match the tool's actual behavior? Drift between any two of these is friction the user pays in confusion.
|
|
466
466
|
- Flag roadmap drift: when the strategic horizon stated in product vision docs and the current sprint trajectory have grown apart, name the gap. This is an internal-consistency audit, not a redirect — surface the divergence so the swarm + Queen can either re-align or update the stated horizon.
|
|
@@ -600,40 +600,40 @@ export function listTemplateNames() {
|
|
|
600
600
|
return Object.keys(TEMPLATES);
|
|
601
601
|
}
|
|
602
602
|
/**
|
|
603
|
-
* Resolve which
|
|
604
|
-
* Operator-supplied text takes precedence; template
|
|
603
|
+
* Resolve which cube_directive text to use at cube-creation time.
|
|
604
|
+
* Operator-supplied text takes precedence; template cube_directive fills
|
|
605
605
|
* in when the operator passes empty/whitespace-only input. Returns the
|
|
606
606
|
* operator's empty string only when no template is specified OR the
|
|
607
|
-
* template carries no
|
|
607
|
+
* template carries no cube_directive.
|
|
608
608
|
*
|
|
609
609
|
* The discipline: operator-customized directives MUST NOT be
|
|
610
610
|
* overridden by template defaults. Templates fill in the blank, never
|
|
611
611
|
* stomp.
|
|
612
612
|
*/
|
|
613
|
-
export function
|
|
613
|
+
export function resolveCubeDirectiveForCreate(operatorSupplied, template) {
|
|
614
614
|
if (operatorSupplied && operatorSupplied.trim() !== '') {
|
|
615
615
|
return operatorSupplied;
|
|
616
616
|
}
|
|
617
|
-
return template?.
|
|
617
|
+
return template?.cube_directive ?? operatorSupplied;
|
|
618
618
|
}
|
|
619
619
|
/**
|
|
620
|
-
* Resolve whether to write the template's
|
|
620
|
+
* Resolve whether to write the template's cube_directive to an existing
|
|
621
621
|
* cube at `borg:apply-template` time. Returns the text to write when
|
|
622
|
-
* the cube has empty/whitespace-only
|
|
623
|
-
* carries
|
|
622
|
+
* the cube has empty/whitespace-only cube_directive AND the template
|
|
623
|
+
* carries cube_directive; returns null in all no-op cases.
|
|
624
624
|
*
|
|
625
|
-
* The discipline: no-clobber. An existing cube's
|
|
625
|
+
* The discipline: no-clobber. An existing cube's cube_directive text
|
|
626
626
|
* may carry operator customizations that the template apply MUST NOT
|
|
627
|
-
* overwrite. Caller passes the cube's current
|
|
627
|
+
* overwrite. Caller passes the cube's current cube_directive; helper
|
|
628
628
|
* returns the new text or null (signal "no change needed").
|
|
629
629
|
*/
|
|
630
|
-
export function
|
|
631
|
-
if (
|
|
630
|
+
export function resolveCubeDirectiveForApply(currentCubeDirective, template) {
|
|
631
|
+
if (currentCubeDirective && currentCubeDirective.trim() !== '') {
|
|
632
632
|
return null;
|
|
633
633
|
}
|
|
634
|
-
if (!template.
|
|
634
|
+
if (!template.cube_directive) {
|
|
635
635
|
return null;
|
|
636
636
|
}
|
|
637
|
-
return template.
|
|
637
|
+
return template.cube_directive;
|
|
638
638
|
}
|
|
639
639
|
//# sourceMappingURL=templates.js.map
|
package/dist/templates.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"templates.js","sourceRoot":"","sources":["../src/templates.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAaH,uEAAuE;AACvE,gEAAgE;AAChE,iEAAiE;AACjE,qCAAqC;AACrC,uEAAuE;AAEvE,MAAM,8BAA8B,GAAG;;;;;;;;;;;;;;;;;;;;;+GAqBwE,CAAC;AAEhH,MAAM,8BAA8B,GAAG;;;;;;;;;;;;;;;;;;;;;;igBAsB0d,CAAC;AAElgB,MAAM,qBAAqB,GAAG;;;;;;;;gOAQkM,CAAC;AAEjO,MAAM,yBAAyB,GAAG;;;;;;;kNAOgL,CAAC;AAEnN,MAAM,gCAAgC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+dAuEsb,CAAC;AAEhe,MAAM,oBAAoB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;gQAyBmO,CAAC;AAEjQ,MAAM,gCAAgC,GAAG;;;;;;;;yWAQgU,CAAC;AAE1W,MAAM,mCAAmC,GAAG;;;;;;;;;2+BAS+7B,CAAC;AAE5+B,MAAM,0BAA0B,GAAG;;;;;;;;;;;;;;;;;;;;;;;ybAuBsZ,CAAC;AAE1b,MAAM,kCAAkC,GAAG;;;;;;;;;oYASyV,CAAC;AAErY,MAAM,sCAAsC,GAAG;;;;;;;;;;mmBAUojB,CAAC;AAEpmB,MAAM,sBAAsB,GAAG;;;;;;sTAMuR,CAAC;AAEvT,MAAM,2BAA2B,GAAG;;;;;;;;;kUAS8R,CAAC;AAEnU,MAAM,uBAAuB,GAAG;;;;;;;;;;;0PAW0N,CAAC;AAiB3P;;;;GAIG;AACH,MAAM,
|
|
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.43",
|
|
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",
|