plan-task

Create a structured implementation plan for a feature, refactoring, or multi-step task. Use as the first step in the pipeline before /orchestrate. Produces a plan that the orchestrator can turn into a delegation plan.

6 stars

Best use case

plan-task is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Create a structured implementation plan for a feature, refactoring, or multi-step task. Use as the first step in the pipeline before /orchestrate. Produces a plan that the orchestrator can turn into a delegation plan.

Teams using plan-task should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/plan-task/SKILL.md --create-dirs "https://raw.githubusercontent.com/yu-iskw/llmops-demo-ts/main/.claude/skills/plan-task/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/plan-task/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How plan-task Compares

Feature / Agentplan-taskStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Create a structured implementation plan for a feature, refactoring, or multi-step task. Use as the first step in the pipeline before /orchestrate. Produces a plan that the orchestrator can turn into a delegation plan.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Plan Task

Create a detailed implementation plan for the following task:

$ARGUMENTS

## Planning Steps

1. **Research the codebase** to understand current state relevant to this task
2. **Identify all affected packages** (common, agents, backend, frontend)
3. **Break down into ordered tasks** with clear dependencies
4. **Assign each task to an agent role** (software-engineer, designer, qa, etc.)
5. **Identify risks** and architectural decisions needed

## Output Format

Produce a structured plan in exactly this format:

```text
## Task Plan

### Overview
[One paragraph summarizing the goal]

### Tasks

1. **[Task title]**
   - Description: [What needs to be done]
   - Package/files: [Which files will change]
   - Dependencies: [Which task numbers must complete first, or "none"]
   - Complexity: [Low / Medium / High]
   - Agent: [software-engineer / designer / qa / code-reviewer / security / sre-devops / legal-compliance]

2. **[Task title]**
   - Description: ...
   - Package/files: ...
   - Dependencies: ...
   - Complexity: ...
   - Agent: ...

### Risks & Considerations
- [Breaking changes, migration needs, test gaps, performance]

### Architecture Decisions
- [Design choices that need to be made upfront]
```

Be specific about file paths and concrete changes needed. This output will be fed to `/orchestrate` to create a parallel execution plan.

Related Skills

write-tests

6
from yu-iskw/llmops-demo-ts

Write unit tests, integration tests, or E2E tests for code. Use after implementing a feature or when test coverage is needed.

write-requirements

6
from yu-iskw/llmops-demo-ts

Write user stories, acceptance criteria, and technical requirements for a feature or change. Use when defining what needs to be built.

security-audit

6
from yu-iskw/llmops-demo-ts

Perform a security audit of the codebase. Checks for OWASP Top 10, AI-specific vulnerabilities, dependency issues, and configuration problems.

review-code

6
from yu-iskw/llmops-demo-ts

Review code changes for quality, security, and adherence to project conventions. Use after making code changes or when reviewing a pull request.

research

6
from yu-iskw/llmops-demo-ts

Research and gather reliable information about libraries, APIs, specifications, and best practices. Use when you need to understand external documentation before planning or implementing a feature.

orchestrate

6
from yu-iskw/llmops-demo-ts

Produce a structured delegation plan for parallel agent execution. Takes a task description or plan output, analyzes dependencies, assigns agents, and groups tasks for parallel execution. Use after /plan-task or when you need to plan how to delegate work across agents.

implement-feature

6
from yu-iskw/llmops-demo-ts

Implement a feature or fix a bug following the project's TypeScript patterns and conventions. Use when code changes are needed.

design-component

6
from yu-iskw/llmops-demo-ts

Design a UI component with specifications for layout, states, interactions, and accessibility. Use when creating new Vue.js components or redesigning existing ones.

deploy

6
from yu-iskw/llmops-demo-ts

Deploy the application or manage infrastructure. Handles Docker builds, CI/CD, and deployment workflows.

compliance-check

6
from yu-iskw/llmops-demo-ts

Check license compatibility, data privacy compliance, and AI ethics. Use when adding dependencies, handling user data, or reviewing regulatory requirements.

bump-dependencies

6
from yu-iskw/llmops-demo-ts

Bump or upgrade declared dependency versions in this pnpm workspace (root and packages/* package.json), with supply-chain checks before and after install. Use when the user asks to upgrade, bump, or refresh npm dependencies in manifests—not only the lockfile.

plankton-code-quality

144923
from affaan-m/everything-claude-code

使用Plankton进行编写时代码质量强制执行——通过钩子在每次文件编辑时自动格式化、代码检查和Claude驱动的修复。

DevelopmentClaude