implement-task

Parse a task identifier and orchestrate an end-to-end implementation workflow.

60|8|Updated Feb 15, 2026
One-click install
npx skills add https://github.com/albinotonnina/echos --skill implement-task-albinotonnina
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: implement-task
Source: https://github.com/albinotonnina/echos/tree/main/.claude/skills/implement-task
Command: npx skills add https://github.com/albinotonnina/echos --skill implement-task-albinotonnina

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill orchestrates an end-to-end process to implement a given task inside a repository, including parsing the task ID, creating a git worktree, reading docs, applying code changes, building, testing, and updating documentation, so engineers can deliver task implementations with minimal manual coordination.

Core Features & Use Cases

  • Task parsing and branch/worktree setup: extracts a task ID (e.g., 1.11) and creates a dedicated worktree and branch.
  • Docs-driven implementation: consults docs/IMPLEMENTATION.md and related references to implement the task per spec.
  • Isolated, repeatable workflow: runs on a per-task basis without touching mainline, handles dependencies, and validates results.
  • Documentation and review readiness: updates docs and prepares a PR-ready change set.

Quick Start

Ask the AI to implement task 1.11 to begin the end-to-end workflow.

Frequently Asked Questions about implement-task

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

FAQPage Schema
How do I automate end-to-end task implementation in a codebase?

End-to-end task implementation automation parses a task identifier, creates an isolated git worktree, applies code changes, runs builds and tests, and prepares documentation for a ready-to-review change set.

How does git worktree isolation work when implementing a new feature?

Git worktree isolation extracts a task ID and creates a dedicated branch and worktree, ensuring the feature implementation runs on a per-task basis without touching the mainline codebase.

Can I prepare a PR-ready change set automatically after building and testing?

You can prepare a PR-ready change set automatically because the workflow validates results through builds and tests, then updates documentation and prepares the final changes for review.

What are the limitations of automating task implementation within a repository?

Limitations include relying on accurate task IDs and existing docs/IMPLEMENTATION.md references; without proper specs or project conventions, the automated workflow cannot correctly orchestrate the required code changes.