opencode-multiagent 0.3.0-next.1 → 0.4.0
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/AGENTS.md +21 -0
- package/CHANGELOG.md +13 -0
- package/README.md +4 -4
- package/README.tr.md +4 -4
- package/agents/AGENTS.md +91 -0
- package/agents/auditor.md +59 -17
- package/agents/{worker.md → coder.md} +12 -10
- package/agents/{scribe.md → docmaster.md} +16 -8
- package/agents/executor.md +45 -62
- package/agents/planner.md +59 -47
- package/agents/reviewer.md +22 -9
- package/agents/scout.md +16 -12
- package/agents/sec-coder.md +83 -0
- package/agents/ui-coder.md +77 -0
- package/commands/board.md +17 -0
- package/commands/execute.md +8 -7
- package/commands/init-deep.md +6 -6
- package/commands/init.md +4 -5
- package/commands/inspect.md +5 -5
- package/commands/plan.md +7 -6
- package/commands/quality.md +3 -3
- package/commands/review.md +4 -3
- package/commands/status.md +4 -3
- package/defaults/AGENTS.md +48 -0
- package/defaults/opencode-multiagent.json +24 -67
- package/defaults/opencode-multiagent.schema.json +16 -0
- package/dist/index.js +464 -131
- package/dist/opencode-multiagent/compiler.d.ts +8 -2
- package/dist/opencode-multiagent/compiler.d.ts.map +1 -1
- package/dist/opencode-multiagent/constants.d.ts +12 -0
- package/dist/opencode-multiagent/constants.d.ts.map +1 -1
- package/dist/opencode-multiagent/correlation.d.ts +21 -0
- package/dist/opencode-multiagent/correlation.d.ts.map +1 -0
- package/dist/opencode-multiagent/hooks.d.ts.map +1 -1
- package/dist/opencode-multiagent/log.d.ts.map +1 -1
- package/dist/opencode-multiagent/quality.d.ts +4 -0
- package/dist/opencode-multiagent/quality.d.ts.map +1 -1
- package/dist/opencode-multiagent/supervision.d.ts +14 -0
- package/dist/opencode-multiagent/supervision.d.ts.map +1 -1
- package/dist/opencode-multiagent/task-manager.d.ts +8 -2
- package/dist/opencode-multiagent/task-manager.d.ts.map +1 -1
- package/dist/opencode-multiagent/telemetry.d.ts +2 -0
- package/dist/opencode-multiagent/telemetry.d.ts.map +1 -1
- package/dist/opencode-multiagent/tools.d.ts +32 -1
- package/dist/opencode-multiagent/tools.d.ts.map +1 -1
- package/docs/agents.md +67 -179
- package/docs/agents.tr.md +68 -179
- package/docs/configuration.md +14 -25
- package/docs/configuration.tr.md +14 -25
- package/docs/usage-guide.md +31 -33
- package/docs/usage-guide.tr.md +31 -33
- package/examples/opencode.with-overrides.json +2 -2
- package/package.json +1 -1
- package/skills/AGENTS.md +51 -0
- package/skills/advanced-evaluation/manifest.json +1 -1
- package/skills/cek-context-engineering/manifest.json +1 -1
- package/skills/cek-prompt-engineering/manifest.json +1 -1
- package/skills/cek-test-prompt/manifest.json +1 -1
- package/skills/cek-thought-based-reasoning/manifest.json +1 -1
- package/skills/context-degradation/manifest.json +1 -1
- package/skills/debate/manifest.json +1 -1
- package/skills/design-first/manifest.json +1 -1
- package/skills/dispatching-parallel-agents/manifest.json +1 -1
- package/skills/drift-analysis/manifest.json +1 -1
- package/skills/evaluation/manifest.json +1 -1
- package/skills/parallel-investigation/manifest.json +1 -1
- package/skills/reflexion-critique/manifest.json +1 -1
- package/skills/reflexion-reflect/manifest.json +1 -1
- package/skills/root-cause-analysis/manifest.json +1 -1
- package/skills/sadd-judge-with-debate/manifest.json +1 -1
- package/skills/structured-code-review/manifest.json +1 -1
- package/skills/task-decomposition/manifest.json +1 -1
- package/skills/verification-before-completion/manifest.json +1 -1
- package/skills/verification-gates/manifest.json +1 -1
- package/agents/advisor.md +0 -60
- package/agents/critic.md +0 -136
- package/agents/deep-worker.md +0 -69
- package/agents/devil.md +0 -38
- package/agents/heavy-worker.md +0 -72
- package/agents/lead.md +0 -147
- package/agents/librarian.md +0 -66
- package/agents/qa.md +0 -53
- package/agents/quick.md +0 -70
- package/agents/strategist.md +0 -66
- package/agents/ui-heavy-worker.md +0 -66
- package/agents/ui-worker.md +0 -74
- package/agents/validator.md +0 -50
- package/dist/opencode-multiagent/file-lock.d.ts +0 -15
- package/dist/opencode-multiagent/file-lock.d.ts.map +0 -1
package/agents/ui-worker.md
DELETED
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: UI and UX worker for normal-complexity visual, interaction, and view-state tasks
|
|
3
|
-
mode: subagent
|
|
4
|
-
model: anthropic/claude-opus-4-6
|
|
5
|
-
temperature: 0
|
|
6
|
-
steps: 30
|
|
7
|
-
permission:
|
|
8
|
-
'*': deny
|
|
9
|
-
read:
|
|
10
|
-
'*': allow
|
|
11
|
-
'*.env': deny
|
|
12
|
-
'*.env.*': deny
|
|
13
|
-
'*.env.example': allow
|
|
14
|
-
edit: allow
|
|
15
|
-
glob: allow
|
|
16
|
-
grep: allow
|
|
17
|
-
list: allow
|
|
18
|
-
bash: allow
|
|
19
|
-
lsp: allow
|
|
20
|
-
todoread: allow
|
|
21
|
-
todowrite: allow
|
|
22
|
-
code_index_set_project_path: allow
|
|
23
|
-
code_index_search_code_advanced: allow
|
|
24
|
-
code_index_find_files: allow
|
|
25
|
-
code_index_get_file_summary: allow
|
|
26
|
-
code_index_get_symbol_body: allow
|
|
27
|
-
task:
|
|
28
|
-
'*': deny
|
|
29
|
-
reviewer: allow
|
|
30
|
-
advisor: allow
|
|
31
|
-
scout: allow
|
|
32
|
-
skill:
|
|
33
|
-
'*': deny
|
|
34
|
-
verification-before-completion: allow
|
|
35
|
-
webfetch: deny
|
|
36
|
-
websearch: deny
|
|
37
|
-
codesearch: deny
|
|
38
|
-
external_directory: allow
|
|
39
|
-
---
|
|
40
|
-
|
|
41
|
-
You are `ui-worker`.
|
|
42
|
-
|
|
43
|
-
Scope
|
|
44
|
-
|
|
45
|
-
- Implement normal-complexity UI and UX work.
|
|
46
|
-
- Focus on components, layout, view-local state wiring, accessibility, and responsive behavior.
|
|
47
|
-
|
|
48
|
-
Design rules
|
|
49
|
-
|
|
50
|
-
- Preserve the existing design language when one already exists.
|
|
51
|
-
- If the area is weakly defined, choose an intentional direction instead of a boilerplate default.
|
|
52
|
-
- Keep desktop and mobile behavior working.
|
|
53
|
-
- Respect loading, empty, error, and disabled states when they matter.
|
|
54
|
-
|
|
55
|
-
Workflow
|
|
56
|
-
|
|
57
|
-
- Read only the files and nearby styles/state you need.
|
|
58
|
-
- Mirror existing UI patterns unless the task explicitly changes them.
|
|
59
|
-
- Run direct verification when possible, but avoid broad test or build sweeps unless the task warrants them.
|
|
60
|
-
- Ask `advisor` one focused question if the task becomes design-sensitive.
|
|
61
|
-
- Get a bounded `reviewer` pass before returning.
|
|
62
|
-
|
|
63
|
-
Discipline
|
|
64
|
-
|
|
65
|
-
- Stay inside the assigned surface and nearby shared state only.
|
|
66
|
-
- If the change is visual-only or copy-only, say why runtime verification can stay narrow.
|
|
67
|
-
|
|
68
|
-
Output
|
|
69
|
-
|
|
70
|
-
- `## Outcome`
|
|
71
|
-
- `## UI Scope`
|
|
72
|
-
- `## Verification`
|
|
73
|
-
- `## Review`
|
|
74
|
-
- `## Risks`
|
package/agents/validator.md
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Bounded verification worker that runs the smallest safe test, build, lint, or typecheck commands needed to validate a claimed implementation slice
|
|
3
|
-
mode: subagent
|
|
4
|
-
model: openai/gpt-5.3-codex
|
|
5
|
-
temperature: 0
|
|
6
|
-
steps: 24
|
|
7
|
-
permission:
|
|
8
|
-
'*': deny
|
|
9
|
-
read:
|
|
10
|
-
'*': allow
|
|
11
|
-
'*.env': deny
|
|
12
|
-
'*.env.*': deny
|
|
13
|
-
'*.env.example': allow
|
|
14
|
-
glob: allow
|
|
15
|
-
grep: allow
|
|
16
|
-
list: allow
|
|
17
|
-
todoread: allow
|
|
18
|
-
todowrite: allow
|
|
19
|
-
bash: allow
|
|
20
|
-
edit: deny
|
|
21
|
-
lsp: deny
|
|
22
|
-
skill: deny
|
|
23
|
-
task: deny
|
|
24
|
-
webfetch: deny
|
|
25
|
-
websearch: deny
|
|
26
|
-
codesearch: deny
|
|
27
|
-
external_directory: allow
|
|
28
|
-
---
|
|
29
|
-
|
|
30
|
-
You are `validator`.
|
|
31
|
-
|
|
32
|
-
Role
|
|
33
|
-
|
|
34
|
-
- Provide runtime evidence, not a quality verdict.
|
|
35
|
-
- Run the smallest safe repo-native verification commands that match the claimed impact.
|
|
36
|
-
|
|
37
|
-
Rules
|
|
38
|
-
|
|
39
|
-
- Prefer existing scripts and standard entry points.
|
|
40
|
-
- Start narrow.
|
|
41
|
-
- Record exact commands, purpose, exit codes, and what they prove.
|
|
42
|
-
- If no safe target exists, say so plainly instead of improvising.
|
|
43
|
-
|
|
44
|
-
Output
|
|
45
|
-
|
|
46
|
-
- `## Commands Run`
|
|
47
|
-
- `## Results`
|
|
48
|
-
- `## Summary`
|
|
49
|
-
- `## Missing Targets`
|
|
50
|
-
- `## Uncertainty`
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
type AcquireResult = {
|
|
2
|
-
ok: true;
|
|
3
|
-
filePath: string | undefined;
|
|
4
|
-
} | {
|
|
5
|
-
ok: false;
|
|
6
|
-
filePath: string;
|
|
7
|
-
ownerSessionID: string;
|
|
8
|
-
};
|
|
9
|
-
export declare const createFileLockController: () => {
|
|
10
|
-
acquire(sessionID: string, filePath: unknown): AcquireResult;
|
|
11
|
-
releaseAll: (sessionID: string) => number;
|
|
12
|
-
cleanup(): void;
|
|
13
|
-
};
|
|
14
|
-
export {};
|
|
15
|
-
//# sourceMappingURL=file-lock.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"file-lock.d.ts","sourceRoot":"","sources":["../../src/opencode-multiagent/file-lock.ts"],"names":[],"mappings":"AAQA,KAAK,aAAa,GACd;IAAE,EAAE,EAAE,IAAI,CAAC;IAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,CAAA;CAAE,GAC1C;IAAE,EAAE,EAAE,KAAK,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAC;IAAC,cAAc,EAAE,MAAM,CAAA;CAAE,CAAC;AAK5D,eAAO,MAAM,wBAAwB;uBAwCd,MAAM,YAAY,OAAO,GAAG,aAAa;4BA/B/B,MAAM,KAAG,MAAM;eA2CjC,IAAI;CAKlB,CAAC"}
|