Create, manage, and review Eve jobs, phases, and dependencies. Use when running knowledge work in Eve or structuring job hierarchies.
Install
npx skillscat add incept5/eve-skillpacks/eve-job-lifecycle Install via the SkillsCat registry.
About this skill
We need to produce a 2-3 sentence plain-text summary, objective, factual, no marketing language, no superlatives, no calls to action. Must be at most 60 words. Must not wrap in quotes. Must be only the summary text. No markdown, no bullet points, no headings. So just a short paragraph. We need to explain what the skill does, what problem it solves, when to use it. Possible summary: "The eve-job-lifecycle skill provides commands to create, update, and manage jobs, phases, and dependencies within the Eve workflow.
SKILL.md
Eve Job Lifecycle
Use jobs as the unit of work and keep phases explicit.
Phases
- idea -> backlog -> ready -> active -> review -> done or cancelled
- Jobs default to
readyand can be scheduled immediately.
Create jobs
eve job create --description "..."- Add details with
--project,--priority,--phase,--labels,--review. - Create sub-jobs with
eve job create --parent <job-id> --description "...".
Update and complete
eve job update <id> --phase <phase>eve job submit <id> --summary "..."eve job approve <id>oreve job reject <id> --reason "..."eve job close <id> --reason "..."eve job cancel <id> --reason "..."
Dependencies
eve job dep add <job> <blocking-job>- Use dependencies only for true blockers.
- Inspect with
eve job dep list <id>.
Agent control signals
- Emit a fenced
json-resultblock witheve.statusaswaiting,success, orfailed. - Return
waitingonly after dependencies exist.