Claude Code Plugins

Community-maintained marketplace

Feedback
27
0

Performs implementation in the chain and records completion state and changed files in analysisContext. Use during implementation.

Install Skill

Shared

Installs to .agents/skills, used by Codex, Amp, Warp, Cursor, OpenCode, and more.

CodexAmp
Warp
CursorOpenCode
Cline
Gemini CLI
GitHub Copilot
Personal

Available across projects.

$npx skills-installer add @majiayu000/claude-skill-registry/implementation-runner --client shared
Project

Writes to .agents/skills.

$npx skills-installer add @majiayu000/claude-skill-registry/implementation-runner -p --client shared
Note: Review the skill instructions before using it.

SKILL.md

name implementation-runner
description Performs implementation in the chain and records completion state and changed files in analysisContext. Use during implementation.

Implementation Runner

Inputs

  • analysisContext.request.userMessage
  • analysisContext.decisions.skillChain
  • analysisContext.repo.openFiles
  • analysisContext.artifacts.contextDocPath (if present)

Procedure

  1. Check requirements and context.
  2. Define change scope and implement.
  3. Record changed files and key change summary.
  4. Update implementation completion in analysisContext.

Output (patch)

signals.implementationComplete: true
repo.changedFiles:
  - src/...
notes:
  - "implementation: complete, changed_files=3"

Rules

  • Do not call other skills/subagents.
  • If failed or deferred, record the reason in notes.