plugins/agile-workflow/skills/ln-301-task-creator/SKILL.md
Creates implementation, refactoring, and test tasks from templates. Use when an approved task plan needs tasks created via the configured tracker provider and reflected in kanban.
npx skillsauth add levnikolaevich/claude-code-skills ln-301-task-creatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Paths: File paths (
references/,../ln-*) are relative to this skill directory.
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 references/coordinator_summary_contract.md and references/task_plan_worker_runtime_contract.md
MANDATORY READ: Load references/environment_state_contract.md, references/storage_mode_detection.md, references/template_loading_pattern.md, references/creation_quality_checklist.md, and references/destructive_operation_safety.md
Core inputs:
taskTypestoryDataidealPlan — task list with scopes, AC mappings, dependencies, layer classificationsteamIdguideLinksCoordinator context (passed in ADD/CREATE mode):
traceabilityTablePath — materialized traceability table from coordinator Phase 2discoveryContext — architecture, tech stack, key files, integration points from coordinator Phase 1tasksToCreate — specific tasks to create (ADD mode). Worker writes the 7-section document, does not decide whether tasks are needed.Transport inputs:
runId and summaryArtifactPathrunId and summaryArtifactPathRuntime family: task-plan-worker-runtime
Phase profile:
PHASE_0_CONFIGPHASE_1_LOAD_INPUTSPHASE_2_LOAD_CONTEXTPHASE_3_GENERATE_TASK_DOCSPHASE_4_VALIDATE_TASKSPHASE_5_CONFIRM_OR_AUTOAPPROVEPHASE_6_APPLY_CREATEPHASE_7_UPDATE_KANBANPHASE_8_WRITE_SUMMARYPHASE_9_SELF_CHECKSummary artifact rules:
summary_kind=task-planrun_id and write the default worker-family artifact pathrunId and summaryArtifactPath and must write the summary to the exact provided pathAlways build a structured task-plan summary envelope per:
references/coordinator_summary_contract.mdreferences/task_plan_worker_runtime_contract.mdPayload fields:
modestory_idtask_typetasks_createdtasks_updatedtasks_canceledtask_urlskanban_updateddry_warnings_countwarningsAlways write the validated summary before terminal outcome.
discoveryContext, traceabilityTablePath) to understand architecture. Research codebase for implementation details (existing patterns, related files, integration points) to write good Technical Approach sections.ADD: use tasksToCreate onlyCREATE: expand the full idealPlantaskType.ADD: tasksToCreate is the execution scope. Do not re-expand the full ideal plan when the coordinator already selected the delta.createTask: 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.Version: 3.0.0 Last Updated: 2025-12-23
testing
Checks runtime lifecycle and config validation: bootstrap, shutdown, probes, cleanup, env sync, and fail-fast startup. Use for runtime readiness.
testing
Checks races, deadlocks, async hazards, TOCTOU, blocking I/O, and shared resource contention. Use when auditing concurrency correctness.
testing
Checks diagnosability through structured logs, metrics, traces, correlation IDs, and useful log levels. Use when auditing incident visibility.
development
Finds code that can be safely deleted: unreachable, unused, obsolete compatibility, and commented-out code. Use when pruning dead code.