This skill explains how to orchestrate complex work in Eve Horizon by spawning child jobs, managing
Works with
dependencies, and maximizing parallel execution while respecting depth limits.
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioneve-orchestrationExecute the skills CLI command in your project's root directory to begin installation:
Fetches eve-orchestration from incept5/eve-skillpacks and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate eve-orchestration. Access via /eve-orchestration in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
This skill explains how to orchestrate complex work in Eve Horizon by spawning child jobs, managing dependencies, and maximizing parallel execution while respecting depth limits.
Not every job needs decomposition. Use this heuristic:
Fetch the current job context before deciding anything:
eve job current --json
# or explicit
eve job current $EVE_JOB_ID --json
Use the context to confirm:
job.depth (current depth)children (existing sub-jobs)relations (dependencies)blocked / waiting / effective_phaseUse the environment to avoid guessing identifiers:
EVE_JOB_ID: current jobEVE_PROJECT_ID: owning projectEVE_ATTEMPT_ID: current attemptEVE_REPO_PATH: workspace pathEVE_AGENT_ID: agent identifier (optional)The parent decides the target depth and passes it to children (in the child description or data). Each child must read and honor the same target depth.
Example snippet to include in child descriptions:
Target depth: 3 (EPIC). Current depth: 1.
If current depth < target, you may create child jobs and use waits_for relations to parallelize.
If current depth >= target, execute directly.
EPIC: target depth = 3
Story: target depth = 2
If no target depth is provided, default to Story depth (2) unless the scope clearly indicates EPIC.
The orchestrator's most precious resource is its context window. Protect it:
A well-run orchestrator should finish with most of its context budget unspent.
eve job current --json).current_depth >= target_depth, execute directly.waits_for for standard gating.blocks only for strict ordering constraints.Create child jobs using eve job create with --parent. Each child description must be
fully self-contained — the child agent has no access to the parent's conversation,
context, or reasoning. Everything the child needs to act must be in the description itself.
# Create two child jobs in parallel
eve job create --project $EVE_PROJECT_ID \
--parent $EVE_JOB_ID \
--description $'Target depth: 3 (EPIC). Current depth: 1.\nScope: Research sources\nDeliverable: Annotated bibliography' \
--phase ready
eve job create --project $EVE_PROJECT_ID \
--parent $EVE_JOB_ID \
--description $'Target depth: 3 (EPIC). Current depth: 1.\nScope: Draft outline\nDeliverable: Structured outline' \
--phase ready
After creating children, add dependencies so the parent waits on them:
eve job dep add $EVE_JOB_ID $CHILD_A_ID --type waits_for
eve job dep add $EVE_JOB_ID $CHILD_B_ID --type waits_for
Use the CLI dependency commands to express relationships:
eve job dep add $PARENT_JOB_ID $CHILD_JOB_ID --type waits_for
eve job dep add $CHILD_JOB_ID $OTHER_JOB_ID --type blocks
eve job dep list $JOB_ID
Relation guidance:
waits_for: standard parent waits for child completionblocks: strict ordering constraintconditional_blocks: use only when the dependency is conditionalAdd relations before returning a waiting control signal.
When you spawn children and set relations, pause the parent with a waiting signal:
{
"eve": {
"status": "waiting",
"summary": "Spawned 3 parallel child jobs; waiting on waits_for relations"
}
}
Rules:
waiting after dependencies exist.waiting requeues the job to ready while it stays blocked by relations.waiting without blockers triggers a short backoff; avoid it.success when the work is complete.failed only for unrecoverable outcomes.Default: no review unless explicitly required by the parent or project settings.
If review is required:
waiting.eve job submit $EVE_JOB_ID --summary "Completed work and ready for review"
When a parent resumes after children complete:
If a child fails:
Every child description must be self-contained. The child agent starts cold — no access to the parent's conversation, files read, or reasoning. Include everything it needs:
Target depth: 3 (EPIC). Current depth: 1.
If current depth < target, you may create child jobs and use waits_for relations to parallelize.
If current depth >= target, execute directly.
Context: <why this work exists — enough background for the child to act without asking>
Scope: <concise child objective — what to do>
Inputs: <specific file paths, data references, or prior outputs the child needs>
Deliverable: <clear, verifiable outcome — what "done" looks like>
Constraints: <boundaries, standards, or requirements to honor>
Key rules for child descriptions:
/src/auth/handler.ts to add token refresh logic" is actionable.json-result waiting (if children exist)Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Solid pick for teams standardizing on skills: eve-orchestration is focused, and the summary matches what you get after install.
eve-orchestration is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: eve-orchestration is focused, and the summary matches what you get after install.
eve-orchestration fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Registry listing for eve-orchestration matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend eve-orchestration for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: eve-orchestration is the kind of skill you can hand to a new teammate without a long onboarding doc.
We added eve-orchestration from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
eve-orchestration reduced setup friction for our internal harness; good balance of opinion and flexibility.
We added eve-orchestration from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
showing 1-10 of 51