aiwg 2026.8.0 → 2026.8.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.
Files changed (98) hide show
  1. package/README.md +7 -2
  2. package/agentic/code/addons/auto-memory/manifest.json +1 -0
  3. package/agentic/code/addons/compound-memory/README.md +62 -0
  4. package/agentic/code/addons/compound-memory/commands/compound-memory.mjs +935 -0
  5. package/agentic/code/addons/compound-memory/docs/operator-guide.md +67 -0
  6. package/agentic/code/addons/compound-memory/docs/overview.md +91 -0
  7. package/agentic/code/addons/compound-memory/manifest.json +100 -0
  8. package/agentic/code/addons/compound-memory/schemas/compound-memory-config.schema.json +46 -0
  9. package/agentic/code/addons/compound-memory/skills/compound-memory/SKILL.md +69 -0
  10. package/agentic/code/addons/context-curator/manifest.json +1 -0
  11. package/agentic/code/addons/guided-implementation/manifest.json +1 -0
  12. package/agentic/code/addons/line-memory/README.md +12 -0
  13. package/agentic/code/addons/line-memory/commands/line-memory.mjs +642 -52
  14. package/agentic/code/addons/line-memory/docs/overview.md +38 -0
  15. package/agentic/code/addons/line-memory/manifest.json +18 -1
  16. package/agentic/code/addons/line-memory/skills/line-memory/SKILL.md +6 -0
  17. package/agentic/code/addons/rlm/docs/deployment-guide.md +28 -14
  18. package/agentic/code/addons/testing-quality/manifest.json +1 -0
  19. package/agentic/code/frameworks/ops-complete/docs/extensions-guide.md +3 -3
  20. package/bin/aiwg.mjs +14 -10
  21. package/dist/src/api/index.d.ts +1 -0
  22. package/dist/src/api/index.js +1 -0
  23. package/dist/src/artifacts/cli.js +2 -0
  24. package/dist/src/artifacts/types.js +4 -0
  25. package/dist/src/auth/client.js +209 -0
  26. package/dist/src/auth/config.js +38 -0
  27. package/dist/src/auth/credential-store.js +141 -0
  28. package/dist/src/auth/resource-credentials.js +25 -0
  29. package/dist/src/auth/types.js +2 -0
  30. package/dist/src/channel/manager.mjs +5 -5
  31. package/dist/src/cli/handlers/auth.js +125 -0
  32. package/dist/src/cli/handlers/help.js +1 -0
  33. package/dist/src/cli/handlers/index.js +3 -1
  34. package/dist/src/cli/handlers/install.js +42 -4
  35. package/dist/src/cli/handlers/marketplace.js +375 -122
  36. package/dist/src/cli/handlers/resource-versions.js +2 -0
  37. package/dist/src/cli/handlers/sessions.js +23 -5
  38. package/dist/src/cli/handlers/subcommands.js +10 -1
  39. package/dist/src/cli/handlers/use.js +342 -43
  40. package/dist/src/config/gitignore.js +1 -0
  41. package/dist/src/extensions/commands/definitions.js +19 -0
  42. package/dist/src/marketplace/exchange.js +602 -0
  43. package/dist/src/marketplace/provenance-types.js +19 -0
  44. package/dist/src/marketplace/provenance.js +834 -0
  45. package/dist/src/memory/canonical-context.js +342 -0
  46. package/dist/src/memory/context-pack.js +282 -0
  47. package/dist/src/memory/index.js +4 -0
  48. package/dist/src/memory/intake.js +118 -0
  49. package/dist/src/packages/adapters/git.js +79 -29
  50. package/dist/src/packages/package-discovery.js +81 -0
  51. package/dist/src/packages/package-registry.js +2 -0
  52. package/dist/src/packages/registry.js +119 -20
  53. package/dist/src/resources/resolver.js +1 -0
  54. package/dist/src/resources/web-release.d.ts +3 -1
  55. package/dist/src/resources/web-release.js +14 -6
  56. package/dist/src/serve/agentic-sandbox-fleet-client.js +213 -0
  57. package/dist/src/serve/fleet-mission-conductor.js +293 -0
  58. package/dist/src/sessions/index.js +1 -0
  59. package/dist/src/sessions/output-registration.js +338 -0
  60. package/dist/src/sessions/promotion.js +73 -2
  61. package/dist/src/sessions/repository.js +2 -1
  62. package/dist/src/update/notifier.mjs +13 -2
  63. package/docs/_manifest.json +25 -1
  64. package/docs/addons/aiwg-utils/security/supply-chain/external-npm/hono__node-server.md +7 -18
  65. package/docs/addons/compound-memory/operator-guide.md +67 -0
  66. package/docs/addons/compound-memory/overview.md +91 -0
  67. package/docs/addons/daemon/quickstart.md +1 -2
  68. package/docs/addons/line-memory/overview.md +38 -0
  69. package/docs/addons/rlm/deployment-guide.md +29 -15
  70. package/docs/agents/cli-reference.md +62 -7
  71. package/docs/architecture/adr-compound-memory-lifecycle.md +183 -0
  72. package/docs/contracts/fleet-workload.v1.md +101 -0
  73. package/docs/customization/standalone-plugin-repository.md +21 -0
  74. package/docs/docs-sources.json +10 -0
  75. package/docs/frameworks/ops-complete/extensions-guide.md +2 -2
  76. package/docs/install/web-backed-resources.md +16 -0
  77. package/docs/providers/git-native-marketplace.md +199 -0
  78. package/docs/providers/marketplace-consumer.md +5 -2
  79. package/docs/providers/marketplace.md +2 -0
  80. package/docs/providers/skills-paths.md +6 -0
  81. package/docs/quickstart.md +10 -1
  82. package/docs/releases/_manifest.json +2 -0
  83. package/docs/releases/v2026.8.1-announcement.md +90 -0
  84. package/docs/releases/v2026.8.2-announcement.md +83 -0
  85. package/docs/sessions/output-registration.md +34 -0
  86. package/docs/welcome.html +10 -1
  87. package/man/aiwg.1 +9 -0
  88. package/package.json +4 -2
  89. package/prebuilt/fortemi-core/framework/aiwg-fortemi-index-v2.json +1 -1
  90. package/prebuilt/fortemi-core/framework/manifest.json +2 -2
  91. package/schemas/marketplace/aiwg-marketplace-catalog.v1.schema.json +40 -0
  92. package/schemas/marketplace/aiwg-marketplace-envelope.v1.schema.json +158 -0
  93. package/schemas/marketplace/aiwg-marketplace-lock.v1.schema.json +45 -0
  94. package/schemas/marketplace/aiwg-marketplace-portable-bundle.v1.schema.json +31 -0
  95. package/schemas/marketplace/aiwg-marketplace-receipt.v1.schema.json +32 -0
  96. package/schemas/marketplace/aiwg-marketplace-trust.v1.schema.json +32 -0
  97. package/tools/_resolve-impl.mjs +1 -1
  98. package/tools/skills/deploy-skills-codex.mjs +55 -17
package/README.md CHANGED
@@ -527,7 +527,7 @@ The orchestration pattern: **Primary Author → Parallel Reviewers → Synthesiz
527
527
  - **334 artifact templates** — progressive disclosure templates for requirements, architecture, testing, security, deployment, and more
528
528
  - **8 platform support** — deploy to Claude Code, Copilot, Cursor, Warp, Factory AI, OpenCode, Codex, and Windsurf
529
529
  - **8 core frameworks + training marketplace package** — SDLC, Digital Forensics, Marketing Operations, Research Management, Media Curation, Ops Infrastructure, Knowledge Base, Security Engineering, plus [`aiwg-training`](https://github.com/jmagly/aiwg-training) for fine-tuning dataset curation (corpus-to-dataset pipeline with DPO/KTO/ORPO/SimPO export)
530
- - **27 addons** — semantic-memory kernel, llm-wiki (Obsidian-native knowledge base), RLM recursive decomposition, voice profiles, testing quality, mutation testing, UAT automation, and more
530
+ - **31 addons** — compound memory, line memory, llm-wiki (Obsidian-native knowledge base), RLM recursive decomposition, fleet operations, browser control, testing quality, and more
531
531
  - **Agent Loop** — iterative task execution with automatic error recovery and crash resilience (6-8 hour sessions)
532
532
  - **RLM addon** — recursive context decomposition for processing 10M+ tokens via sub-agent delegation
533
533
  - **YAML metalanguage** — declarative schema-validated workflow definitions (JSON Schema 2020-12)
@@ -658,7 +658,7 @@ If you ship a product that bundles AIWG and want to be listed here, open an issu
658
658
  | **[Ops Complete](agentic/code/frameworks/ops-complete/)** | 12 | 3 | Operational infrastructure — incident management, runbooks, troubleshooting workflows |
659
659
  | **[Security Engineering](agentic/code/frameworks/security-engineering/)** | 2 | 5 | Applied security beyond STRIDE/OWASP — cryptographic primitive selection, chain-of-trust integrity, authentication-factor architecture, degraded-mode design, runtime secret hygiene, supply-chain trust, physical-access threats. Pattern-based, product-agnostic |
660
660
 
661
- ### Addons (27)
661
+ ### Addons (31)
662
662
 
663
663
  | Addon | What It Does |
664
664
  |-------|--------------|
@@ -672,6 +672,8 @@ If you ship a product that bundles AIWG and want to be listed here, open an issu
672
672
  | **[Agentic Installer](agentic/code/addons/agentic-installer/)** | `setup.aiwg.io/v1` SetupManifest installer — cross-platform install workflows with recovery |
673
673
  | **[AIWG Dev](agentic/code/addons/aiwg-dev/)** | AIWG development tooling — extension scaffolding, local-source dev mode |
674
674
  | **[Daemon](agentic/code/addons/daemon/)** | Persistent daemon mode — background sessions, task queue, health monitoring |
675
+ | **[Compound Memory](agentic/code/addons/compound-memory/)** | Persistent context architecture combining immutable raw inputs, linked wiki knowledge, line-memory facts, generated outputs, and governed maintenance workflows |
676
+ | **[Line Memory](agentic/code/addons/line-memory/)** | Durable append-only facts with retrieval, reinforcement, decay, pruning, and concurrent process safety |
675
677
  | **[LLM Wiki](agentic/code/addons/llm-wiki/)** | Obsidian-native knowledge base for LLM agents — semantic linking, vault integration |
676
678
  | **[NLP Prod](agentic/code/addons/nlp-prod/)** | Production NLP pipelines — entity extraction, classification, summarization |
677
679
  | **[Prose Integration](agentic/code/addons/prose-integration/)** | OpenProse contract grammar integration — declarative service contracts |
@@ -687,6 +689,9 @@ If you ship a product that bundles AIWG and want to be listed here, open an issu
687
689
  | **[AIWG Hooks](agentic/code/addons/aiwg-hooks/)** | Lifecycle event handlers — pre-session, post-write, workflow tracing |
688
690
  | **[AIWG Utils](agentic/code/addons/aiwg-utils/)** | Core meta-utilities (auto-installed with any framework) |
689
691
  | **[Droid Bridge](agentic/code/addons/droid-bridge/)** | Factory Droid orchestration — multi-platform agent bridge |
692
+ | **[AIWG Fleet](agentic/code/addons/aiwg-fleet/)** | Governed multi-project maintenance with repository discovery, policy-aware planning, approval gates, and auditable execution |
693
+ | **[Browser Control](agentic/code/addons/browser-control/)** | Permission-aware browser automation for user-controlled sessions through Playwright MCP |
694
+ | **[Twelve-Factor](agentic/code/addons/twelve-factor/)** | Evidence-based application architecture review against Twelve-Factor and modern 12+ Factor criteria |
690
695
  | **[Star Prompt](agentic/code/addons/star-prompt/)** | Repository star prompt for success celebration |
691
696
 
692
697
  ---
@@ -1,4 +1,5 @@
1
1
  {
2
+ "id": "auto-memory",
2
3
  "name": "auto-memory",
3
4
  "version": "1.0.0",
4
5
  "description": "Automatic memory seed templates for AIWG projects",
@@ -0,0 +1,62 @@
1
+ # Compound Memory addon
2
+
3
+ Governed orchestration for persistent project memory across semantic-memory,
4
+ llm-wiki, line-memory, session candidates, and generated artifacts.
5
+
6
+ ```bash
7
+ aiwg use compound-memory --provider <provider>
8
+ aiwg compound-memory status
9
+ aiwg compound-memory ingest sources/decision.md --json
10
+ aiwg compound-memory context "task description" --budget 8000 --no-touch --json
11
+ aiwg compound-memory review --limit 50 --json
12
+ aiwg compound-memory update decision session.catalog "SQLite is authoritative" \
13
+ --source-ref session:<opaque-id> --reviewer <id> --reason "reviewed" --json
14
+ aiwg compound-memory maintain --json
15
+ aiwg compound-memory capture-output output/report.md \
16
+ --media-type text/markdown \
17
+ --context-pack-id context-pack:<opaque-id> \
18
+ --context-pack-digest sha256:<digest> \
19
+ --source-ref session:<opaque-id> \
20
+ --source-digest sha256:<digest> --json
21
+ ```
22
+
23
+ `capture-output` is a two-step operation. Its default mode is a mutation-free
24
+ preview. Re-run it with `--confirm --operation-id <preview-operation-id>` to
25
+ write the durable registration, derived index entry, and receipt. Registration
26
+ records exact minimized lineage but never promotes generated text into the wiki
27
+ or line memory; proposed knowledge must pass the independent review workflow.
28
+
29
+ `ingest` is also preview-first. Exact confirmation copies a project-local
30
+ regular file into the wiki's immutable, digest-addressed raw area and writes an
31
+ idempotent provenance receipt without changing the source. Transcript formats
32
+ route to sessions; other supported documents/media route to llm-wiki through
33
+ the existing `memory-ingest` workflow. Raw registration never promotes claims.
34
+
35
+ `review` reads a bounded queue of pending candidates plus contradiction, stale
36
+ fact, orphan page, unlinked output, and canonical-context review signals without
37
+ returning evidence bodies or raw assertions. `maintain` also starts in preview mode and binds its
38
+ operation ID to the current line-memory, wiki, output-outbox, and review state.
39
+ Confirming the exact preview replays idempotent output registrations and writes
40
+ a restart-safe receipt. Wiki refresh, line-memory repair, and candidate choices
41
+ remain delegated actions so their own review and authority checks stay intact.
42
+
43
+ `context` combines relevant line facts with linked wiki pages under hard total,
44
+ tier, and citation character budgets. It prefers a materialized Fortemi Core
45
+ project graph and degrades to a bounded lexical wiki scan. Every selected item
46
+ is marked as quoted data and carries a locator, digest, backend, lifecycle
47
+ state, freshness, and verification status. Normal use touches only selected
48
+ line facts; `--no-touch` is a mutation-free inspection.
49
+
50
+ `update` writes only the provider-neutral canonical context contract under
51
+ `.aiwg/context/compound-memory/`. Its default is a readable/JSON preview with
52
+ the exact diff and conflicts. Confirmation requires the preview operation ID.
53
+ Every accepted change emits a receipt and retains provenance, review metadata,
54
+ supersession, and revocation history. `--export` produces a portable bundle;
55
+ `--import <file>` requires matching workspace identity unless
56
+ `--allow-cross-workspace` is explicitly supplied. Provider adapters are never
57
+ generated or modified by this command.
58
+
59
+ See [docs/overview.md](docs/overview.md),
60
+ [docs/operator-guide.md](docs/operator-guide.md), and the `compound-memory` driver skill.
61
+ The addon adds orchestration only; disabling it leaves the underlying wiki and
62
+ line-memory data independently usable.