vgxness 1.14.0 → 1.14.1

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/README.md CHANGED
@@ -8,7 +8,7 @@ This package is proprietary software. The npm package ships inspectable JavaScri
8
8
 
9
9
  OpenCode is the primary supported provider. Claude setup support is secondary. VGX-managed OpenCode and Claude provider configuration is user-global only; provider config writes require explicit CLI confirmation.
10
10
 
11
- VGXNESS v1.10.x has a current project health audit describing the implemented CLI/MCP/SDD control plane, OpenCode health, known docs drift, interrupted runs, and the remaining execution/recovery gaps. See [Project health audit v1.10.x](./docs/project-health-audit-v1.10.x.md) for the current system snapshot; [v1.9.1](./docs/project-health-audit-v1.9.1.md) remains historical validation evidence for that release.
11
+ VGXNESS v1.14.x has a current project health audit describing the implemented CLI/MCP/SDD control plane, OpenCode-first workflow, release-readiness checks, and the remaining execution/recovery gaps. See [Project health audit v1.14.x](./docs/project-health-audit-v1.14.x.md) for the current system snapshot; [v1.10.x](./docs/project-health-audit-v1.10.x.md) and [v1.9.1](./docs/project-health-audit-v1.9.1.md) remain historical validation evidence for those releases.
12
12
 
13
13
  ## Requirements
14
14
 
@@ -256,6 +256,7 @@ Remove any user-global OpenCode/Claude config entries and local/global VGXNESS d
256
256
  ## More docs
257
257
 
258
258
  - [CLI reference](./docs/cli.md)
259
+ - [Project health audit v1.14.x](./docs/project-health-audit-v1.14.x.md)
259
260
  - [Project health audit v1.10.x](./docs/project-health-audit-v1.10.x.md)
260
261
  - [Project health audit v1.9.1](./docs/project-health-audit-v1.9.1.md)
261
262
  - [Architecture](./docs/architecture.md)
@@ -100,8 +100,13 @@ export class SkillResolver {
100
100
  });
101
101
  }
102
102
  resolveAgent(input) {
103
- if (input.agentId !== undefined)
104
- return this.agents.getById(input.agentId);
103
+ if (input.agentId !== undefined) {
104
+ const byId = this.agents.getById(input.agentId);
105
+ if (byId.ok || input.project === undefined)
106
+ return byId;
107
+ const byName = this.agents.getByName(input.project, input.scope ?? 'project', input.agentId);
108
+ return byName.ok ? byName : byId;
109
+ }
105
110
  if (input.agentName === undefined)
106
111
  return ok(undefined);
107
112
  if (input.project === undefined)
@@ -1,6 +1,6 @@
1
1
  # vgxness Architecture
2
2
 
3
- > **Scope:** this document describes the current v1.10.x architecture as it is actually built. It is the source of truth for how the product works today, with the latest health snapshot captured in [Project health audit v1.10.x](./project-health-audit-v1.10.x.md). Planned work that is not yet shipped lives in [Roadmap](./roadmap.md); historical planning context that no longer reflects reality has been retired. Where this doc disagrees with code, code wins — file a doc-sync task against the relevant module.
3
+ > **Scope:** this document describes the current v1.14.x architecture as it is actually built. It is the source of truth for how the product works today, with the latest health snapshot captured in [Project health audit v1.14.x](./project-health-audit-v1.14.x.md). Planned work that is not yet shipped lives in [Roadmap](./roadmap.md); historical planning context that no longer reflects reality has been retired. Where this doc disagrees with code, code wins — file a doc-sync task against the relevant module.
4
4
 
5
5
  `vgxness` is a local-first, provider-agnostic, Gentle-AI-like harness for agentic development. Its core architecture separates the product domain from provider-specific tooling so agents, skills, memory, SDD workflows, runs, and traces can work across OpenCode, Claude Code, and future adapters such as Pi.
6
6
 
@@ -387,12 +387,13 @@ Skill improvement proposals are the current controlled foundation for self-impro
387
387
  CLI examples:
388
388
 
389
389
  ```bash
390
- vgxness skills register --project vgxness --name sdd-apply --description "Applies SDD tasks"
391
- vgxness skills add-version --project vgxness --name sdd-apply --version 1.0.0 --source-kind path --source-path .config/opencode/skills/sdd-apply/SKILL.md --activate
392
- vgxness skills attach --project vgxness --name sdd-apply --target-type workflow-phase --target-key sdd:apply
393
- vgxness skills resolve --agent apply-agent --project vgxness --workflow sdd --phase apply --provider opencode
394
- vgxness skills payload --agent apply-agent --project vgxness --workflow sdd --phase apply --provider opencode
395
- vgxness skills propose --project vgxness --name sdd-apply --proposed-version 1.1.0 --source-kind inline --inline-metadata '{"content":"Updated skill"}' --rationale "Repeated correction from trace"
390
+ vgxness skills get --project vgxness --name vgxness-sdd-apply
391
+ vgxness skills resolve --project vgxness --workflow sdd --phase apply-progress --intent-signals git,tdd,review-size --provider opencode
392
+ vgxness skills payload --project vgxness --workflow sdd --phase apply-progress --intent-signals git,tdd,review-size --provider opencode
393
+ vgxness skills register --project vgxness --name team-review-guidance --description "Team-specific review guidance"
394
+ vgxness skills add-version --project vgxness --name team-review-guidance --version 1.0.0 --source-kind inline --inline-metadata '{"content":"Check product risk, review size, and rollback notes."}' --activate
395
+ vgxness skills attach --project vgxness --name team-review-guidance --target-type intent-signal --target-key review-size
396
+ vgxness skills propose --project vgxness --name team-review-guidance --proposed-version 1.1.0 --source-kind inline --inline-metadata '{"content":"Revised team guidance."}' --rationale "Repeated correction from trace"
396
397
  vgxness skills submit-proposal --proposal <proposal-id> --actor uziel
397
398
  vgxness skills approve-proposal --proposal <proposal-id> --actor uziel --reason "Reviewed diff"
398
399
  vgxness skills apply-proposal --proposal <proposal-id> --actor uziel
@@ -470,7 +471,7 @@ The envelope is always `installable:false` and `readOnly:true`. It does **not**
470
471
 
471
472
  ### OpenCode manager orchestration
472
473
 
473
- The checked-in OpenCode default config and `seeds/agents/agent-seed-v1.json` define `vgxness-manager` as an MCP-first orchestrator. The manager should use `vgxness_session_restore` with the project and workspace directory when starting, resuming, or recovering context, then use SDD artifact/status tools, memory tools, agent resolution, run/preflight tools, and read-only payload/profile previews before delegating substantial phase work to exact SDD subagents. Before ending, pausing, handing off, or compacting, it should call `vgxness_session_close` with the current session id, actor `manager`, and an actionable summary; if no current session id is available, it must not invent one and should preserve the summary in its final response. Its OpenCode `permission.task` remains deny-by-default: `*` is denied and only the canonical `vgxness-sdd-*` subagent names are allowed explicitly. The seed/default prompts are self-contained and do not require external `~/.config/opencode/skills/sdd-*` files; such skills are optional registry assets if a project registers them separately.
474
+ The checked-in OpenCode default config and `seeds/agents/agent-seed-v1.json` define `vgxness-manager` as an MCP-first orchestrator. The manager should use `vgxness_session_restore` with the project and workspace directory when starting, resuming, or recovering context, then use SDD artifact/status tools, memory tools, agent resolution, run/preflight tools, and read-only payload/profile previews before delegating substantial phase work to exact SDD subagents. Before ending, pausing, handing off, or compacting, it should call `vgxness_session_close` with the current session id, actor `manager`, and an actionable summary; if no current session id is available, it must not invent one and should preserve the summary in its final response. Its OpenCode `permission.task` remains deny-by-default: `*` is denied and only the canonical `vgxness-sdd-*` subagent names are allowed explicitly. The seed/default prompts are self-contained and do not require external provider-native skill files; optional guidance should live in VGXNESS registry assets unless a future provider-native integration is explicitly designed.
474
475
 
475
476
  ## Run lifecycle
476
477
 
package/docs/cli.md CHANGED
@@ -577,7 +577,7 @@ This seed file is repo-only in v1.3.0 package contents. If installed-package wor
577
577
 
578
578
  The command prints an `AgentSeedLoadSummary` JSON payload with `created`, `updated`, `agents`, `subagents`, and `warnings`. Re-running the same seed is safe: records are upserted by the current project, scope, and name, so existing seed records are updated in place instead of duplicated.
579
579
 
580
- The checked-in `vgxness-manager` and SDD subagents are self-contained: their seed instructions describe the MCP-first orchestration contract inline and do not require installing `~/.config/opencode/skills/sdd-*`. SDD skills can still be registered and attached as optional registry assets when a project wants extra reusable guidance.
580
+ The checked-in `vgxness-manager` and SDD subagents are self-contained: their seed instructions describe the MCP-first orchestration contract inline and do not require external provider-native skill directories. SDD skills can still be registered and attached as optional VGXNESS registry assets when a project wants extra reusable guidance.
581
581
 
582
582
  Seed loading preserves user-created agents that are absent from the manifest. It only writes to the selected local registry database (`--db`, `VGXNESS_DB_PATH`, or the global default); it does **not** create `.opencode/`, `.claude/`, provider config, or user/global OpenCode configuration.
583
583
 
@@ -592,20 +592,18 @@ The render command returns preview artifacts only and keeps provider config unto
592
592
 
593
593
  ## Skill examples
594
594
 
595
- Register an optional provider-agnostic skill, add an active version, attach it to a workflow phase, and record a simple run outcome. These examples are registry-managed enhancements, not requirements for the checked-in OpenCode manager/subagents:
595
+ Inspect the built-in VGXNESS registry/context skills and resolve the context that would be available to a workflow phase. These examples are registry-managed guidance only; they do not install provider-native OpenCode skills or write provider config:
596
596
 
597
597
  ```bash
598
- bun run cli:bun -- skills register --project vgxness --name sdd-apply --description "Applies focused SDD slices"
599
- bun run cli:bun -- skills add-version --project vgxness --name sdd-apply --version 1.0.0 --source-kind path --source-path .config/opencode/skills/sdd-apply/SKILL.md --activate
600
- bun run cli:bun -- skills attach --project vgxness --name sdd-apply --target-type workflow-phase --target-key sdd:apply
601
- bun run cli:bun -- skills record-usage --project vgxness --name sdd-apply --outcome helped --run-id <run-id> --target-type workflow-phase --target-key sdd:apply
598
+ bun run cli:bun -- skills get --project vgxness --name vgxness-sdd-apply
599
+ bun run cli:bun -- skills payload --project vgxness --workflow sdd --phase apply-progress --intent-signals git,tdd,review-size --provider opencode
602
600
  ```
603
601
 
604
602
  Resolve the skills that would be available to a runtime context:
605
603
 
606
604
  ```bash
607
- bun run cli:bun -- skills resolve --agent apply-agent --project vgxness --workflow sdd --phase apply --provider opencode
608
- bun run cli:bun -- skills resolve --agent apply-agent --project vgxness --phase apply --run <run-id> --record-usage selected
605
+ bun run cli:bun -- skills resolve --project vgxness --workflow sdd --phase apply-progress --intent-signals git,tdd,review-size --provider opencode
606
+ bun run cli:bun -- skills resolve --project vgxness --workflow plan --phase pr --intent-signals workflow-selection,pull-request --provider opencode
609
607
  ```
610
608
 
611
609
  `skills resolve` is read-only by default. It combines matching skill attachments plus the agent definition `skills` field, returns active/current versions only, and includes source metadata plus inline `summary`/`content` when available. It records `selected` or `injected` usage only when both `--run` and `--record-usage` are explicit.
@@ -619,10 +617,13 @@ bun run cli:bun -- skills status --project vgxness --scope project --provider op
619
617
 
620
618
  `skills status` prints deterministic JSON with `kind: "skills-status"` and `version: 1`. It includes project/scope/provider context, registry skill counts and current-version status, declared/resolved/missing skills for matching agents or subagents, resolver diagnostics, and safety markers. The command is read-only: it does not repair, install, or write provider configuration and does not record skill usage. A missing `--agent` match returns valid JSON with a warning diagnostic instead of crashing.
621
619
 
622
- Create and review a skill improvement proposal without activating it:
620
+ Register and review an optional project-local registry skill without activating provider-native OpenCode skill loading:
623
621
 
624
622
  ```bash
625
- bun run cli:bun -- skills propose --project vgxness --name sdd-apply --proposed-version 1.1.0 --source-kind inline --inline-metadata '{"content":"Updated skill body"}' --rationale "Repeated correction from trace" --source-signal '{"kind":"trace-failure"}'
623
+ bun run cli:bun -- skills register --project vgxness --name team-review-guidance --description "Team-specific review guidance"
624
+ bun run cli:bun -- skills add-version --project vgxness --name team-review-guidance --version 1.0.0 --source-kind inline --inline-metadata '{"content":"Check product risk, review size, and rollback notes."}' --activate
625
+ bun run cli:bun -- skills attach --project vgxness --name team-review-guidance --target-type intent-signal --target-key review-size
626
+ bun run cli:bun -- skills propose --project vgxness --name team-review-guidance --proposed-version 1.1.0 --source-kind inline --inline-metadata '{"content":"Revised team guidance."}' --rationale "Repeated correction from trace" --source-signal '{"kind":"trace-failure"}'
626
627
  bun run cli:bun -- skills proposals --status draft
627
628
  bun run cli:bun -- skills get-proposal --proposal <proposal-id>
628
629
  ```
@@ -640,7 +641,7 @@ Rejected or cancelled proposals cannot be applied. These commands store reviewab
640
641
  Build an injection-ready payload without mutating provider config:
641
642
 
642
643
  ```bash
643
- bun run cli:bun -- skills payload --agent apply-agent --project vgxness --workflow sdd --phase apply --provider opencode
644
+ bun run cli:bun -- skills payload --project vgxness --workflow sdd --phase apply-progress --intent-signals git,tdd,review-size --provider opencode
644
645
  ```
645
646
 
646
647
  `skills payload` resolves the same active skills and returns payload v1 JSON: skill identity/version, source kind, available content or an unavailable reason, attachment reasons, and ordering metadata. Inline `content` is included directly. Local `path` sources are loaded read-only only when they resolve inside the current workspace root. URL sources are never fetched in v1 and return `url_fetch_disabled`. The command does **not** write `.opencode/`, `.claude/`, provider prompts, or external skill files.
@@ -648,7 +649,7 @@ bun run cli:bun -- skills payload --agent apply-agent --project vgxness --workfl
648
649
  `skills get` returns the current version, all versions, attachments, and usage records:
649
650
 
650
651
  ```bash
651
- bun run cli:bun -- skills get --project vgxness --name sdd-apply
652
+ bun run cli:bun -- skills get --project vgxness --name vgxness-sdd-apply
652
653
  bun run cli:bun -- skills list --project vgxness
653
654
  ```
654
655
 
@@ -676,7 +677,7 @@ Use `--file` when a definition has permissions, memory, workflows, skills, or ad
676
677
  "permissions": { "read": "allow", "edit": "ask", "shell": "ask" },
677
678
  "memory": { "scopes": ["project"] },
678
679
  "workflows": ["sdd"],
679
- "skills": ["sdd-apply"],
680
+ "skills": ["vgxness-sdd-apply"],
680
681
  "adapters": { "opencode": { "model": "openai/gpt-5.5" } }
681
682
  }
682
683
  ```
@@ -1,5 +1,7 @@
1
1
  # Auditoría de salud del proyecto VGXNESS v1.10.x
2
2
 
3
+ > Historical snapshot: this document records the v1.10.x health review and should not be treated as current status. See [Project health audit v1.14.x](./project-health-audit-v1.14.x.md) for the current system snapshot.
4
+
3
5
  ## Resumen ejecutivo
4
6
 
5
7
  VGXNESS v1.10.x está en un punto avanzado como **CLI/MCP control plane local-first** para SDD, memoria, runs, permisos, agentes, skills y setup de OpenCode. La base de producto es sólida: hay workflow SDD canónico, storage SQLite local, superficies read-only/advisory, provider doctor, agent manifest canónico y verificación Bun-first.
@@ -0,0 +1,79 @@
1
+ # Auditoría de salud del proyecto VGXNESS v1.14.x
2
+
3
+ ## Resumen ejecutivo
4
+
5
+ VGXNESS v1.14.x está avanzado como **CLI/MCP control plane local-first** para SDD, memoria, runs, permisos, agentes, skills y setup de OpenCode. La base de producto es sólida: el flujo SDD canónico existe como estado SQLite-backed, OpenCode es el provider primario, los drafts y la aceptación humana están separados, y la ruta oficial de verificación es Bun-first.
6
+
7
+ No debe tratarse como “versión final cerrada” hasta resolver la brecha de ejecución/recovery productiva. El sistema gobierna, audita, planea y guía mejor de lo que ejecuta efectos reales de forma autónoma: el executor real, `resume-after-approval`, materialización de sandbox/worktree y evidencia integrada en cockpit siguen siendo trabajo planificado.
8
+
9
+ Esta auditoría es una foto de release-readiness v1.14.x basada en inspección del repositorio, subauditorías internas y verificación local de release candidate. No publica artefactos ni sustituye la aprobación humana explícita de publicación.
10
+
11
+ ## Evidencia observada
12
+
13
+ | Área | Evidencia | Estado |
14
+ |---|---|---|
15
+ | Package | `package.json` declara `version: 1.14.1` y expone los binarios `vgxness`/`vgx` desde `dist/cli/bun-bin.js`. | Implementado |
16
+ | Release history | `CHANGELOG.md` contiene `v1.14.1 — 2026-06-17` para el cierre de release-readiness posterior al tag `v1.14.0`. | Implementado |
17
+ | Runtime/tooling | `package.json` codifica la ruta oficial `bun run verify`: typecheck, tests Node, tests Bun storage-backed, Bun SQLite y evidencia de paquete. | Implementado |
18
+ | Release candidate verification | La ruta completa `verify:typecheck`, `verify:test`, `verify:test:bun-storage`, `verify:bun-sqlite` y `package:bun:evidence -- --require-pass` pasó localmente; package evidence reportó `releaseReadiness.status: pass` y `publicationAttempted: false`. | Validado |
19
+ | CI | `.github/workflows/node22.yml` ahora ejecuta también `bun run verify:test:bun-storage`, alineando el gate principal con `package.json`. | Alineado |
20
+ | CLI/MCP | README y docs describen CLI para bootstrap/diagnóstico/recovery y MCP para trabajo diario dentro de OpenCode. | Implementado |
21
+ | SDD | Fases canónicas `explore → proposal → spec → design → tasks → apply-progress → verify → archive`; aceptación humana separada de presencia de artifact. | Implementado |
22
+ | Providers | OpenCode es primario; Claude es secundario/guarded; Antigravity/custom son placeholder/extensión. | Implementado con límites |
23
+ | Code runtime | El runtime experimental `vgxness code` y la superficie principal OpenTUI están removidos temporalmente. | Fuera de release |
24
+ | Docs | README, architecture, providers, roadmap y auditorías históricas apuntan a este snapshot v1.14.x como actual. | Alineado |
25
+
26
+ ## Estado por superficie
27
+
28
+ ### CLI y MCP
29
+
30
+ La CLI está madura para setup, status, recuperación, SDD, runs, permisos, agentes, skills, MCP y verificación. La superficie MCP es la ruta diaria recomendada para trabajar desde OpenCode con subagentes SDD ocultos. Los comandos preview/status/plan mantienen el contrato no mutante respecto a provider config; las escrituras de config requieren consentimiento explícito.
31
+
32
+ ### SDD governance
33
+
34
+ La fortaleza principal del producto es que SDD no depende solo de prompts: fases, artifacts, readiness, aceptación humana, runs y eventos viven como estado consultable. La aceptación humana sigue siendo un gate separado; guardar drafts no implica aceptación.
35
+
36
+ ### Release y paquete
37
+
38
+ El release gate debe ser Bun-first:
39
+
40
+ ```bash
41
+ bun run verify:typecheck
42
+ bun run verify:test
43
+ bun run verify:test:bun-storage
44
+ bun run verify:bun-sqlite
45
+ bun run package:bun:evidence -- --require-pass
46
+ ```
47
+
48
+ CI debe permanecer alineado con esa ruta. La publicación sigue siendo una operación separada, explícita y humana; esta auditoría no aprueba ni intenta publicación.
49
+
50
+ ### Ejecución y recovery
51
+
52
+ El mayor gap de producto sigue siendo operacional: `docs/roadmap.md` marca como pendiente el executor real, `resume-after-approval`, materialización sandbox/worktree y mejores resúmenes de evidencia de verificación. Hasta cerrar eso, VGXNESS es muy fuerte como control plane y guía de workflow, pero no como runtime autónomo final.
53
+
54
+ ## Riesgos principales
55
+
56
+ | Riesgo | Impacto | Recomendación |
57
+ |---|---|---|
58
+ | Release tag pendiente | Riesgo de publicar contenido sin tag/release note correspondiente. | Taggear/publicar solo después de revisar diff final y con aprobación humana explícita. |
59
+ | Execution/resume gap | El producto puede dejar al usuario en recuperación manual para runs complejos. | Priorizar executor real, checkpoints útiles y `resume-after-approval`. |
60
+ | Cockpit sin evidencia rica | “Por qué está bloqueado” puede requerir inspección adicional. | Integrar pass/fail/skipped, timestamp y evidencia por fase. |
61
+ | Provider wording drift | Usuarios pueden asumir paridad completa fuera de OpenCode. | Mantener OpenCode como primario y Claude/otros con límites explícitos. |
62
+ | TUI/code-runtime removidos | Puede haber expectativas viejas de `vgxness code`. | Mantener docs claras: la ruta diaria es OpenCode + MCP; CLI es fallback/diagnóstico. |
63
+
64
+ ## Próximo paso recomendado
65
+
66
+ Para cerrar un release candidate v1.14.x:
67
+
68
+ 1. Revisar el diff final y commit/tag de release si corresponde.
69
+ 2. Confirmar que CI reproduce la cadena oficial completa en la rama remota.
70
+ 3. No publicar hasta que la evidencia de paquete reporte `releaseReadiness.status: pass` y exista aprobación humana explícita.
71
+
72
+ Para avanzar hacia “versión final” de producto, abrir un cambio SDD separado para **final-product readiness hardening** con foco en executor/recovery/cockpit evidence.
73
+
74
+ ## Fuera de alcance de esta auditoría
75
+
76
+ - No se publicó ni se contactó un registry.
77
+ - No se mutó provider config.
78
+ - No se aceptó ningún artifact SDD.
79
+ - No se creó tag de release.
@@ -1,6 +1,6 @@
1
1
  # Auditoría de salud del proyecto VGXNESS v1.9.1
2
2
 
3
- > Historical snapshot: this document records validated v1.9.1 evidence and should not be treated as current v1.10.x status. See [Project health audit v1.10.x](./project-health-audit-v1.10.x.md) for the current system snapshot.
3
+ > Historical snapshot: this document records validated v1.9.1 evidence and should not be treated as current status. See [Project health audit v1.14.x](./project-health-audit-v1.14.x.md) for the current system snapshot.
4
4
 
5
5
  ## Resumen v1.9.1
6
6
 
package/docs/providers.md CHANGED
@@ -4,7 +4,7 @@ VGXNESS is provider-agnostic at the core: the registry stores provider-neutral d
4
4
 
5
5
  ## Status
6
6
 
7
- Current as of the v1.10.x documentation snapshot.
7
+ Current as of the v1.14.x documentation snapshot.
8
8
 
9
9
  | Provider | Control plane | Workspace runtime | Notes |
10
10
  |---|---|---|---|
package/docs/roadmap.md CHANGED
@@ -41,7 +41,7 @@ SQLite, scopes, migrations, and the run snapshot export are in.
41
41
 
42
42
  ## TUI
43
43
 
44
- The principal code surface is in via OpenTUI. The legacy interactive setup surfaces and dashboard directory are absent in the current tree.
44
+ The previous principal OpenTUI code surface is temporarily unavailable. The legacy interactive setup surfaces and dashboard directory are absent in the current tree; future TUI work should be rebuilt around the current MCP/CLI control-plane boundaries rather than the removed runtime.
45
45
 
46
46
  - **TUI dashboard screen.** Real-time view of active runs, pending approvals, and SDD blockers. Should match the cockpit surface from MCP.
47
47
  - **TUI runs screen.** Run list, drill into a run, see events/approvals/attempts, with read-only safe actions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vgxness",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "CLI and MCP control plane for guided AI-agent workflows, SDD, memory, and OpenCode setup.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {