langwatch / implement
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/implement && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2683" && unzip -o skill.zip -d .claude/skills/implement && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/implement/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Start implementation of a GitHub issue. Usage: /implement #123 or /implement <issue-url>
0 views
0 installs
Skill Content
---
name: implement
description: "Start implementation of a GitHub issue. Usage: /implement #123 or /implement <issue-url>"
user-invocable: true
disable-model-invocation: true
allowed-tools: Bash(gh:*)
argument-hint: "[issue-number or URL]"
---
# Implement
Starting implementation workflow for: $ARGUMENTS
## Step 1: Fetch GitHub Issue
Work should be tied to a GitHub issue for tracking. Fetching issue context:
!`if [[ "$ARGUMENTS" =~ ^[0-9]+$ ]] || [[ "$ARGUMENTS" =~ ^#[0-9]+$ ]]; then gh issue view ${ARGUMENTS/#\#/} 2>/dev/null || echo "Issue not found - please provide a valid issue number"; elif [[ "$ARGUMENTS" =~ github.com ]]; then gh issue view "$ARGUMENTS" 2>/dev/null || echo "Could not fetch issue"; else echo "No issue number provided. Please use /implement #123 or create an issue first."; fi`
## Step 2: Enter Orchestration Mode
Now invoke the orchestrator, passing the issue title and description from Step 1:
```
Skill(skill: "orchestrate", args: "Issue #N: <title>\n\n<issue body/description>")
```
The orchestrator will manage the full implementation loop:
1. `/plan` - Create feature file with acceptance criteria
2. `/code` - Delegate implementation to coder agent
3. `/review` - Quality gate with uncle-bob-reviewer
4. Loop until complete