Translate a plan document into Eve jobs, parallelize work, and drive review/verification
Works with
through job phases and dependencies.
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versioneve-plan-implementationExecute the skills CLI command in your project's root directory to begin installation:
Fetches eve-plan-implementation 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-plan-implementation. Access via /eve-plan-implementation 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
Translate a plan document into Eve jobs, parallelize work, and drive review/verification through job phases and dependencies.
Orchestration model: The root epic is the orchestrator — it plans, delegates, and coordinates but does not execute heavy work itself. Phase jobs are sub-orchestrators that break a phase into tasks. Task jobs are workers — each one receives a self-contained description and executes independently with no access to the parent's context.
AGENTS.md for repo-specific rules.eve job current --json
If the root job does not exist, create one:
eve job create \
--project $EVE_PROJECT_ID \
--description "Implement <plan name>" \
--review human \
--phase backlog
If a root job already exists, use it as the orchestrator. The root epic never executes implementation work — it creates phase jobs, wires up dependencies, and waits.
Create one child job per plan phase. Each phase job acts as a sub-orchestrator: it breaks its scope into task jobs and coordinates them.
eve job create \
--project $EVE_PROJECT_ID \
--parent $EVE_JOB_ID \
--description "Phase: <name>. Deliverable: <artifact/result>" \
--phase ready
Add dependencies so the parent waits on each phase:
eve job dep add $EVE_JOB_ID $PHASE_JOB_ID --type waits_for
Split each phase into 2-6 atomic tasks with clear deliverables.
If a phase has only one task, execute it directly in the phase job rather than creating a child — avoid unnecessary orchestration overhead.
For multi-task phases, create child worker jobs. Each worker description must be self-contained: the executing agent has no access to the parent's context, the plan document, or prior conversation. Include in the description:
eve job create \
--project $EVE_PROJECT_ID \
--parent $PHASE_JOB_ID \
--description "Task: <objective>. Deliverable: <result>. Files: <paths>. Context: <anything the worker needs>" \
--phase ready
Make the phase wait on its tasks:
eve job dep add $PHASE_JOB_ID $TASK_JOB_ID --type waits_for
blocks only for true sequencing requirements.Workers pick up task jobs and execute them independently. Each worker:
eve job update $TASK_JOB_ID --phase active
# do the work
eve job submit $TASK_JOB_ID --summary "Completed <deliverable>"
If no review is required:
eve job close $TASK_JOB_ID --reason "Done"
After an orchestrator (root or phase) creates its child jobs and wires dependencies, it should return a waiting signal. This frees the orchestrator's resources while children execute in parallel:
{
"eve": {
"status": "waiting",
"summary": "Spawned child jobs and added waits_for relations"
}
}
Orchestrators should stay lightweight:
--type if available).bd dep add -> eve job dep add <parent> <child> --type waits_forbd ready/blocked -> eve job dep list <id> + eve job list --phase ...If tasks require code changes on a shared branch:
eve job create \
--project $EVE_PROJECT_ID \
--description "Task: <objective>" \
--git-ref main \
--git-ref-policy explicit \
--git-branch feature/<name> \
--git-create-branch if_missing \
--git-commit required \
--git-push on_success
Keep git controls consistent across tasks so all changes land in one PR.
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
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
Useful defaults in eve-plan-implementation — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added eve-plan-implementation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
eve-plan-implementation is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
eve-plan-implementation reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for eve-plan-implementation matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: eve-plan-implementation is the kind of skill you can hand to a new teammate without a long onboarding doc.
Useful defaults in eve-plan-implementation — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: eve-plan-implementation is focused, and the summary matches what you get after install.
We added eve-plan-implementation from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
eve-plan-implementation has been reliable in day-to-day use. Documentation quality is above average for community skills.
showing 1-10 of 28