@rryando/arcs 3.2.3 → 3.2.5
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 +17 -4
- package/dist/cli/arcs-orchestrate.d.ts +1 -1
- package/dist/cli/arcs-orchestrate.d.ts.map +1 -1
- package/dist/cli/arcs-orchestrate.js +11 -0
- package/dist/cli/arcs-orchestrate.js.map +1 -1
- package/dist/cli/bundle-installer.d.ts +7 -1
- package/dist/cli/bundle-installer.d.ts.map +1 -1
- package/dist/cli/bundle-installer.js +49 -2
- package/dist/cli/bundle-installer.js.map +1 -1
- package/dist/cli/commands/batch.js +7 -2
- package/dist/cli/commands/batch.js.map +1 -1
- package/dist/cli/commands/diagram.js +2 -1
- package/dist/cli/commands/diagram.js.map +1 -1
- package/dist/cli/commands/project-updates.js +8 -3
- package/dist/cli/commands/project-updates.js.map +1 -1
- package/dist/cli/config.js +2 -2
- package/dist/cli/config.js.map +1 -1
- package/dist/cli/instructions.d.ts.map +1 -1
- package/dist/cli/instructions.js +12 -9
- package/dist/cli/instructions.js.map +1 -1
- package/dist/cli/setup.d.ts.map +1 -1
- package/dist/cli/setup.js +18 -1
- package/dist/cli/setup.js.map +1 -1
- package/dist/utils/json-schemas.d.ts +7 -7
- package/dist/utils/json-schemas.js +1 -1
- package/dist/utils/json-schemas.js.map +1 -1
- package/dist/utils/json.d.ts +8 -2
- package/dist/utils/json.d.ts.map +1 -1
- package/dist/utils/json.js +49 -4
- package/dist/utils/json.js.map +1 -1
- package/opencode/arcs/manifest.json +25 -12
- package/opencode/arcs/prompts/arcs-orchestrate-caveman.txt +11 -0
- package/opencode/arcs/prompts/arcs-orchestrate.txt +11 -0
- package/opencode/arcs/skills/writing-plans/SKILL.md +1 -1
- package/package.json +3 -2
- package/skills/orchestrate.md +1 -1
|
@@ -138,12 +138,23 @@ Discovery: `arcs --commands --json` (cache once per session). Batch op names are
|
|
|
138
138
|
| Validate | `arcs validate <slug> --json` |
|
|
139
139
|
| Task transition | `arcs task transition <slug> <taskId> <status> --planId=<id> --diagramNodeId=<node> --json` |
|
|
140
140
|
| Batch writes | `arcs batch --file=ops.json --json` |
|
|
141
|
+
| Update doc (inline) | `arcs project update-doc <slug> <doc> --content="..." --json` |
|
|
141
142
|
| Create task | `arcs task create <slug> <title> --priority=medium --planId=<id> --dependsOn=id1,id2 --json` |
|
|
142
143
|
| Create knowledge | `arcs knowledge create <slug> <title> --kind=<kind> --summary="..." --body="..." --source-files="src/foo.ts:anchor" --json` |
|
|
143
144
|
| Create plan | `arcs plan create <slug> <title> --summary="..." --status=planned --json` |
|
|
144
145
|
| Update plan meta | `arcs plan update-meta <slug> <planId> [--status=proposed\|planned\|in_progress\|done\|archived] --json` |
|
|
145
146
|
| Role-targeted context | `arcs context <slug> --audience=<role> --lean --json` |
|
|
146
147
|
|
|
148
|
+
**Batch op format** (flat structure — fields at top level, NOT nested under `params`):
|
|
149
|
+
```json
|
|
150
|
+
{"op":"task-create", "slug":"<slug>","title":"...","priority":"medium","planId":"..."}
|
|
151
|
+
{"op":"task-transition", "slug":"<slug>","taskId":"...","status":"done"}
|
|
152
|
+
{"op":"knowledge-create","slug":"<slug>","title":"...","kind":"lesson","summary":"...","body":"..."}
|
|
153
|
+
{"op":"doc-update", "slug":"<slug>","doc":"overview","content":"..."}
|
|
154
|
+
{"op":"plan-create", "slug":"<slug>","title":"...","summary":"...","status":"planned"}
|
|
155
|
+
```
|
|
156
|
+
Valid ops: `task-create`, `task-transition`, `task-update`, `task-delete`, `knowledge-create`, `knowledge-update-meta`, `knowledge-update-body`, `knowledge-delete`, `plan-create`, `plan-update-meta`, `plan-delete`, `doc-update`
|
|
157
|
+
|
|
147
158
|
## Master Routing
|
|
148
159
|
|
|
149
160
|
```mermaid
|
|
@@ -46,12 +46,23 @@ Discovery: `arcs --commands --json` (cache once per session). Batch op names are
|
|
|
46
46
|
| Validate | `arcs validate <slug> --json` |
|
|
47
47
|
| Task transition | `arcs task transition <slug> <taskId> <status> --planId=<id> --diagramNodeId=<node> --json` |
|
|
48
48
|
| Batch writes | `arcs batch --file=ops.json --json` |
|
|
49
|
+
| Update doc (inline) | `arcs project update-doc <slug> <doc> --content="..." --json` |
|
|
49
50
|
| Create task | `arcs task create <slug> <title> --priority=medium --planId=<id> --dependsOn=id1,id2 --json` |
|
|
50
51
|
| Create knowledge | `arcs knowledge create <slug> <title> --kind=<kind> --summary="..." --body="..." --source-files="src/foo.ts:anchor" --json` |
|
|
51
52
|
| Create plan | `arcs plan create <slug> <title> --summary="..." --status=planned --json` |
|
|
52
53
|
| Update plan meta | `arcs plan update-meta <slug> <planId> [--status=proposed\|planned\|in_progress\|done\|archived] --json` |
|
|
53
54
|
| Role-targeted context | `arcs context <slug> --audience=<role> --lean --json` |
|
|
54
55
|
|
|
56
|
+
**Batch op format** (flat structure — fields at top level, NOT nested under `params`):
|
|
57
|
+
```json
|
|
58
|
+
{"op":"task-create", "slug":"<slug>","title":"...","priority":"medium","planId":"..."}
|
|
59
|
+
{"op":"task-transition", "slug":"<slug>","taskId":"...","status":"done"}
|
|
60
|
+
{"op":"knowledge-create","slug":"<slug>","title":"...","kind":"lesson","summary":"...","body":"..."}
|
|
61
|
+
{"op":"doc-update", "slug":"<slug>","doc":"overview","content":"..."}
|
|
62
|
+
{"op":"plan-create", "slug":"<slug>","title":"...","summary":"...","status":"planned"}
|
|
63
|
+
```
|
|
64
|
+
Valid ops: `task-create`, `task-transition`, `task-update`, `task-delete`, `knowledge-create`, `knowledge-update-meta`, `knowledge-update-body`, `knowledge-delete`, `plan-create`, `plan-update-meta`, `plan-delete`, `doc-update`
|
|
65
|
+
|
|
55
66
|
## Master Routing
|
|
56
67
|
|
|
57
68
|
```mermaid
|
|
@@ -163,7 +163,7 @@ arcs plan create <slug> --title="YYYY-MM-DD <feature> Implementation Plan" --sum
|
|
|
163
163
|
|
|
164
164
|
## Execution Handoff
|
|
165
165
|
|
|
166
|
-
> "Plan complete and saved
|
|
166
|
+
> "Plan complete and saved via `arcs plan get <slug> <planId>` in project `<slug>`. Ready to execute?"
|
|
167
167
|
|
|
168
168
|
- **Subagents available** → REQUIRED: use `arcs:subagent-driven-development`
|
|
169
169
|
- **No subagents** → use `arcs:executing-plans`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rryando/arcs",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.5",
|
|
4
4
|
"description": "ARCS — DAG-based task orchestration for AI agents. Persistent workflow continuity via graph-structured context.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"@types/node": "^22.15.3",
|
|
57
57
|
"typescript": "^5.8.3",
|
|
58
58
|
"vite": "^6.4.1",
|
|
59
|
-
"vitest": "^3.2.4"
|
|
59
|
+
"vitest": "^3.2.4",
|
|
60
|
+
"@types/bun": "latest"
|
|
60
61
|
}
|
|
61
62
|
}
|
package/skills/orchestrate.md
CHANGED
|
@@ -80,7 +80,7 @@ Discovery: `arcs --commands --json`
|
|
|
80
80
|
|
|
81
81
|
## Loop Tools
|
|
82
82
|
|
|
83
|
-
- `arcs loop start <slug> --prompt="..." --max-iterations=50 --json` — self-referential dev loop
|
|
83
|
+
- `arcs loop start <slug> --prompt="..." --session="<session-id>" --max-iterations=50 --json` — self-referential dev loop (--session is required; use a unique stable ID per agent session, e.g. a UUID or timestamp string)
|
|
84
84
|
- `arcs loop cancel <slug> --json` — cancel active loop
|
|
85
85
|
- `arcs loop status <slug> --json` — inspect loop state
|
|
86
86
|
|