ln-411-task-executor

Execute a single implementation task from Todo to To Review.

534|73|Updated Oct 24, 2025
One-click install
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-411-task-executor
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ln-411-task-executor
Source: https://github.com/levnikolaevich/claude-code-skills/tree/main/ln-411-task-executor
Command: npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-411-task-executor

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill executes a selected implementation task, guiding it from Todo through In Progress to To Review. It follows KISS/YAGNI principles, applies task-specific guidance, runs type checks and lint, and updates documentation/tests/configuration as directed.

Core Features & Use Cases

  • Load a single Task description, follow its plan, and implement the required changes.
  • Run type checking and linting; ensure quality gates and documentation updates are addressed per task instructions.
  • Add traceability with Task ID comments (e.g., // See PROJ-123) and document any impacted components.
  • Update statuses and return results to the orchestrator for subsequent review.

Quick Start

Invoke this Skill for a given Task ID; it will locate the task, execute the described changes, run quality checks, and leave updated traces for review.

Frequently Asked Questions about ln-411-task-executor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I execute a task from Todo to To Review with quality checks?

This Skill executes a single implementation task end-to-end: it reads the task description, runs typecheck and lint, updates Linear and kanban status, and applies changes to code, docs, and tests while keeping modifications minimal and traceable with Task ID comments.

What does following KISS and YAGNI principles mean when implementing tasks?

KISS (Keep It Simple, Stupid) and YAGNI (You Aren't Gonna Need It) mean implementing only what the task requires, avoiding over-engineering or speculative features. This Skill enforces minimal, focused changes that solve the stated problem without unnecessary complexity.

Can I use this to manage tasks across Linear and kanban simultaneously?

Yes. This Skill updates both Linear and kanban boards for a single selected task, keeping status in sync as the task moves from Todo through In Progress to To Review, ensuring consistent task tracking across tools.

How does task traceability work with Task ID comments?

This Skill adds Task ID comments (e.g., // See PROJ-123) to new code blocks to link implementation changes directly to their source task. This creates an audit trail connecting code modifications to the task that requested them.

What quality gates does this Skill apply during task execution?

The Skill runs type checking and linting to enforce code quality standards. It also updates documentation and test files as specified in the task instructions, ensuring compliance with project quality requirements before moving tasks to review.

Does this Skill handle only one task at a time?

Yes. This Skill processes one selected implementation task at a time, avoiding changes to other tasks. It focuses on executing a single task completely before returning results to the orchestrator for review.