Work plan
the governed runtime for agent skill workflows, off the leash but on the record
npx -y skills add runxhq/runx --skill work-planAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Compile a bounded objective or issue-intake change set into a dependency-safe Runx execution plan, with deterministic checks for evidence preservation, mutation boundaries, catalog references, and skill-package ownership. Use before multi-step or cross-surface work; this skill plans but does not execute.
SKILL.md
3.2 KB, 595 tokens by cl100k_base, as published. Nobody here has run it
Work Plan
Turn one objective into a plan that downstream runners can consume without reinterpreting the source request.
Procedure
- Start from
objective. Whenchange_setis supplied byissue-intake, preserve it exactly; do not rewrite its target surfaces, invariants, success criteria, or commencement decision. - Classify the plan as
workspace_changeorskill_package. Skill-package authoring belongs toskill-lab; do not route it through a generic repo-change step. - Split work at authority, mutation, dependency, and review boundaries. Keep steps coarse enough to produce a meaningful artifact.
- Declare ordered phases and repo change requests. Parallel work must have no dependency or shared mutation target.
- Declare orchestration steps with exact skill references, scopes, mutation flags, inputs, and prior-step context references.
- Return
blockedwhen a question must be answered before mutation. Never turn uncertainty into an executable plan. - Native catalog inspection supplies the actual installed skill set. The
domain validator then verifies source preservation, ordered DAGs, mutation
declarations, context references, catalog ownership, and the
skill-labboundary. Invalid candidates are withheld and returned as a blocked packet.
This skill does not approve or execute mutations. A mutating: true field describes authority a future step will need.
Output
decision: ready | blocked
plan_kind: workspace_change | skill_package
change_set: object
objective_summary: string
workspace_change_plan: object
orchestration_steps: array
required_skills: array
open_questions: array
evidence: object
validation:
status: pass | hold
findings: array
workspace_change_plan contains plan_id, change_set_id, objective_summary, shared invariants, success criteria, ordered phases, integration checks, and open questions. Each phase contains ordered repo change requests with dependencies, validation commands, and mutation declarations.
Inputs are objective, optional project_context, thread_locator, thread, change_set, and harness_context. harness_context is passed through from the caller; the agent does not reconstruct or advance it.
Agent task contracts
work-plan-draft
Return work_plan_draft with decision, plan_kind, change_set, objective_summary, workspace_change_plan, orchestration_steps, required_skills, and open_questions. Preserve a supplied change_set exactly. Split at authority, mutation, dependency, and review boundaries; do not split for cognitive convenience. Every phase, repo request, and orchestration step needs an id, ordered dependencies, and an explicit mutation flag. A ready plan has no blocking open questions. Use plan_kind skill_package for Runx skill authoring and route that work through skill-lab. This runner plans only and never claims downstream execution.