@rryando/arcs 3.2.7 → 3.3.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 +33 -9
- 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 +252 -362
- package/dist/cli/arcs-orchestrate.js.map +1 -1
- package/opencode/arcs/manifest.json +37 -0
- package/opencode/arcs/prompts/arcs-docs.txt +32 -0
- package/opencode/arcs/prompts/arcs-orchestrate-caveman.txt +252 -362
- package/opencode/arcs/prompts/arcs-orchestrate.txt +252 -362
- package/opencode/arcs/prompts/code-reviewer.txt +20 -0
- package/opencode/arcs/prompts/docs-researcher.txt +20 -0
- package/opencode/arcs/prompts/graph-explorer.txt +316 -53
- package/opencode/arcs/prompts/oncall-ops.txt +23 -0
- package/opencode/arcs/prompts/qa-analyst.txt +22 -0
- package/opencode/arcs/prompts/software-engineer.txt +19 -13
- package/opencode/arcs/prompts/system-architect.txt +21 -0
- package/opencode/arcs/prompts/tech-architect.txt +21 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"arcs-orchestrate.js","sourceRoot":"","sources":["../../src/cli/arcs-orchestrate.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,uBAAuB,GAAG
|
|
1
|
+
{"version":3,"file":"arcs-orchestrate.js","sourceRoot":"","sources":["../../src/cli/arcs-orchestrate.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,uBAAuB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6CAiVM,CAAC"}
|
|
@@ -71,6 +71,15 @@
|
|
|
71
71
|
"value": "github-copilot/claude-sonnet-4.6",
|
|
72
72
|
"mode": "if-absent"
|
|
73
73
|
},
|
|
74
|
+
{
|
|
75
|
+
"path": [
|
|
76
|
+
"agent",
|
|
77
|
+
"build",
|
|
78
|
+
"temperature"
|
|
79
|
+
],
|
|
80
|
+
"value": 0,
|
|
81
|
+
"mode": "if-absent"
|
|
82
|
+
},
|
|
74
83
|
{
|
|
75
84
|
"path": [
|
|
76
85
|
"agent",
|
|
@@ -80,6 +89,15 @@
|
|
|
80
89
|
"value": "github-copilot/claude-opus-4.6",
|
|
81
90
|
"mode": "if-absent"
|
|
82
91
|
},
|
|
92
|
+
{
|
|
93
|
+
"path": [
|
|
94
|
+
"agent",
|
|
95
|
+
"plan",
|
|
96
|
+
"temperature"
|
|
97
|
+
],
|
|
98
|
+
"value": 0.5,
|
|
99
|
+
"mode": "if-absent"
|
|
100
|
+
},
|
|
83
101
|
{
|
|
84
102
|
"path": [
|
|
85
103
|
"agent",
|
|
@@ -89,6 +107,15 @@
|
|
|
89
107
|
"value": "github-copilot/claude-opus-4.6",
|
|
90
108
|
"mode": "if-absent"
|
|
91
109
|
},
|
|
110
|
+
{
|
|
111
|
+
"path": [
|
|
112
|
+
"agent",
|
|
113
|
+
"general",
|
|
114
|
+
"temperature"
|
|
115
|
+
],
|
|
116
|
+
"value": 0.3,
|
|
117
|
+
"mode": "if-absent"
|
|
118
|
+
},
|
|
92
119
|
{
|
|
93
120
|
"path": [
|
|
94
121
|
"agent",
|
|
@@ -98,6 +125,7 @@
|
|
|
98
125
|
"description": "DAG-first codebase and knowledge exploration specialist. Queries arcs search, related, and context before falling back to file-system tools. Replaces vanilla explore for ARCS projects.",
|
|
99
126
|
"mode": "subagent",
|
|
100
127
|
"model": "github-copilot/claude-haiku-4.5",
|
|
128
|
+
"temperature": 0,
|
|
101
129
|
"permission": {
|
|
102
130
|
"edit": "allow",
|
|
103
131
|
"bash": "allow",
|
|
@@ -118,6 +146,7 @@
|
|
|
118
146
|
"description": "Reviews code changes for production readiness and catches correctness, maintainability, and testing issues.",
|
|
119
147
|
"mode": "subagent",
|
|
120
148
|
"model": "github-copilot/claude-haiku-4.5",
|
|
149
|
+
"temperature": 0.5,
|
|
121
150
|
"prompt": "{file:./prompts/code-reviewer.txt}",
|
|
122
151
|
"permission": {
|
|
123
152
|
"edit": "allow",
|
|
@@ -138,6 +167,7 @@
|
|
|
138
167
|
"description": "Handles documentation writing, research synthesis, OCR-adjacent extraction, and document-heavy analysis tasks.",
|
|
139
168
|
"mode": "subagent",
|
|
140
169
|
"model": "github-copilot/claude-opus-4.6",
|
|
170
|
+
"temperature": 0.4,
|
|
141
171
|
"permission": {
|
|
142
172
|
"edit": "allow",
|
|
143
173
|
"bash": "allow",
|
|
@@ -158,6 +188,7 @@
|
|
|
158
188
|
"description": "Architecture and analysis specialist. Deep structural reasoning, refactor guidance, trade-off evaluation, and root cause analysis without making hasty edits.",
|
|
159
189
|
"mode": "subagent",
|
|
160
190
|
"model": "github-copilot/claude-haiku-4.5",
|
|
191
|
+
"temperature": 0.4,
|
|
161
192
|
"permission": {
|
|
162
193
|
"edit": "allow",
|
|
163
194
|
"bash": "allow",
|
|
@@ -178,6 +209,7 @@
|
|
|
178
209
|
"description": "Implementation specialist. Writes code, runs tests, ships features. Loads quick-dev, code-agent, test-driven-development, executing-plans, finishing-a-development-branch, and aesthetic skills as needed.",
|
|
179
210
|
"mode": "subagent",
|
|
180
211
|
"model": "github-copilot/claude-opus-4.6",
|
|
212
|
+
"temperature": 0,
|
|
181
213
|
"permission": {
|
|
182
214
|
"edit": "allow",
|
|
183
215
|
"bash": "allow",
|
|
@@ -198,6 +230,7 @@
|
|
|
198
230
|
"description": "ARCS documentation specialist. Manages plans, knowledge entries, diagrams, and DAG health. Knows ARCS structure intimately.",
|
|
199
231
|
"mode": "subagent",
|
|
200
232
|
"model": "github-copilot/claude-opus-4.6",
|
|
233
|
+
"temperature": 0.1,
|
|
201
234
|
"permission": {
|
|
202
235
|
"edit": "allow",
|
|
203
236
|
"bash": "allow",
|
|
@@ -218,6 +251,7 @@
|
|
|
218
251
|
"description": "Quality enforcement specialist. Proactive code audits, review dispatch, convention compliance.",
|
|
219
252
|
"mode": "subagent",
|
|
220
253
|
"model": "github-copilot/claude-haiku-4.5",
|
|
254
|
+
"temperature": 0.3,
|
|
221
255
|
"permission": {
|
|
222
256
|
"edit": "allow",
|
|
223
257
|
"bash": "allow",
|
|
@@ -238,6 +272,7 @@
|
|
|
238
272
|
"description": "Adversarial phase-gate agent. Checks work at phase boundaries using KISS/YAGNI/DRY principles. Runs tests, reads diffs, delivers pass/block verdicts. Cannot edit code.",
|
|
239
273
|
"mode": "subagent",
|
|
240
274
|
"model": "github-copilot/claude-sonnet-4.6",
|
|
275
|
+
"temperature": 0.7,
|
|
241
276
|
"permission": {
|
|
242
277
|
"edit": "allow",
|
|
243
278
|
"bash": "allow",
|
|
@@ -258,6 +293,7 @@
|
|
|
258
293
|
"description": "Debugging and diagnosis specialist. Finds root causes through systematic investigation, log triage, bisect, and performance profiling.",
|
|
259
294
|
"mode": "subagent",
|
|
260
295
|
"model": "github-copilot/claude-opus-4.6",
|
|
296
|
+
"temperature": 0.1,
|
|
261
297
|
"permission": {
|
|
262
298
|
"edit": "allow",
|
|
263
299
|
"bash": "allow",
|
|
@@ -278,6 +314,7 @@
|
|
|
278
314
|
"description": "Architecture and design specialist. Module boundaries, dependency graphs, migration strategies, and cross-project design decisions.",
|
|
279
315
|
"mode": "subagent",
|
|
280
316
|
"model": "github-copilot/claude-opus-4.6",
|
|
317
|
+
"temperature": 0.5,
|
|
281
318
|
"permission": {
|
|
282
319
|
"edit": "allow",
|
|
283
320
|
"bash": "allow",
|
|
@@ -122,3 +122,35 @@ When working with plans that have `.diagram.mmd` files:
|
|
|
122
122
|
5. **Scope changes:** For topology changes (task added/removed/dependency changed), report the change back to the orchestrator — the orchestrator regenerates via `arcs diagram sort-metadata <slug> <planId> --json`
|
|
123
123
|
6. **Ownership:** Only the orchestrator/coordinator writes to `.mmd` files. Implementation sub-agents NEVER edit diagrams.
|
|
124
124
|
7. **Fallback:** If node metadata is incomplete (missing `scope` or `acceptance`), read the plan body for that task's details
|
|
125
|
+
|
|
126
|
+
## Output Format
|
|
127
|
+
|
|
128
|
+
Your output is consumed by the orchestrator (an LLM), not a human. Be structured and terse.
|
|
129
|
+
|
|
130
|
+
For SYNC operations, return:
|
|
131
|
+
```
|
|
132
|
+
SYNC_REPORT:
|
|
133
|
+
staleness: <N days, M commits>
|
|
134
|
+
knowledge: <created:N updated:N>
|
|
135
|
+
tasks: <transitioned:N>
|
|
136
|
+
plans: <updated:N>
|
|
137
|
+
docs: <updated:N>
|
|
138
|
+
diagrams: <drifted:N repaired:N>
|
|
139
|
+
|
|
140
|
+
MUTATIONS:
|
|
141
|
+
- <arcs command executed and result>
|
|
142
|
+
|
|
143
|
+
GAPS: <none | issues needing orchestrator attention>
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
For other operations (knowledge curation, diagram work):
|
|
147
|
+
```
|
|
148
|
+
STATUS: <done | partial | blocked>
|
|
149
|
+
|
|
150
|
+
MUTATIONS:
|
|
151
|
+
- <arcs command executed and result>
|
|
152
|
+
|
|
153
|
+
FINDINGS: <none | issues discovered during work>
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
No prose narrative. No "I completed the sync..." — go straight to the structured report.
|