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.
- package/README.md +7 -2
- package/agentic/code/addons/auto-memory/manifest.json +1 -0
- package/agentic/code/addons/compound-memory/README.md +62 -0
- package/agentic/code/addons/compound-memory/commands/compound-memory.mjs +935 -0
- package/agentic/code/addons/compound-memory/docs/operator-guide.md +67 -0
- package/agentic/code/addons/compound-memory/docs/overview.md +91 -0
- package/agentic/code/addons/compound-memory/manifest.json +100 -0
- package/agentic/code/addons/compound-memory/schemas/compound-memory-config.schema.json +46 -0
- package/agentic/code/addons/compound-memory/skills/compound-memory/SKILL.md +69 -0
- package/agentic/code/addons/context-curator/manifest.json +1 -0
- package/agentic/code/addons/guided-implementation/manifest.json +1 -0
- package/agentic/code/addons/line-memory/README.md +12 -0
- package/agentic/code/addons/line-memory/commands/line-memory.mjs +642 -52
- package/agentic/code/addons/line-memory/docs/overview.md +38 -0
- package/agentic/code/addons/line-memory/manifest.json +18 -1
- package/agentic/code/addons/line-memory/skills/line-memory/SKILL.md +6 -0
- package/agentic/code/addons/rlm/docs/deployment-guide.md +28 -14
- package/agentic/code/addons/testing-quality/manifest.json +1 -0
- package/agentic/code/frameworks/ops-complete/docs/extensions-guide.md +3 -3
- package/bin/aiwg.mjs +14 -10
- package/dist/src/api/index.d.ts +1 -0
- package/dist/src/api/index.js +1 -0
- package/dist/src/artifacts/cli.js +2 -0
- package/dist/src/artifacts/types.js +4 -0
- package/dist/src/auth/client.js +209 -0
- package/dist/src/auth/config.js +38 -0
- package/dist/src/auth/credential-store.js +141 -0
- package/dist/src/auth/resource-credentials.js +25 -0
- package/dist/src/auth/types.js +2 -0
- package/dist/src/channel/manager.mjs +5 -5
- package/dist/src/cli/handlers/auth.js +125 -0
- package/dist/src/cli/handlers/help.js +1 -0
- package/dist/src/cli/handlers/index.js +3 -1
- package/dist/src/cli/handlers/install.js +42 -4
- package/dist/src/cli/handlers/marketplace.js +375 -122
- package/dist/src/cli/handlers/resource-versions.js +2 -0
- package/dist/src/cli/handlers/sessions.js +23 -5
- package/dist/src/cli/handlers/subcommands.js +10 -1
- package/dist/src/cli/handlers/use.js +342 -43
- package/dist/src/config/gitignore.js +1 -0
- package/dist/src/extensions/commands/definitions.js +19 -0
- package/dist/src/marketplace/exchange.js +602 -0
- package/dist/src/marketplace/provenance-types.js +19 -0
- package/dist/src/marketplace/provenance.js +834 -0
- package/dist/src/memory/canonical-context.js +342 -0
- package/dist/src/memory/context-pack.js +282 -0
- package/dist/src/memory/index.js +4 -0
- package/dist/src/memory/intake.js +118 -0
- package/dist/src/packages/adapters/git.js +79 -29
- package/dist/src/packages/package-discovery.js +81 -0
- package/dist/src/packages/package-registry.js +2 -0
- package/dist/src/packages/registry.js +119 -20
- package/dist/src/resources/resolver.js +1 -0
- package/dist/src/resources/web-release.d.ts +3 -1
- package/dist/src/resources/web-release.js +14 -6
- package/dist/src/serve/agentic-sandbox-fleet-client.js +213 -0
- package/dist/src/serve/fleet-mission-conductor.js +293 -0
- package/dist/src/sessions/index.js +1 -0
- package/dist/src/sessions/output-registration.js +338 -0
- package/dist/src/sessions/promotion.js +73 -2
- package/dist/src/sessions/repository.js +2 -1
- package/dist/src/update/notifier.mjs +13 -2
- package/docs/_manifest.json +25 -1
- package/docs/addons/aiwg-utils/security/supply-chain/external-npm/hono__node-server.md +7 -18
- package/docs/addons/compound-memory/operator-guide.md +67 -0
- package/docs/addons/compound-memory/overview.md +91 -0
- package/docs/addons/daemon/quickstart.md +1 -2
- package/docs/addons/line-memory/overview.md +38 -0
- package/docs/addons/rlm/deployment-guide.md +29 -15
- package/docs/agents/cli-reference.md +62 -7
- package/docs/architecture/adr-compound-memory-lifecycle.md +183 -0
- package/docs/contracts/fleet-workload.v1.md +101 -0
- package/docs/customization/standalone-plugin-repository.md +21 -0
- package/docs/docs-sources.json +10 -0
- package/docs/frameworks/ops-complete/extensions-guide.md +2 -2
- package/docs/install/web-backed-resources.md +16 -0
- package/docs/providers/git-native-marketplace.md +199 -0
- package/docs/providers/marketplace-consumer.md +5 -2
- package/docs/providers/marketplace.md +2 -0
- package/docs/providers/skills-paths.md +6 -0
- package/docs/quickstart.md +10 -1
- package/docs/releases/_manifest.json +2 -0
- package/docs/releases/v2026.8.1-announcement.md +90 -0
- package/docs/releases/v2026.8.2-announcement.md +83 -0
- package/docs/sessions/output-registration.md +34 -0
- package/docs/welcome.html +10 -1
- package/man/aiwg.1 +9 -0
- package/package.json +4 -2
- package/prebuilt/fortemi-core/framework/aiwg-fortemi-index-v2.json +1 -1
- package/prebuilt/fortemi-core/framework/manifest.json +2 -2
- package/schemas/marketplace/aiwg-marketplace-catalog.v1.schema.json +40 -0
- package/schemas/marketplace/aiwg-marketplace-envelope.v1.schema.json +158 -0
- package/schemas/marketplace/aiwg-marketplace-lock.v1.schema.json +45 -0
- package/schemas/marketplace/aiwg-marketplace-portable-bundle.v1.schema.json +31 -0
- package/schemas/marketplace/aiwg-marketplace-receipt.v1.schema.json +32 -0
- package/schemas/marketplace/aiwg-marketplace-trust.v1.schema.json +32 -0
- package/tools/_resolve-impl.mjs +1 -1
- 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
|
-
- **
|
|
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 (
|
|
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
|
---
|
|
@@ -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.
|