agent-context-store 0.2.12-beta.0 → 0.2.12-beta.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.
Files changed (2) hide show
  1. package/README.md +7 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -207,7 +207,8 @@ The store root is `.acs/` in **in-repo** mode and `<store-root>/` in **dedicated
207
207
  index.json
208
208
  audit/
209
209
  artifacts/
210
- <artifact-type>/
210
+ <task-id>/
211
+ <artifact-type>/
211
212
  handoffs/
212
213
  summaries/
213
214
  packages/
@@ -219,12 +220,14 @@ The store root is `.acs/` in **in-repo** mode and `<store-root>/` in **dedicated
219
220
  docs/
220
221
  ```
221
222
 
222
- - `artifacts/`: durable SDLC artifacts such as requirements, designs, ADRs, API notes, and test plans.
223
+ - `artifacts/`: durable SDLC artifacts grouped by task, for example `artifacts/DEMO-0001/srs/SRS-DEMO-0001.md` and `artifacts/DEMO-0001/acceptance-criteria/AC-DEMO-0001.md`.
223
224
  - `handoffs/`: explicit role-to-role handoff records.
224
225
  - `packages/`: role-specific context bundles for the next agent.
225
226
  - `index.json`: generated artifact and handoff index.
226
227
  - `audit/`: local audit log for CLI-created changes.
227
228
 
229
+ Artifact storage is task-first in this version. Older type-first artifact paths are not part of the supported layout.
230
+
228
231
  ## Commands
229
232
 
230
233
  | Command | What it does |
@@ -303,7 +306,7 @@ Skill files are always replaced with the bundled version. If `AGENTS.md` or `CLA
303
306
  | **Mesh topology, no central orchestrator** | Microsoft: agents are connected directly; each decides when to hand off. [[#2]](#references) | No orchestrator process — each role agent independently decides when its artifacts are complete and issues a handoff. The store is the shared substrate. |
304
307
  | **Dynamic routing rules** | Microsoft `HandoffBuilder.add_handoff(...)` / `WithHandoffs(...)` declares which agents may route to which. [[#2]](#references) | `workflows/` and `roles/` in the store define the legal BA→SA→Dev→QA edges; `acs validate` rejects out-of-policy handoffs. |
305
308
  | **Capability discovery (Agent Cards)** | A2A: agents advertise abilities via JSON Agent Cards so peers know what they can do. [[#3]](#references) | `acs roles` and `acs role explain <ROLE>` expose each role's inputs, outputs, and allowed artifact types — the role profile is the Agent Card. |
306
- | **Tasks & artifacts as the unit of exchange** | A2A: communication centers on tasks with lifecycles; artifacts are the task outputs. [[#4]](#references) | Every `acs` operation is keyed by `--task <TASK_ID>`; `artifacts/` holds the schema-validated outputs of each role's task phase. |
309
+ | **Tasks & artifacts as the unit of exchange** | A2A: communication centers on tasks with lifecycles; artifacts are the task outputs. [[#4]](#references) | Every `acs` operation is keyed by `--task <TASK_ID>`; `artifacts/<TASK_ID>/` holds the schema-validated outputs of each role's task phase. |
307
310
  | **Durable, resumable workflows** | Microsoft `checkpoint_storage` / `FileCheckpointStorage` lets workflows pause and resume hours or days later. [[#2]](#references) | The Git-tracked store *is* the checkpoint. Any agent on any machine can `git pull` and resume from the last validated handoff. |
308
311
  | **Runtime-agnostic interoperability** | A2A: opaque agents on different frameworks collaborate without sharing memory or internal state. [[#4]](#references) | Cursor, Claude Code, Codex, and CI agents collaborate purely through validated artifacts and handoff records — no shared runtime, no shared memory. |
309
312
  | **Auditable handoff history** | A2A emphasizes observability and auditability for enterprise use. [[#4]](#references) | `audit/`, `index.json`, `acs handoff list`, and Git history give a complete, reviewable trail of every handoff. |
@@ -319,4 +322,4 @@ In short: industry handoff frameworks model handoffs as in-process tool calls be
319
322
 
320
323
  ## Developing This Repository
321
324
 
322
- If you want to modify or test the toolkit itself, see [DEVELOPMENT.md](DEVELOPMENT.md).
325
+ If you want to modify or test the toolkit itself, see [DEVELOPMENT.md](/docs/DEVELOPMENT.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-context-store",
3
- "version": "0.2.12-beta.0",
3
+ "version": "0.2.12-beta.1",
4
4
  "description": "acs CLI for Agent Context Store Toolkit.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "dependencies": {
48
48
  "@inquirer/prompts": "^8.4.2",
49
- "agent-context-store-core": "0.2.12-beta.0"
49
+ "agent-context-store-core": "0.2.12-beta.1"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsc -p tsconfig.json"