smithery/neversight

overseer-plan

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

Installation

$ npx skills add smithery/neversight --skill overseer-plan

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
LicenseMIT
More metadata
author
dmmulroy
version
1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,605 B
  • docs SUMMARY.md 172 B

History

  1. First recorded snapshot · 0 installs

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 with full markdown as context
  4. Analyzes structure for subtask breakdown
  5. Creates subtasks when appropriate
  6. Returns task ID and breakdown summary

Hierarchy Levels

Depth Name Example
0 Milestone "Add user authentication system"
1 Task "Implement JWT middleware"
2 Subtask "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

After Creating

await tasks.get("<id>");                    // View task
await tasks.list({ parentId: "<id>" });     // List children
await tasks.start("<id>");                  // Start work (creates VCS bookmark)
await tasks.complete("<id>", "result");     // Complete (squashes commits)

VCS Integration: start and complete automatically manage VCS bookmarks and commits. No manual VCS operations needed.

When NOT to Use

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

Reading Order

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

In This Reference

File Purpose
references/api.md Overseer MCP codemode API types/methods
references/implementation.md Step-by-step execution instructions for agent
references/examples.md Complete worked examples