askill
overseer-plan

overseer-planSafety 85Repository

Convert markdown planning documents to Overseer tasks via MCP codemode. Use when converting plans, specs, or design docs to trackable task hierarchies.

433 stars
8.7k downloads
Updated 2/13/2026

Package Files

Loading files...
SKILL.md

Converting Markdown Documents to Overseer Tasks

Use /overseer-plan to convert any markdown planning document into trackable Overseer tasks.

When to Use

  • After completing a plan in plan mode
  • Converting specs/design docs to implementation tasks
  • Creating tasks from roadmap or milestone documents

Usage

/overseer-plan <markdown-file-path>
/overseer-plan <file> --priority 3           # Set priority (1-5)
/overseer-plan <file> --parent <task-id>     # Create as child of existing task

What It Does

  1. Reads markdown file
  2. Extracts title from first # heading (strips "Plan: " prefix)
  3. Creates Overseer milestone (or child task if --parent provided)
  4. Analyzes structure for child task breakdown
  5. Creates child tasks (depth 1) or subtasks (depth 2) when appropriate
  6. Returns task ID and breakdown summary

Hierarchy Levels

DepthNameExample
0Milestone"Add user authentication system"
1Task"Implement JWT middleware"
2Subtask"Add token verification function"

Breakdown Decision

Create subtasks when:

  • 3-7 clearly separable work items
  • Implementation across multiple files/components
  • Clear sequential dependencies

Keep single milestone when:

  • 1-2 steps only
  • Work items tightly coupled
  • Plan is exploratory/investigative

Task Quality Criteria

Every task must be:

  • Atomic: Single committable unit of work
  • Validated: Has tests OR explicit acceptance criteria in context ("Done when: ...")
  • Clear: Technical, specific, imperative verb

Every milestone must:

  • Demoable: Produces runnable/testable increment
  • Builds on prior: Can depend on previous milestone's output

Review Workflow

  1. Analyze document → propose breakdown
  2. Invoke Oracle to review breakdown and suggest improvements
  3. Incorporate feedback
  4. Create in Overseer (persists to SQLite via MCP)

After Creating

await tasks.get("<id>");                    // TaskWithContext (full context + learnings)
await tasks.list({ parentId: "<id>" });     // Task[] (children without context chain)
await tasks.start("<id>");                  // Task (VCS required - creates bookmark, records start commit)
await tasks.complete("<id>", { result: "...", learnings: [...] });  // Task (VCS required - commits, bubbles learnings)

VCS Required: start and complete require jj or git (fail with NotARepository if none found). CRUD operations work without VCS.

Note: Priority must be 1-5. Blockers cannot be ancestors or descendants.

When NOT to Use

  • Document incomplete or exploratory
  • Content not actionable
  • No meaningful planning content

Reading Order

TaskFile
Understanding API@file references/api.md
Agent implementation@file references/implementation.md
See examples@file references/examples.md

In This Reference

FilePurpose
references/api.mdOverseer MCP codemode API types/methods
references/implementation.mdStep-by-step execution instructions for agent
references/examples.mdComplete worked examples

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

58/100Analyzed 2/20/2026

Well-structured skill with clear purpose, usage examples, and decision criteria. Covers when to use, hierarchy levels, task quality criteria, and review workflow. However, significant concerns: deeply nested in personal .dotfiles config directory suggesting internal-only use; full implementation details depend on external referenced files; tags don't match the skill purpose. The skill is technically sound but appears designed for personal use rather than broad reusability."

85
85
55
75
80

Metadata

Licenseunknown
Version-
Updated2/13/2026
Publisherdmmulroy

Tags

apidatabasegithub-actions