compound-workflow 0.1.9 → 1.0.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/README.md
CHANGED
|
@@ -132,7 +132,7 @@ Full detail: [src/AGENTS.md](src/AGENTS.md), [src/.agents/commands/](src/.agents
|
|
|
132
132
|
Commands are the public API. Skills and agents are invoked by commands; you don’t call them directly.
|
|
133
133
|
|
|
134
134
|
- **Workflow skills:** `brainstorming`, `file-todos`, `compound-docs`, `document-review`, `technical-review`, `git-worktree`, `agent-browser`, `process-metrics`, `xstate-actor-orchestration`.
|
|
135
|
-
- **
|
|
135
|
+
- **State orchestration:** Use a state-orchestration skill when complexity exceeds simple local state (e.g. `xstate-actor-orchestration` per Skill Index)—UI container-as-orchestrator flows, backend/internal actor orchestration, receptionist/child-actor patterns, retries/timeouts/cancellation, or boolean-flag sprawl.
|
|
136
136
|
- **Skill-local metadata:** Some skills may include tool-specific metadata under `src/.agents/skills/<skill>/agents/` (for example `openai.yaml`) when required by skill validation/runtime.
|
|
137
137
|
- **Guardrail standards:** `data-foundations`, `pii-protection-prisma`, `financial-workflow-integrity`, `audit-traceability` — applied when work touches multi-tenant data, PII, money, or audit.
|
|
138
138
|
- **Agents:** Used by plan, review, and work for research, lint, and validation (e.g. `repo-research-analyst`, `learnings-researcher`, `git-history-analyzer`, `agent-native-reviewer`).
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"compound-workflow","version":"0.
|
|
1
|
+
{"name":"compound-workflow","version":"1.0.0","description":"Clarify → plan → execute → verify → capture. One Install action for Cursor, Claude, and OpenCode.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/cjerochim/compound-workflow.git"},"bin":{"compound-workflow":"scripts/install-cli.mjs"},"files":["src","scripts",".cursor-plugin",".claude-plugin","skills"],"engines":{"node":">=18"},"devDependencies":{"@semantic-release/git":"^10.0.1","@semantic-release/npm":"^13.1.4","semantic-release":"^25.0.3"}}
|
|
@@ -70,8 +70,8 @@ Use **AskQuestion** to suggest:
|
|
|
70
70
|
- Planned spawned-child actors or receptionist-style actor lookup
|
|
71
71
|
|
|
72
72
|
If these signals appear, note that `/workflow:plan` should evaluate
|
|
73
|
-
|
|
74
|
-
brainstorm.
|
|
73
|
+
whether to load a state-orchestration skill (see Skill Index in
|
|
74
|
+
AGENTS.md). Do not force architecture decisions in brainstorm.
|
|
75
75
|
|
|
76
76
|
---
|
|
77
77
|
|
|
@@ -90,10 +90,11 @@ Refine the idea through collaborative dialogue using **AskQuestion**:
|
|
|
90
90
|
|
|
91
91
|
### 0.5. State-Orchestration Fit Check (Decision in planning)
|
|
92
92
|
|
|
93
|
-
Before finalizing architecture, decide whether to load
|
|
94
|
-
|
|
93
|
+
Before finalizing architecture, decide whether to load an appropriate
|
|
94
|
+
state-orchestration skill (see Skill Index in AGENTS.md; e.g.
|
|
95
|
+
`xstate-actor-orchestration` when the stack uses that approach).
|
|
95
96
|
|
|
96
|
-
Load
|
|
97
|
+
Load one when complexity exceeds simple local state, especially for:
|
|
97
98
|
|
|
98
99
|
- UI flows where a React container should orchestrate context/state and
|
|
99
100
|
compose presentational components
|
|
@@ -43,8 +43,9 @@ The input must be a plan file path.
|
|
|
43
43
|
|
|
44
44
|
1.1. **Apply state-orchestration trigger (enforcement)**
|
|
45
45
|
|
|
46
|
-
If the plan or implementation involves
|
|
47
|
-
orchestration, load
|
|
46
|
+
If the plan or implementation involves state-machine or actor
|
|
47
|
+
orchestration, load the selected state-orchestration skill (see Skill
|
|
48
|
+
Index in AGENTS.md) before coding.
|
|
48
49
|
|
|
49
50
|
Trigger examples:
|
|
50
51
|
|
package/src/AGENTS.md
CHANGED
|
@@ -85,6 +85,7 @@ High-risk triggers include: security, payments, privacy, data migration/backfill
|
|
|
85
85
|
|
|
86
86
|
## Routing Rules
|
|
87
87
|
|
|
88
|
+
- **Capability-first in commands:** Core workflow command docs should name capabilities (problem shape), not specific libraries. Concrete skill resolution comes from the Skill Index.
|
|
88
89
|
- Prefer existing project patterns before introducing new ones.
|
|
89
90
|
- Always run local repo + institutional learnings research first for planning.
|
|
90
91
|
- Run external best-practice/framework research based on fidelity and risk.
|