Incept5

eve-job-lifecycle

Create, manage, and review Eve jobs, phases, and dependencies. Use when running knowledge work in Eve or structuring job hierarchies.

Incept5 0 1 Updated 6mo ago
GitHub

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 ready and 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> or eve 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-result block with eve.status as waiting, success, or failed.
  • Return waiting only after dependencies exist.