agent-nuvira 1.74.1 → 1.74.2
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/.agents/skills/code-assessment/SKILL.md +44 -0
- package/.agents/skills/docx/SKILL.md +55 -0
- package/.agents/skills/index.json +105 -0
- package/.agents/skills/plan-create-track/SKILL.md +33 -0
- package/.agents/skills/technical-roadmap/SKILL.md +33 -0
- package/.agents/skills/test-strategy/SKILL.md +42 -0
- package/.agents/skills/website-deploy/SKILL.md +46 -0
- package/README.md +7 -6
- package/dist/agents/agent.d.ts +2 -2
- package/dist/agents/module-registry.js +1 -1
- package/dist/agents/module-registry.js.map +1 -1
- package/dist/agents/orchestrator.js +1 -1
- package/dist/agents/orchestrator.js.map +1 -1
- package/dist/agents/tools/delegation.d.ts +3 -3
- package/dist/agents/tools/delegation.js +4 -4
- package/dist/cli/admin.js +1 -1
- package/dist/cli/admin.js.map +1 -1
- package/dist/cli/chat.d.ts +40 -5
- package/dist/cli/chat.d.ts.map +1 -1
- package/dist/cli/chat.js +72 -19
- package/dist/cli/chat.js.map +1 -1
- package/dist/cli/dashboard.d.ts.map +1 -1
- package/dist/cli/dashboard.js +13 -2
- package/dist/cli/dashboard.js.map +1 -1
- package/dist/cli/execute.js +1 -1
- package/dist/cli/execute.js.map +1 -1
- package/dist/cli/gateway.d.ts +1 -1
- package/dist/cli/gateway.js +6 -6
- package/dist/cli/gateway.js.map +1 -1
- package/dist/cli/mcp.js +2 -2
- package/dist/cli/mcp.js.map +1 -1
- package/dist/cli/pipeline-board.d.ts +1 -1
- package/dist/cli/pipeline-board.js +1 -1
- package/dist/cli/skills.d.ts +2 -2
- package/dist/cli/skills.d.ts.map +1 -1
- package/dist/cli/skills.js +84 -3
- package/dist/cli/skills.js.map +1 -1
- package/dist/cli/whatsapp.d.ts +2 -2
- package/dist/cli/whatsapp.js +2 -2
- package/dist/config/types.d.ts +10 -4
- package/dist/config/types.d.ts.map +1 -1
- package/dist/config/workspace.d.ts +2 -2
- package/dist/config/workspace.js +3 -3
- package/dist/config/workspace.js.map +1 -1
- package/dist/context/cache.d.ts.map +1 -1
- package/dist/context/cache.js +20 -8
- package/dist/context/cache.js.map +1 -1
- package/dist/enterprise/vault.d.ts +3 -3
- package/dist/enterprise/vault.js +3 -3
- package/dist/gateway/adapters.d.ts +26 -28
- package/dist/gateway/adapters.d.ts.map +1 -1
- package/dist/gateway/adapters.js +38 -38
- package/dist/gateway/adapters.js.map +1 -1
- package/dist/gateway/channel-directory.d.ts +3 -3
- package/dist/gateway/channel-directory.d.ts.map +1 -1
- package/dist/gateway/channel-directory.js +7 -7
- package/dist/gateway/channel-directory.js.map +1 -1
- package/dist/gateway/cron.d.ts +1 -1
- package/dist/gateway/cron.js +1 -1
- package/dist/gateway/delivery.d.ts +1 -1
- package/dist/gateway/delivery.js +1 -1
- package/dist/gateway/hooks.d.ts +4 -4
- package/dist/gateway/hooks.d.ts.map +1 -1
- package/dist/gateway/hooks.js +4 -4
- package/dist/gateway/hooks.js.map +1 -1
- package/dist/gateway/platform-config.d.ts +1 -1
- package/dist/gateway/platform-config.js +1 -1
- package/dist/gateway/registry.d.ts +2 -2
- package/dist/gateway/registry.d.ts.map +1 -1
- package/dist/gateway/registry.js +2 -2
- package/dist/gateway/registry.js.map +1 -1
- package/dist/gateway/whatsapp/baileys-bridge.d.ts +4 -4
- package/dist/gateway/whatsapp/baileys-bridge.js +5 -5
- package/dist/gateway/whatsapp/baileys-bridge.js.map +1 -1
- package/dist/gateway/whatsapp/bridge.d.ts +3 -3
- package/dist/gateway/whatsapp/bridge.js +3 -3
- package/dist/gateway/whatsapp/session.d.ts +3 -3
- package/dist/gateway/whatsapp/session.js +3 -3
- package/dist/inference/groq-adapter.d.ts +5 -0
- package/dist/inference/groq-adapter.d.ts.map +1 -1
- package/dist/inference/groq-adapter.js +34 -1
- package/dist/inference/groq-adapter.js.map +1 -1
- package/dist/inference/interface.d.ts +7 -0
- package/dist/inference/interface.d.ts.map +1 -1
- package/dist/inference/nim-adapter.d.ts +5 -0
- package/dist/inference/nim-adapter.d.ts.map +1 -1
- package/dist/inference/nim-adapter.js +34 -1
- package/dist/inference/nim-adapter.js.map +1 -1
- package/dist/inference/openai-compat-adapter.d.ts +5 -0
- package/dist/inference/openai-compat-adapter.d.ts.map +1 -1
- package/dist/inference/openai-compat-adapter.js +38 -1
- package/dist/inference/openai-compat-adapter.js.map +1 -1
- package/dist/inference/openrouter-adapter.d.ts +5 -0
- package/dist/inference/openrouter-adapter.d.ts.map +1 -1
- package/dist/inference/openrouter-adapter.js +38 -1
- package/dist/inference/openrouter-adapter.js.map +1 -1
- package/dist/inference/tool-call-utils.js +2 -2
- package/dist/inference/tool-call-utils.js.map +1 -1
- package/dist/inference/tools.d.ts +19 -2
- package/dist/inference/tools.d.ts.map +1 -1
- package/dist/inference/tools.js +152 -1
- package/dist/inference/tools.js.map +1 -1
- package/dist/learning/auto-router.js +1 -1
- package/dist/learning/auto-router.js.map +1 -1
- package/dist/learning/eval-framework.d.ts +1 -1
- package/dist/learning/eval-framework.js +1 -1
- package/dist/learning/hub-skill-catalog.d.ts +58 -7
- package/dist/learning/hub-skill-catalog.d.ts.map +1 -1
- package/dist/learning/hub-skill-catalog.js +168 -13
- package/dist/learning/hub-skill-catalog.js.map +1 -1
- package/dist/learning/learn-prompt.d.ts +25 -0
- package/dist/learning/learn-prompt.d.ts.map +1 -0
- package/dist/learning/learn-prompt.js +47 -0
- package/dist/learning/learn-prompt.js.map +1 -0
- package/dist/learning/router-bandit.d.ts +1 -1
- package/dist/learning/router-bandit.js +1 -1
- package/dist/learning/skill-bundles.d.ts +92 -0
- package/dist/learning/skill-bundles.d.ts.map +1 -0
- package/dist/learning/skill-bundles.js +236 -0
- package/dist/learning/skill-bundles.js.map +1 -0
- package/dist/learning/skill-drafts.d.ts +89 -0
- package/dist/learning/skill-drafts.d.ts.map +1 -0
- package/dist/learning/skill-drafts.js +321 -0
- package/dist/learning/skill-drafts.js.map +1 -0
- package/dist/learning/skills-hub.d.ts +24 -2
- package/dist/learning/skills-hub.d.ts.map +1 -1
- package/dist/learning/skills-hub.js +77 -8
- package/dist/learning/skills-hub.js.map +1 -1
- package/dist/learning/skills-registry.d.ts +5 -1
- package/dist/learning/skills-registry.d.ts.map +1 -1
- package/dist/learning/skills-registry.js +8 -1
- package/dist/learning/skills-registry.js.map +1 -1
- package/dist/mcp/catalog.d.ts +1 -1
- package/dist/mcp/catalog.js +1 -1
- package/dist/mcp/server.d.ts +4 -4
- package/dist/mcp/server.js +4 -4
- package/dist/memory/manager.d.ts +2 -2
- package/dist/memory/manager.js +2 -2
- package/dist/memory/provider.d.ts +3 -3
- package/dist/memory/provider.js +5 -5
- package/dist/memory/provider.js.map +1 -1
- package/dist/nlu/actions.d.ts +2 -2
- package/dist/nlu/actions.js +2 -2
- package/dist/nlu/contract.d.ts +1 -1
- package/dist/nlu/contract.js +1 -1
- package/dist/nlu/conversation-gate.d.ts +1 -1
- package/dist/nlu/conversation-gate.js +1 -1
- package/dist/nlu/entities.d.ts +1 -1
- package/dist/nlu/entities.js +1 -1
- package/dist/nlu/intent.d.ts +1 -1
- package/dist/nlu/intent.js +1 -1
- package/dist/nlu/schema.d.ts +1 -1
- package/dist/nlu/schema.js +1 -1
- package/dist/observability/event-bus.js +2 -2
- package/dist/observability/event-bus.js.map +1 -1
- package/dist/resources/command-manifest.json +2 -2
- package/dist/skills/bundled-skills.d.ts +10 -0
- package/dist/skills/bundled-skills.d.ts.map +1 -1
- package/dist/skills/bundled-skills.js +86 -0
- package/dist/skills/bundled-skills.js.map +1 -1
- package/dist/tools/artifact-append.d.ts +3 -3
- package/dist/tools/artifact-append.js +3 -3
- package/dist/tools/artifact-types.d.ts +1 -1
- package/dist/tools/artifact-types.js +1 -1
- package/dist/tools/ask-user.d.ts +3 -3
- package/dist/tools/ask-user.d.ts.map +1 -1
- package/dist/tools/ask-user.js +3 -3
- package/dist/tools/ask-user.js.map +1 -1
- package/dist/tools/modality/browser.d.ts +1 -1
- package/dist/tools/modality/browser.js +1 -1
- package/dist/tools/modality/image-gen.d.ts +1 -1
- package/dist/tools/modality/image-gen.js +1 -1
- package/dist/tools/modality/shared.d.ts +1 -1
- package/dist/tools/modality/shared.js +1 -1
- package/dist/tools/modality/vision.d.ts +1 -1
- package/dist/tools/modality/vision.js +1 -1
- package/dist/tools/modality/voice.d.ts +1 -1
- package/dist/tools/modality/voice.js +1 -1
- package/dist/tools/pipeline-tool.d.ts +1 -1
- package/dist/tools/pipeline-tool.js +1 -1
- package/dist/tools/registry.d.ts +26 -11
- package/dist/tools/registry.d.ts.map +1 -1
- package/dist/tools/registry.js +26 -13
- package/dist/tools/registry.js.map +1 -1
- package/dist/tools/skill-tool.d.ts +29 -4
- package/dist/tools/skill-tool.d.ts.map +1 -1
- package/dist/tools/skill-tool.js +212 -7
- package/dist/tools/skill-tool.js.map +1 -1
- package/dist/tools/tool-loop.d.ts +33 -4
- package/dist/tools/tool-loop.d.ts.map +1 -1
- package/dist/tools/tool-loop.js +28 -12
- package/dist/tools/tool-loop.js.map +1 -1
- package/dist/tools/toolsets.d.ts +4 -4
- package/dist/tools/toolsets.d.ts.map +1 -1
- package/dist/tools/toolsets.js +3 -3
- package/dist/tools/verify-requirement.d.ts +1 -1
- package/dist/tools/verify-requirement.js +1 -1
- package/dist/tools/web-research.d.ts +2 -2
- package/dist/tools/web-research.js +2 -2
- package/dist/web-dashboard/chat-console.d.ts +120 -0
- package/dist/web-dashboard/chat-console.d.ts.map +1 -1
- package/dist/web-dashboard/chat-console.js +220 -8
- package/dist/web-dashboard/chat-console.js.map +1 -1
- package/dist/web-dashboard/hub-data.d.ts +1 -1
- package/dist/web-dashboard/hub-data.d.ts.map +1 -1
- package/dist/web-dashboard/hub-data.js +5 -1
- package/dist/web-dashboard/hub-data.js.map +1 -1
- package/dist/web-dashboard/project-context.d.ts +51 -0
- package/dist/web-dashboard/project-context.d.ts.map +1 -0
- package/dist/web-dashboard/project-context.js +184 -0
- package/dist/web-dashboard/project-context.js.map +1 -0
- package/dist/web-dashboard/server.d.ts.map +1 -1
- package/dist/web-dashboard/server.js +473 -3
- package/dist/web-dashboard/server.js.map +1 -1
- package/dist/web-dashboard/src/types.d.ts +2 -0
- package/dist/web-dashboard/src/types.d.ts.map +1 -1
- package/package.json +3 -2
- package/src/web-dashboard/public/assets/index-BeA92vX2.js +177 -0
- package/src/web-dashboard/public/assets/index-BeA92vX2.js.map +1 -0
- package/src/web-dashboard/public/assets/{index-ULi3aFSk.css → index-D6gMO-7J.css} +1 -1
- package/src/web-dashboard/public/index.html +2 -2
- package/src/web-dashboard/public/assets/index-DD-XyTRB.js +0 -141
- package/src/web-dashboard/public/assets/index-DD-XyTRB.js.map +0 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: code-assessment
|
|
3
|
+
description: Perform a structured codebase assessment: read the project, evaluate it across correctness/security/performance/architecture/testability dimensions, produce a gap-findings list, and deliver prioritized recommendations with effort estimates. Use when the goal asks to assess, evaluate, review, audit, or analyze code quality.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# code-assessment
|
|
8
|
+
|
|
9
|
+
Perform a structured codebase assessment: read the project, evaluate it across correctness/security/performance/architecture/testability dimensions, produce a gap-findings list, and deliver prioritized recommendations with effort estimates. Use when the goal asks to assess, evaluate, review, audit, or analyze code quality.
|
|
10
|
+
|
|
11
|
+
## Goal pattern
|
|
12
|
+
|
|
13
|
+
assess evaluate review audit analyze code quality codebase project architecture security performance correctness gaps recommendations
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
- target (file-path [default: .]): Path or scope to assess (default: the whole project)
|
|
18
|
+
- focus (string): Optional comma-separated dimension focus (e.g. security, performance)
|
|
19
|
+
|
|
20
|
+
## Steps
|
|
21
|
+
|
|
22
|
+
1. [context-gatherer] Map the project first — read the top level (list_dir) and key manifests: package.json / pyproject.toml / go.mod, README, tsconfig / eslint config, and the test layout. Determine:
|
|
23
|
+
- the language/framework stack and entry points
|
|
24
|
+
- the build/test/typecheck commands (from package.json scripts or equivalent)
|
|
25
|
+
- the module boundaries (src/, lib/, app/ dirs) and their sizes
|
|
26
|
+
Record the file count and rough LOC per top-level area so the assessment has scope context.
|
|
27
|
+
|
|
28
|
+
2. [reviewer] Evaluate the code across these dimensions — read real files (read_file / code_search), never guess:
|
|
29
|
+
- correctness: error handling, edge cases, null/undefined paths, boundary conditions
|
|
30
|
+
- security: secrets in code, injection (SQL/command/HTML), authn/authz gaps, unsafe deserialization, dependency risk
|
|
31
|
+
- performance: obvious O(n^2) patterns, N+1 queries, blocking calls in hot paths, unbounded caches
|
|
32
|
+
- architecture: coupling, god modules, duplicate logic, missing interfaces, config sprawl, dead code
|
|
33
|
+
- testability: coverage gaps, untestable functions (hidden side effects), missing unit/integration boundaries
|
|
34
|
+
For each finding record: file:line, the issue, why it matters, and a severity (critical / major / minor). (after: step-0)
|
|
35
|
+
|
|
36
|
+
3. [writer] Produce the assessment artifact with this exact structure:
|
|
37
|
+
1. Scope — what was assessed (stack, size, areas)
|
|
38
|
+
2. Gap findings — each with file:line, severity, and why it matters (sorted critical → minor)
|
|
39
|
+
3. Strengths — what is already done well (keep it honest)
|
|
40
|
+
4. Prioritized recommendations — grouped by quick wins / this quarter / later, each with effort (S/M/L) and risk
|
|
41
|
+
5. Suggested next step — the single highest-leverage action to take first
|
|
42
|
+
Deliver it as a structured markdown artifact (heading per section, bullets per finding). (after: step-1)
|
|
43
|
+
|
|
44
|
+
4. [reviewer] Verify the artifact: every critical/major finding has a file:line reference (no vague "somewhere in the codebase" claims), severities are consistent, and the recommendations are actionable (a concrete change, not a platitude). Revise the artifact if any finding lacks evidence. (after: step-2)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docx
|
|
3
|
+
description: Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of Word doc, word document, .docx, .dotx, or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a report, memo, letter, template, or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# docx
|
|
8
|
+
|
|
9
|
+
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of Word doc, word document, .docx, .dotx, or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a report, memo, letter, template, or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
|
|
10
|
+
|
|
11
|
+
## Goal pattern
|
|
12
|
+
|
|
13
|
+
docx doc word document template dotx create read edit manipulate convert report memo letter toc tracked changes comments
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
(none)
|
|
18
|
+
|
|
19
|
+
## Steps
|
|
20
|
+
|
|
21
|
+
1. [context-gatherer] Determine the task and choose the approach — a .docx is a ZIP archive of XML files:
|
|
22
|
+
- Create a new document → write a `docx` (npm) script (see the create step for the footguns)
|
|
23
|
+
- Edit an existing document → `unzip` → edit `word/document.xml` → re-zip (docx-js cannot open existing files)
|
|
24
|
+
- Read content → `pandoc -t markdown file.docx`
|
|
25
|
+
Gather the deliverable spec: document type (report / memo / letter / template), target format (.docx vs .dotx), US Letter vs A4 page size, and whether tracked changes or comments are required.
|
|
26
|
+
|
|
27
|
+
2. [runner] Create a new document with docx-js. `docx` is preinstalled — do NOT run `npm install` first; write the script and `require('docx')` directly. Only if that require fails: `npm install docx`. Known footguns:
|
|
28
|
+
- Page size defaults to A4. For US Letter set `page: { size: { width: 12240, height: 15840 } }` (DXA; 1440 = 1″)
|
|
29
|
+
- Landscape: pass portrait dimensions and `orientation: PageOrientation.LANDSCAPE` — docx-js swaps width/height internally
|
|
30
|
+
- Tables need dual widths: set `columnWidths` on the table AND `width` on every cell, both in `WidthType.DXA` (PERCENTAGE breaks in Google Docs); column widths must sum to the table width
|
|
31
|
+
- Table shading: use `ShadingType.CLEAR`, never `SOLID` (renders black)
|
|
32
|
+
- Lists: never insert `•` literally; use a `numbering` config with `LevelFormat.BULLET`
|
|
33
|
+
- `ImageRun` requires `type:` ("png", "jpg", …)
|
|
34
|
+
- `PageBreak` must be inside a `Paragraph`
|
|
35
|
+
- Never use `
|
|
36
|
+
` — use separate `Paragraph` elements
|
|
37
|
+
- TOC: headings must use built-in `HeadingLevel.*`; custom heading styles need `outlineLevel` set or they won't appear
|
|
38
|
+
- Don't use a table as a horizontal rule — use a paragraph bottom border instead
|
|
39
|
+
- Dot-leader / right-aligned-on-same-line: use `PositionalTab` (`alignment: PositionalTabAlignment.RIGHT`, `leader: PositionalTabLeader.DOT`) inside a `TextRun`, not literal `.` or space padding (after: step-0)
|
|
40
|
+
|
|
41
|
+
3. [runner] Edit an existing document. Legacy `.doc` files must be converted first: `python scripts/office/soffice.py --headless --convert-to docx file.doc`. Then:
|
|
42
|
+
1. `unzip -q doc.docx -d unpacked/`
|
|
43
|
+
2. `find unpacked -type l -delete` — strip symlink entries; docx from external parties is untrusted
|
|
44
|
+
3. `python scripts/merge_runs.py unpacked/` — coalesce fragmented runs so text is findable. Word splits text across many `<w:r>` runs (revision ids, spell-check markers), so a phrase you can see often doesn't exist as a contiguous string in the XML; merge_runs merges adjacent identically-formatted runs without changing content or rendering (it also accepts a `.docx` directly: `python scripts/merge_runs.py doc.docx -o merged.docx`)
|
|
45
|
+
4. Edit `unpacked/word/document.xml` in place — do NOT reformat or pretty-print
|
|
46
|
+
5. Re-zip: `(cd unpacked && rm -f ../out.docx && zip -Xr ../out.docx .)`
|
|
47
|
+
6. Validate: `python scripts/office/validate.py out.docx --original doc.docx` — XSD checks; `--auto-repair` fixes common issues (after: step-0)
|
|
48
|
+
|
|
49
|
+
4. [runner] Tracked changes and comments. Redlining: validate with `--author "<the name you redlined under>"` (needs `--original`) — it reports any text you changed without a `<w:ins>`/`<w:del>` around it, which is easy to do by accident and invisible in the accepted view. Wrap runs in `<w:ins>`/`<w:del>` with `w:id`, `w:author`, `w:date` attributes. Inside `<w:del>`, the text element is `<w:delText>`, not `<w:t>`. A deleted paragraph mark (`<w:pPr><w:rPr><w:del w:id=".." w:author=".." w:date=".."/></w:rPr></w:pPr>`) means merge this paragraph into the next — deleting a paragraph outright is that plus a `<w:del>` around every run. The `<w:del/>` must come before the rPr's other children; their order is schema-enforced. To produce a clean copy with all tracked changes accepted: `python scripts/accept_changes.py in.docx out.docx`. Caveat: accepting a deleted paragraph mark should join that paragraph to the one below it, but `accept_changes.py` and `pandoc --track-changes=accept` don't always — they strip the deleted text but leave the emptied paragraph behind (a stray empty bullet when it was auto-numbered); `pandoc` never joins the paragraphs, `accept_changes.py` joins them correctly except when the deleted paragraph is followed by an empty spacer paragraph. An empty bullet in either view is an artifact of that view, not a defect in the document — check paragraph deletions in the XML.
|
|
50
|
+
|
|
51
|
+
Comments require six cross-linked files — use the helper. Directory mode when you'll also be editing `document.xml` (saves an unzip/rezip cycle): `python scripts/comment.py unpacked/ "Fees & expenses cap is too low"`, `python scripts/comment.py unpacked/ "Agreed" --parent 0`. Against a `.docx` directly: `python scripts/comment.py contract.docx "This cap is too low" -o annotated.docx`. The script writes `comments.xml`, `commentsExtended.xml`, `commentsIds.xml`, `commentsExtensible.xml`, the relationships, and the content-type overrides; comment IDs are auto-assigned. It then prints the `<w:commentRangeStart>`/`<w:commentRangeEnd>`/`<w:commentReference>` snippet to add to `word/document.xml` so the comment anchors to specific text — until you place those markers, the comment exists but is not visible. (after: step-2)
|
|
52
|
+
|
|
53
|
+
5. [reviewer] Verify the output — render it and look at it:
|
|
54
|
+
`python scripts/office/soffice.py --headless --convert-to pdf output.docx` then `pdftoppm -jpeg -r 100 output.pdf page` then `ls page-*.jpg` and Read the images (`pdftoppm` zero-pads page numbers to the width of the page count: `page-01.jpg`…`page-12.jpg`).
|
|
55
|
+
Run `python scripts/office/validate.py out.docx` (XSD checks) after any edit. Dependencies: `docx` (npm, preinstalled — install only if `require('docx')` fails), `pandoc`, LibreOffice (`soffice`), `pdftoppm` (Poppler). (after: step-1, step-2, step-3)
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"updatedAt": "2026-08-18T08:39:06.004Z",
|
|
4
|
+
"skills": [
|
|
5
|
+
{
|
|
6
|
+
"name": "website-deploy",
|
|
7
|
+
"description": "Deploy a static site or built web app to a hosting provider (Cloudflare Pages, Netlify, Vercel, GitHub Pages, AWS S3+CloudFront, Azure Static Web Apps, Firebase Hosting) and verify the live URL. Use when the goal asks to deploy, publish, host, or ship a website or web app to a hosting provider.",
|
|
8
|
+
"version": "1.0.0",
|
|
9
|
+
"author": "agent-nuvira",
|
|
10
|
+
"tags": [
|
|
11
|
+
"deploy",
|
|
12
|
+
"website",
|
|
13
|
+
"hosting",
|
|
14
|
+
"cloudflare",
|
|
15
|
+
"netlify",
|
|
16
|
+
"vercel",
|
|
17
|
+
"github-pages",
|
|
18
|
+
"aws",
|
|
19
|
+
"azure",
|
|
20
|
+
"firebase",
|
|
21
|
+
"publish"
|
|
22
|
+
],
|
|
23
|
+
"source": "agent-nuvira/bundled",
|
|
24
|
+
"updatedAt": "2026-08-18T08:39:06.004Z"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "code-assessment",
|
|
28
|
+
"description": "Perform a structured codebase assessment: read the project, evaluate it across correctness/security/performance/architecture/testability dimensions, produce a gap-findings list, and deliver prioritized recommendations with effort estimates. Use when the goal asks to assess, evaluate, review, audit, or analyze code quality.",
|
|
29
|
+
"version": "1.0.0",
|
|
30
|
+
"author": "agent-nuvira",
|
|
31
|
+
"tags": [
|
|
32
|
+
"assessment",
|
|
33
|
+
"code-review",
|
|
34
|
+
"audit",
|
|
35
|
+
"quality",
|
|
36
|
+
"gaps",
|
|
37
|
+
"recommendations"
|
|
38
|
+
],
|
|
39
|
+
"source": "agent-nuvira/bundled",
|
|
40
|
+
"updatedAt": "2026-08-18T08:39:06.004Z"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "technical-roadmap",
|
|
44
|
+
"description": "Build a phased technical roadmap from the current state to a target state: capture the current architecture, define the target, then produce ordered phases with dependencies, effort, risk, and success criteria. Use when the goal asks for a roadmap, migration plan, technical plan, or phased upgrade path.",
|
|
45
|
+
"version": "1.0.0",
|
|
46
|
+
"author": "agent-nuvira",
|
|
47
|
+
"tags": [
|
|
48
|
+
"roadmap",
|
|
49
|
+
"planning",
|
|
50
|
+
"migration",
|
|
51
|
+
"architecture",
|
|
52
|
+
"phases",
|
|
53
|
+
"strategy"
|
|
54
|
+
],
|
|
55
|
+
"source": "agent-nuvira/bundled",
|
|
56
|
+
"updatedAt": "2026-08-18T08:39:06.004Z"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"name": "plan-create-track",
|
|
60
|
+
"description": "Plan and track a multi-step job: break the goal into ordered, verifiable steps, declare them with plan_todo, work through them updating status (running → done, or blocked with a note), and finish with a summary. Use for any job with 2+ steps where progress visibility matters.",
|
|
61
|
+
"version": "1.0.0",
|
|
62
|
+
"author": "agent-nuvira",
|
|
63
|
+
"tags": [
|
|
64
|
+
"plan",
|
|
65
|
+
"todo",
|
|
66
|
+
"tracking",
|
|
67
|
+
"checklist",
|
|
68
|
+
"progress",
|
|
69
|
+
"execution"
|
|
70
|
+
],
|
|
71
|
+
"source": "agent-nuvira/bundled",
|
|
72
|
+
"updatedAt": "2026-08-18T08:39:06.004Z"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "test-strategy",
|
|
76
|
+
"description": "Plan and run a deep test pass: map the test surface, choose the right matrix (unit / integration / e2e, focused runs for changed code), execute the real commands (npm test, vitest, pytest, etc.), and deliver a verdict with evidence. Use when the goal asks to test, verify, check for regressions, or prove a change is safe.",
|
|
77
|
+
"version": "1.0.0",
|
|
78
|
+
"author": "agent-nuvira",
|
|
79
|
+
"tags": [
|
|
80
|
+
"test",
|
|
81
|
+
"testing",
|
|
82
|
+
"verification",
|
|
83
|
+
"regression",
|
|
84
|
+
"coverage",
|
|
85
|
+
"quality"
|
|
86
|
+
],
|
|
87
|
+
"source": "agent-nuvira/bundled",
|
|
88
|
+
"updatedAt": "2026-08-18T08:39:06.004Z"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "docx",
|
|
92
|
+
"description": "Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of Word doc, word document, .docx, .dotx, or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a report, memo, letter, template, or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",
|
|
93
|
+
"version": "1.0.0",
|
|
94
|
+
"author": "agent-nuvira",
|
|
95
|
+
"tags": [
|
|
96
|
+
"docx",
|
|
97
|
+
"word",
|
|
98
|
+
"documents",
|
|
99
|
+
"office"
|
|
100
|
+
],
|
|
101
|
+
"source": "agent-nuvira/bundled",
|
|
102
|
+
"updatedAt": "2026-08-18T08:39:06.004Z"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: plan-create-track
|
|
3
|
+
description: Plan and track a multi-step job: break the goal into ordered, verifiable steps, declare them with plan_todo, work through them updating status (running → done, or blocked with a note), and finish with a summary. Use for any job with 2+ steps where progress visibility matters.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# plan-create-track
|
|
8
|
+
|
|
9
|
+
Plan and track a multi-step job: break the goal into ordered, verifiable steps, declare them with plan_todo, work through them updating status (running → done, or blocked with a note), and finish with a summary. Use for any job with 2+ steps where progress visibility matters.
|
|
10
|
+
|
|
11
|
+
## Goal pattern
|
|
12
|
+
|
|
13
|
+
plan create track steps todo checklist progress multi-step job execute work through order
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
- goal (string (required)): The goal to plan and execute
|
|
18
|
+
|
|
19
|
+
## Steps
|
|
20
|
+
|
|
21
|
+
1. [planner] Break the goal into 3–7 ordered steps. Each step must be:
|
|
22
|
+
- independently verifiable (you will know it is done by running/reading something)
|
|
23
|
+
- small enough to complete in one working session
|
|
24
|
+
- ordered so dependencies come first (but no stricter than necessary)
|
|
25
|
+
Give each step a short stable id (reproduce, fix, verify) and a one-line description. Declare them with the plan_todo tool (action: create, goal + steps).
|
|
26
|
+
|
|
27
|
+
2. [runner] Work the steps IN ORDER, updating plan_todo (action: update, id + status) at each transition:
|
|
28
|
+
- mark the current step running before starting it
|
|
29
|
+
- mark it done only after its exit criterion is verified (a test passed, a file reads correctly, a command succeeded)
|
|
30
|
+
- if a step is blocked (an external dependency, a failure you cannot fix now), mark it blocked and CONTINUE with the next step — never stall the whole plan on one step
|
|
31
|
+
Use the coding tools (read_file / edit_file / run_terminal) to actually do the work — the plan is a map, not the work itself. (after: step-0)
|
|
32
|
+
|
|
33
|
+
3. [reviewer] Close the loop: confirm every step is done or explicitly blocked, re-check the exit criteria for the done steps (run the final verification once more if cheap), and write a closing summary: what was completed, what is blocked (if anything), and the natural next step. (after: step-1)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: technical-roadmap
|
|
3
|
+
description: Build a phased technical roadmap from the current state to a target state: capture the current architecture, define the target, then produce ordered phases with dependencies, effort, risk, and success criteria. Use when the goal asks for a roadmap, migration plan, technical plan, or phased upgrade path.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# technical-roadmap
|
|
8
|
+
|
|
9
|
+
Build a phased technical roadmap from the current state to a target state: capture the current architecture, define the target, then produce ordered phases with dependencies, effort, risk, and success criteria. Use when the goal asks for a roadmap, migration plan, technical plan, or phased upgrade path.
|
|
10
|
+
|
|
11
|
+
## Goal pattern
|
|
12
|
+
|
|
13
|
+
roadmap migration plan technical plan phased upgrade path target state current state phases dependencies milestones
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
- target (file-path [default: .]): Path or scope for the roadmap (default: the whole project)
|
|
18
|
+
- horizon (string [default: 6 months]): Roadmap horizon, e.g. "6 months" or "this quarter" (default: 6 months)
|
|
19
|
+
|
|
20
|
+
## Steps
|
|
21
|
+
|
|
22
|
+
1. [context-gatherer] Establish the CURRENT state with evidence: read the architecture-relevant files (entry points, config, module boundaries, package manifests), and note the stack, key flows, and known constraints (legacy pieces, hard dependencies, team-visible risk). Keep it factual — cite files.
|
|
23
|
+
|
|
24
|
+
2. [writer] Define the TARGET state as concrete outcomes, not slogans: for each area (stack, architecture, quality, operations) state what changes and what the measurable success criterion is (e.g. "typecheck passes with noEmit", "deploys are under 5 minutes"). (after: step-0)
|
|
25
|
+
|
|
26
|
+
3. [planner] Design the PHASES between current and target. Each phase must have:
|
|
27
|
+
- a clear outcome and exit criteria
|
|
28
|
+
- dependencies on other phases (explicit dependsOn)
|
|
29
|
+
- effort estimate (S/M/L) and risk (low/medium/high)
|
|
30
|
+
- what is explicitly OUT of scope (so phases stay small and shippable)
|
|
31
|
+
Order them so each phase leaves the system working (never a long broken window). Typically 3–5 phases. (after: step-1)
|
|
32
|
+
|
|
33
|
+
4. [writer] Produce the roadmap artifact: current state (cited) → target state (measurable) → phases (each with outcome, dependencies, effort, risk, out-of-scope), plus a critical-path note (which phases gate everything else) and a first-step recommendation. (after: step-2)
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test-strategy
|
|
3
|
+
description: Plan and run a deep test pass: map the test surface, choose the right matrix (unit / integration / e2e, focused runs for changed code), execute the real commands (npm test, vitest, pytest, etc.), and deliver a verdict with evidence. Use when the goal asks to test, verify, check for regressions, or prove a change is safe.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# test-strategy
|
|
8
|
+
|
|
9
|
+
Plan and run a deep test pass: map the test surface, choose the right matrix (unit / integration / e2e, focused runs for changed code), execute the real commands (npm test, vitest, pytest, etc.), and deliver a verdict with evidence. Use when the goal asks to test, verify, check for regressions, or prove a change is safe.
|
|
10
|
+
|
|
11
|
+
## Goal pattern
|
|
12
|
+
|
|
13
|
+
test verify regression check coverage suite unit integration e2e pass run tests prove safe
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
- scope (choice [default: full]): Scope of the test pass: focused | unit | integration | full (default: full)
|
|
18
|
+
- target (file-path): Path or files to focus on (for scope=focused)
|
|
19
|
+
|
|
20
|
+
## Steps
|
|
21
|
+
|
|
22
|
+
1. [context-gatherer] Map the test surface with evidence: read the test config (vitest/jest/pytest config in the manifests), list the test files (glob "**/*.test.*" or tests/), and note the commands that run them (from package.json scripts or equivalent). Identify:
|
|
23
|
+
- the unit test entry points and how fast they are
|
|
24
|
+
- any integration/e2e suites and their prerequisites (services, fixtures, env vars)
|
|
25
|
+
- which areas changed and deserve a focused run first
|
|
26
|
+
|
|
27
|
+
2. [planner] Choose the matrix — never just "run everything":
|
|
28
|
+
- focused: the tests touching the changed code (fastest, run FIRST)
|
|
29
|
+
- unit: the full unit suite (the main regression net)
|
|
30
|
+
- integration: the suites that exercise real boundaries (DB, HTTP, filesystem)
|
|
31
|
+
- e2e: the slow end-to-end flows — run only when unit+integration are green
|
|
32
|
+
- typecheck/build: static verification alongside the tests
|
|
33
|
+
Record the exact commands and the order, with the reason each level matters. (after: step-0)
|
|
34
|
+
|
|
35
|
+
3. [runner] Execute the matrix IN ORDER with the real commands via run_terminal (never claim tests pass without running them):
|
|
36
|
+
- start with the focused run — a failure here tells you the change broke something before the slow suites waste time
|
|
37
|
+
- then the full unit suite
|
|
38
|
+
- then integration (and e2e only if the cheaper levels are green)
|
|
39
|
+
- run typecheck/build as the static gate
|
|
40
|
+
On a failure: read the failing test + the code (read_file), fix, and re-run that focused test until green before moving up the matrix. (after: step-1)
|
|
41
|
+
|
|
42
|
+
4. [reviewer] Deliver the verdict with evidence: what ran (exact commands + pass/fail counts), what passed, what failed and why (file:line), coverage gaps that matter, and a clear recommendation (safe to merge / needs fixes / needs more tests). Never state "tests pass" without the actual run output. (after: step-2)
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: website-deploy
|
|
3
|
+
description: Deploy a static site or built web app to a hosting provider (Cloudflare Pages, Netlify, Vercel, GitHub Pages, AWS S3+CloudFront, Azure Static Web Apps, Firebase Hosting) and verify the live URL. Use when the goal asks to deploy, publish, host, or ship a website or web app to a hosting provider.
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# website-deploy
|
|
8
|
+
|
|
9
|
+
Deploy a static site or built web app to a hosting provider (Cloudflare Pages, Netlify, Vercel, GitHub Pages, AWS S3+CloudFront, Azure Static Web Apps, Firebase Hosting) and verify the live URL. Use when the goal asks to deploy, publish, host, or ship a website or web app to a hosting provider.
|
|
10
|
+
|
|
11
|
+
## Goal pattern
|
|
12
|
+
|
|
13
|
+
deploy publish host website web app site landing page cloudflare pages netlify vercel github pages hosting static
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
- provider (choice (required)): Hosting provider to deploy to: cloudflare-pages, netlify, vercel, github-pages, aws-s3, azure-swa, or firebase-hosting
|
|
18
|
+
- projectName (string): Provider project/site/bucket name
|
|
19
|
+
- outputDir (file-path [default: .]): Directory containing the built site files (default: current directory)
|
|
20
|
+
- productionBranch (string [default: main]): Production branch for the hosting project (default: main)
|
|
21
|
+
|
|
22
|
+
## Steps
|
|
23
|
+
|
|
24
|
+
1. [context-gatherer] Inspect the site directory to identify the built output (index.html or a framework build folder like dist/ or build/), detect which hosting CLIs are installed and authenticated on this machine (wrangler, netlify, vercel, gh, aws, firebase), and report the site type and output directory.
|
|
25
|
+
|
|
26
|
+
2. [runner] Ensure the hosting project is ready for the target provider (skip creation if the project already exists):
|
|
27
|
+
- cloudflare-pages: wrangler 4 does NOT auto-create Pages projects, so create it first (ignore the error if it already exists): Run `wrangler pages project create {{projectName}} --production-branch {{productionBranch}}`
|
|
28
|
+
- netlify: no setup needed — the CLI creates the site on first deploy
|
|
29
|
+
- vercel: no setup needed — the CLI creates the project on first deploy
|
|
30
|
+
- github-pages: ensure the folder is a git repo with a remote and a .nojekyll file: Run `git init 2>/dev/null; touch .nojekyll; git add -A && git commit -m "init" 2>/dev/null || true`
|
|
31
|
+
- aws-s3: ensure the S3 bucket exists with static website hosting enabled: Run `aws s3api create-bucket --bucket {{projectName}} --region us-east-1 2>/dev/null || true; aws s3 website s3://{{projectName}} --index-document index.html --error-document 404.html 2>/dev/null || true`
|
|
32
|
+
- azure-swa: no setup needed — the CLI creates the app
|
|
33
|
+
- firebase-hosting: ensure firebase.json exists with a public directory set to {{outputDir}} (create it if missing). (after: step-0)
|
|
34
|
+
|
|
35
|
+
3. [runner] Deploy the built site in '{{outputDir}}' to the '{{provider}}' provider and capture the deployment URL printed by the command:
|
|
36
|
+
- cloudflare-pages: Run `wrangler pages deploy {{outputDir}} --project-name {{projectName}}`
|
|
37
|
+
- netlify: Run `npx netlify-cli deploy --prod --dir={{outputDir}}`
|
|
38
|
+
- vercel: Run `npx vercel --prod --yes`
|
|
39
|
+
- github-pages: Run `git add -A && git commit -m "deploy: website" && git push origin {{productionBranch}}` (or `npx gh-pages -d {{outputDir}}` to push a gh-pages branch)
|
|
40
|
+
- aws-s3: Run `aws s3 sync {{outputDir}} s3://{{projectName}} --delete` (deployment URL is https://{{projectName}}.s3-website-<region>.amazonaws.com)
|
|
41
|
+
- azure-swa: Run `npx @azure/static-web-apps-cli deploy --env production`
|
|
42
|
+
- firebase-hosting: Run `npx firebase-tools deploy --only hosting` (after: step-1)
|
|
43
|
+
|
|
44
|
+
4. [runner] Verify the deployed site is live: fetch the deployment URL printed by the deploy step with curl and confirm it returns HTTP 200 and the site HTML. For example: Run `curl -s -o /dev/null -w "%{http_code}" <deployed-url>` then Run `curl -s <deployed-url> | head -c 400` (after: step-2)
|
|
45
|
+
|
|
46
|
+
5. [reviewer] Review the deployment: confirm the live URL returns HTTP 200 with the expected page content, and that the deployed files (HTML/CSS/JS) are present and correctly referenced. (after: step-3)
|
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ This table highlights core capabilities for quick machine parsing and comparison
|
|
|
47
47
|
| Security guardrails | Privacy-focused; PII detection; prompt-injection defenses; security scan CLI |
|
|
48
48
|
| Publishing | Standalone eject & npm publishing (`npx agent-nuvira`) |
|
|
49
49
|
| **Routing strategy** | **Thompson-sampling bandit + uncertainty escalation + per-model learning + promotion gate A/B + routing rules + hard constraints** |
|
|
50
|
-
| **Test suite** | **
|
|
50
|
+
| **Test suite** | **4,864 tests across 217 files — 100% passing** |
|
|
51
51
|
| **Vector backend** | **Native FAISS (automatic), pure-JS IVF fallback, exact JSON fallback** |
|
|
52
52
|
|
|
53
53
|
|
|
@@ -58,9 +58,9 @@ This table highlights core capabilities for quick machine parsing and comparison
|
|
|
58
58
|
layer: a deterministic rule fast-path (<5ms, works offline) with LLM verification behind it,
|
|
59
59
|
collapsing to a single action every command consumes identically. Before any work begins,
|
|
60
60
|
Agent-Nuvira prints a 🧠 Understanding card — the resolved goal, target, scope, acceptance
|
|
61
|
-
criteria, and risk flags — so the request is **seen before it is run**.
|
|
62
|
-
|
|
63
|
-
|
|
61
|
+
criteria, and risk flags — so the request is **seen before it is run**. The live activity
|
|
62
|
+
board then renders each agent step as it happens — no black box, no silently
|
|
63
|
+
half-understood goals
|
|
64
64
|
- **🛠️ Execution that repairs itself** — a failed task is not just reported: failures are
|
|
65
65
|
classified, automatically repaired with escalating retries, independently verified after the
|
|
66
66
|
fix, and the lesson is stored in persistent failure memory so the same mistake is less likely
|
|
@@ -105,7 +105,7 @@ This table highlights core capabilities for quick machine parsing and comparison
|
|
|
105
105
|
- **VS Code extension** — Chat Panel with streaming responses, slash commands, and session history;
|
|
106
106
|
Diagnostic → AI Fix from lightbulb menu; Code Lens actions (Test/Review/Explain/Fix) above functions
|
|
107
107
|
and classes; 9 commands, inline code suggestions, diff viewer, agent progress panel
|
|
108
|
-
- **22-platform multi-channel gateway** — `buff gateway start / send / status / alias` runs the agent from Telegram, Discord, Slack, WhatsApp (Cloud API + Baileys personal bridge), Email, Signal, DingTalk, Feishu, WeCom, Mattermost, Matrix, generic Webhook, BlueBubbles (iMessage), ntfy, Teams, Google Chat, Weixin, SMS (Twilio), IRC (two-way), SimpleX (two-way),
|
|
108
|
+
- **22-platform multi-channel gateway** — `buff gateway start / send / status / alias` runs the agent from Telegram, Discord, Slack, WhatsApp (Cloud API + Baileys personal bridge), Email, Signal, DingTalk, Feishu, WeCom, Mattermost, Matrix, generic Webhook, BlueBubbles (iMessage), ntfy, Teams, Google Chat, Weixin, SMS (Twilio), IRC (two-way), SimpleX (two-way), and Home Assistant — all opt-in via standard env vars per platform, with a guaranteed delivery ledger (auto-retry on `buff gateway start`), the dashboard Channels send-test, and a `X/22 platforms configured` status line
|
|
109
109
|
- **Remote agent federation** — multi-machine collaboration with protocol, server, and client
|
|
110
110
|
- **Web UI dashboard** — React dashboard with DAG visualization, model health, cost charts, and history browser
|
|
111
111
|
- **Hybrid model routing** — intelligent model selection based on task complexity, cost, and availability
|
|
@@ -2040,7 +2040,8 @@ npx tsc --noEmit
|
|
|
2040
2040
|
|
|
2041
2041
|
| Version | Date | Key Changes |
|
|
2042
2042
|
|---------|------|-------------|
|
|
2043
|
-
| **v1.
|
|
2043
|
+
| **v1.74.2** | Aug 2026 | **Dashboard-first — chat is the front door (Phases 1–8 delivered)** — token-streaming typewriter, spec-complete markdown + syntax highlight, artifact cards (diff per-file accept/reject + commit-accepted, result, deploy — copy buttons + keyboard nav), inline command-run execution cards, project attach with code-map context, persisted sessions with smart-rail resume/search/rename/delete, composer attachments (file/paste/drag), /learn skill authoring + marketplace install, streaming cancel + retry; 4,864 root + 263 dashboard tests; CLI engine unchanged |
|
|
2044
|
+
| **v1.63.0** | Aug 2026 | **Messaging campaign — 22-platform multi-channel gateway** — the full gateway surface with env-var-compatible credentials: DingTalk, Feishu, WeCom, Mattermost, Matrix, generic Webhook, BlueBubbles, ntfy, Teams, Google Chat, Weixin (iLink bot API), SMS (Twilio), IRC (RFC 1459 net/tls, two-way), SimpleX (daemon WS, two-way), Home Assistant (REST) on top of Telegram/Discord/Slack/WhatsApp — service-native `TWILIO_*`/`IRC_*`/`SIMPLEX_*`/`HASS_*` creds, zero new SDK deps; WhatsApp Baileys personal bridge (`buff whatsapp pair`); guaranteed delivery ledger with auto-retry; dashboard Channels send-test; `buff gateway status` platform-count line; SimpleX inbound (auto-accept + allowlists + reconnect); IRC inbound (addressing + allowlist + PING/PONG + reconnect); 4,280 tests |
|
|
2044
2045
|
| **v1.0.0** | Apr 2026 | Initial release — Core CLI with chat, 5 built-in providers (expandable to 17+ via plugins), config, models |
|
|
2045
2046
|
| **v1.1.0** | Apr 2026 | Model discovery with search/filter |
|
|
2046
2047
|
| **v1.2.0** | Apr 2026 | AI-assisted file editing (edit command) |
|
package/dist/agents/agent.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ import type { InferenceOptions } from '../config/types.js';
|
|
|
10
10
|
export type TaskStatus = 'pending' | 'running' | 'completed' | 'failed';
|
|
11
11
|
/**
|
|
12
12
|
* H2 — one sub-agent delegation spec on a delegate task step. The agent runs
|
|
13
|
-
* this sub-agent with a FRESH isolated context (
|
|
14
|
-
*
|
|
13
|
+
* this sub-agent with a FRESH isolated context (`spawn_agents` /
|
|
14
|
+
* `delegate_tool.py` parity).
|
|
15
15
|
*/
|
|
16
16
|
export interface TaskDelegation {
|
|
17
17
|
/** The specialized sub-agent type (registered in the ModuleRegistry). */
|
|
@@ -275,7 +275,7 @@ export class ModuleRegistry {
|
|
|
275
275
|
isBuiltin: true,
|
|
276
276
|
});
|
|
277
277
|
// H2 — delegate agent: fans out taskStep.delegation sub-agent specs in
|
|
278
|
-
// parallel (
|
|
278
|
+
// parallel (spawn_agents / delegate_tool.py parity).
|
|
279
279
|
registry.register('delegate', () => new DelegateAgent(), {
|
|
280
280
|
name: 'Delegate',
|
|
281
281
|
description: 'Fans out sub-agent delegation specs in parallel with fresh isolated contexts and aggregates their summary results',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-registry.js","sourceRoot":"","sources":["../../src/agents/module-registry.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"module-registry.js","sourceRoot":"","sources":["../../src/agents/module-registry.ts"],"names":[],"mappings":"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"}
|
|
@@ -843,7 +843,7 @@ export class Orchestrator {
|
|
|
843
843
|
}
|
|
844
844
|
// Runner and sandbox agents need exclusive access (no parallel).
|
|
845
845
|
// Conservative parallelism (recommended): independent tasks — gatherers,
|
|
846
|
-
// writers, reviewers — run in PARALLEL within a batch
|
|
846
|
+
// writers, reviewers — run in PARALLEL within a batch,
|
|
847
847
|
// while tester/debugger/runner (and any strategy-marked serial step) run
|
|
848
848
|
// one at a time because they share files, commands, ports, and sandboxes.
|
|
849
849
|
const exclusiveAgentTypes = ['tester', 'debugger', 'runner'];
|