ln-301-task-creator
Creates implementation, refactoring, and test tasks from templates. Use when an approved task plan needs tasks created in Linear and kanban.
Best use case
ln-301-task-creator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Creates implementation, refactoring, and test tasks from templates. Use when an approved task plan needs tasks created in Linear and kanban.
Teams using ln-301-task-creator 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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/ln-301-task-creator/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How ln-301-task-creator Compares
| Feature / Agent | ln-301-task-creator | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Creates implementation, refactoring, and test tasks from templates. Use when an approved task plan needs tasks created in Linear and kanban.
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.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
SKILL.md Source
> **Paths:** File paths (`shared/`, `references/`, `../ln-*`) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. # Task Creator **Type:** L3 Worker **Category:** 3XX Planning Standalone-first worker for task creation. It creates tasks from an already approved plan and returns a stable summary contract. ## MANDATORY READ Load these before execution: - `shared/references/coordinator_summary_contract.md` - `shared/references/tools_config_guide.md` - `shared/references/storage_mode_detection.md` - `shared/references/template_loading_pattern.md` - `shared/references/creation_quality_checklist.md` - `shared/references/destructive_operation_safety.md` ## Inputs Core inputs: - `taskType` - `storyData` - `idealPlan` or `appendMode + newTaskDescription` - `teamId` - `guideLinks` Optional transport inputs: - `runId` - `summaryArtifactPath` If `runId` is not provided, generate a standalone `run_id` before emitting the summary envelope. ## Output Contract Always build a structured summary envelope: - `schema_version` - `summary_kind=task-plan` - `run_id` - `identifier` - `producer_skill=ln-301` - `produced_at` - `payload` Payload fields: - `mode` - `story_id` - `task_type` - `tasks_created` - `tasks_updated` - `tasks_canceled` - `task_urls` - `kanban_updated` - `dry_warnings_count` - `warnings` If `summaryArtifactPath` is provided: - write the same JSON summary to that path If `summaryArtifactPath` is not provided: - return the same summary in structured output only ## Workflow 1. Resolve task provider and template set. 2. Run DRY and destructive-operation checks where applicable. 3. Generate task documents from the selected template. 4. Validate type-specific rules. 5. Show preview and get confirmation if needed. 6. Create tasks in Linear or file mode. 7. Update kanban. 8. Return structured summary. ## Critical Rules - Remain standalone-capable. - Do not require coordinator runtime state. - Keep implementation, refactoring, and test rules separated by `taskType`. - Write machine-readable summary output every time. - **STOP before save_issue:** verify all 7 sections present in body: Context, Implementation Plan, Technical Approach, Acceptance Criteria, Affected Components, Existing Code Impact, Definition of Done. PreToolUse hook will BLOCK creation without them. ## Definition of Done - [ ] Templates loaded - [ ] Task documents generated - [ ] Type-specific validation passed - [ ] Tasks created in provider-specific storage - [ ] kanban updated - [ ] Structured summary returned - [ ] Summary artifact written when `summaryArtifactPath` is provided --- **Version:** 3.0.0 **Last Updated:** 2025-12-23
Related Skills
ln-403-task-rework
Fixes tasks in To Rework by applying reviewer feedback, then returns to To Review. Use when task was rejected during review.
ln-402-task-reviewer
Reviews task implementation for quality, code standards, and test coverage. Use when task is in To Review. Sets task Done or To Rework.
ln-401-task-executor
Executes implementation tasks through Todo, In Progress, To Review. Use when task needs coding with KISS/YAGNI. Not for test tasks.
ln-302-task-replanner
Compares ideal plan vs existing tasks and applies KEEP/UPDATE/OBSOLETE/CREATE changes. Use when Story tasks need re-sync with updated requirements.
ln-300-task-coordinator
Analyzes Story and builds optimal task plan (1-8 tasks), then routes to create or replan. Use when Story needs task breakdown or replanning.
ln-221-story-creator
Creates Story documents with 9-section structure and INVEST validation in Linear. Use when Epic has an IDEAL plan ready for Story generation.
ln-161-skill-creator
Creates .claude/commands from procedural doc sections. Use when transforming documentation prose into executable skill files.
ln-140-test-docs-creator
Creates test documentation (testing-strategy.md, tests/README.md) with Risk-Based Testing philosophy. Use when setting up test strategy for a project.
ln-130-tasks-docs-creator
Creates task management docs (kanban board, workflow rules) with Linear integration. Use when setting up task tracking for a project.
ln-120-reference-docs-creator
Creates reference docs (ADRs, guides, manuals) for nontrivial tech stack choices. Use when project needs justified architecture decision records.
ln-115-devops-docs-creator
Creates infrastructure.md and runbook.md (Docker-conditional). Use for DevOps documentation in any project.
ln-114-frontend-docs-creator
Creates design_guidelines.md with WCAG 2.1 compliance and design system docs. Use when project has a frontend.