workflow-supervisor 0.1.0 → 0.1.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 +433 -167
- package/adapters/claude-code/adapter.json +7 -1
- package/adapters/codex/adapter.json +7 -1
- package/bin/workflow-skills.mjs +1103 -20
- package/docs/artifacts.md +4 -2
- package/docs/cli.md +77 -15
- package/docs/compatibility.md +11 -37
- package/docs/portable-delegation.md +189 -0
- package/docs/skill-reference.md +4 -4
- package/docs/troubleshooting.md +1 -1
- package/package.json +3 -4
- package/schemas/dossier-v1.schema.json +139 -0
- package/schemas/worker-report-v1.schema.json +119 -0
- package/skills/acceptance-matrix/SKILL.md +2 -2
- package/skills/dossier-builder/SKILL.md +22 -8
- package/skills/dossier-builder/agents/openai.yaml +2 -2
- package/skills/loop-policy/SKILL.md +10 -10
- package/skills/loop-policy/agents/openai.yaml +1 -1
- package/skills/work-unit/SKILL.md +3 -3
- package/skills/worker-roles/SKILL.md +10 -10
- package/skills/worker-roles/agents/openai.yaml +2 -2
- package/skills/workflow-docs/SKILL.md +12 -9
- package/skills/workflow-docs/agents/openai.yaml +2 -2
- package/skills/workflow-docs/references/documentation-production.md +2 -0
- package/skills/workflow-docs/references/goal-resume.md +2 -0
- package/skills/workflow-docs/references/templates.md +4 -2
- package/skills/workflow-docs/references/workflow-control.md +16 -12
- package/skills/workflow-supervisor/SKILL.md +118 -46
- package/adapters/hermesagent/adapter.json +0 -8
- package/adapters/opencode/adapter.json +0 -8
|
@@ -3,5 +3,11 @@
|
|
|
3
3
|
"status": "portable",
|
|
4
4
|
"defaultTarget": "${CLAUDE_HOME:-~/.claude}/skills",
|
|
5
5
|
"metadata": "SKILL.md",
|
|
6
|
-
"fallback": "workflow-supervisor emit-context --agent claude-code --out CLAUDE.md"
|
|
6
|
+
"fallback": "workflow-supervisor emit-context --agent claude-code --out CLAUDE.md",
|
|
7
|
+
"delegate": {
|
|
8
|
+
"command": ["claude", "-p", "--output-format", "json"],
|
|
9
|
+
"promptMode": "arg",
|
|
10
|
+
"schemaMode": "json",
|
|
11
|
+
"schemaFlag": "--json-schema"
|
|
12
|
+
}
|
|
7
13
|
}
|
|
@@ -4,5 +4,11 @@
|
|
|
4
4
|
"defaultTarget": "~/.agents/skills",
|
|
5
5
|
"projectTarget": "<project>/.agents/skills",
|
|
6
6
|
"metadata": "agents/openai.yaml",
|
|
7
|
-
"invocation": "Use $workflow-supervisor ..."
|
|
7
|
+
"invocation": "Use $workflow-supervisor ...",
|
|
8
|
+
"delegate": {
|
|
9
|
+
"command": ["codex", "exec", "--json", "--skip-git-repo-check", "-c", "service_tier=\"fast\""],
|
|
10
|
+
"promptMode": "arg",
|
|
11
|
+
"schemaMode": "file",
|
|
12
|
+
"schemaFlag": "--output-schema"
|
|
13
|
+
}
|
|
8
14
|
}
|