Skip to content

Repository files navigation

Guided Coding

Guided Coding is a lightweight approach to working with Coding Agents. Version 2 treats ai-plans/ as an append-only decision record: plans become immutable when their Planning Phase ends, acceptance criteria record verified progress, and material implementation changes are captured in Plan Deviations documents.

The repository is both an Agent Plugin and a Claude Code plugin. Its skills follow the Agent Skills specification and can also be installed independently into .agents/skills.

The full method is documented at kenny-codes.net/docs/guided-coding.

Skills

Skill Purpose
guided-coding-setup Set up or upgrade Guided Coding in a repository.
guided-coding-write-plan After discussing an issue with your agent, write a plan or follow-up plan.
guided-coding-review-plan Review a plan draft against the repository (use in fresh conversation).
guided-coding-freeze-plan Freeze a plan by timestamping its file name and title.
guided-coding-implement Implement a frozen plan and verify it through the repository's feedback loops.
guided-coding-implement-show-me (Guided Learning) Implement a frozen plan step-by-step where the agent shows you complete code fragments that you enter and discuss.
guided-coding-implement-coach-me (Guided Learning) Implement a frozen plan yourself through coached, verifiable milestones. The agent reveals implementation hints progressively.
guided-coding-write-deviations Summarize follow-up plans and record material implementation differences.

In most Agent Harnesses, these workflows must be invoked explicitly. All workflows set allow_implicit_invocation: false for Agent Plugins and disable-model-invocation: true for Claude Plugins, respectively.

Guided Learning

Guided Learning is a variation of Guided Coding where the agent does not implement the plan itself but teaches you how to implement it. The guided-coding-implement-show-me and guided-coding-implement-coach-me skills give you two approaches for Beginning and Advanced developers that want to increase their capabilities. The regular guided-coding-implement skill should be used for regular Guided Coding.

Stage Skill How the agent teaches
Beginning guided-coding-implement-show-me Splits the plan into layers and presents complete code, fragment by fragment, for you to type and discuss. This is useful when you are new to a topic and want to quickly learn the fundamental concepts. The agent is always ready for your questions.
Advancing guided-coding-implement-coach-me Splits the plan into vertical slices that you implement yourself, reviews your work, and reveals hints progressively. This is useful when you are proficient at a topic and want more of a challenge to master your skills.
Mastering guided-coding-implement Regular Guided Coding: the Coding Agent implements the plan for you. No teaching involved.

Both skills track your progress in ~/.guided-learning/profile.md: this file contains your preferences for how to be taught and a tree of knowledge areas, each at one of the three stages. On first use, the agent creates this folder as a local git repository (requires Git 2.28 or later) and commits every update locally with a message stating what it observed. This repo is never pushed by default, but you could share it across different machines. We recommend pushing to a private repository. The profile never ends up in your project repository, and you can edit or delete it at any time.

Install

Many of the following commands use gh which refers to the GitHub CLI.

Agent Skills

All major harnesses except Claude Code support Agent Skills. Install all skills into the shared project-level .agents/skills directory with the GitHub CLI:

gh skill install feO2x/guided-coding --all --agent universal --scope project

Install one skill by naming it or add --scope user to make the installation available across repositories.

If you want to update, use the following command:

gh skill update --dir .agents/skills --dry-run # checks for changes
gh skill update --dir .agents/skills --all # updates all local skills

Claude Code

Via the GitHub CLI

You can use gh to install the skills, too:

gh skill install feO2x/guided-coding --all --agent claude-code --scope project

Install one skill by naming it or add --scope user to make the installation available across repositories.

As a Claude Code Marketplace and Plugin

Alternatively, you can add Guided Coding as a marketplace and install the plugin:

/plugin marketplace add feO2x/guided-coding
/plugin install guided-coding@guided-coding

Claude namespaces plugin skills with the plugin name. For example, invoke the setup workflow as /guided-coding:setup. The other skill names similarly omit the redundant guided-coding- prefix used by the portable Agent Skills.

If you want to update, use the following commands:

claude plugin marketplace update guided-coding
claude plugin update guided-coding@guided-coding --scope project

⚠️ Restart Claude Code afterwards. Only then will the updated skills be picked up.

Agent Plugin clients

Clients supporting the Agent Plugins standard can install this repository as a plugin package. Installation and marketplace commands are client-specific.

Development

Run the .NET 10 xUnit v3 validation suite with Microsoft.Testing.Platform v2:

dotnet test

Generate the Claude Code adapter from the canonical portable skills, or verify that the committed adapter is current:

dotnet run --project tools/GuidedCoding.ClaudeGenerator
dotnet run --project tools/GuidedCoding.ClaudeGenerator -- --check

Configure Claude-specific skill names and frontmatter in tools/GuidedCoding.ClaudeGenerator/claude-skills.json. Do not edit claude-plugin/claude-skills directly.

When the corresponding tools are installed, also run:

claude plugin validate . --strict
gh skill publish --dry-run

Keep plugin.json, claude-plugin/.claude-plugin/plugin.json, .claude-plugin/marketplace.json, and the release tag on the same Semantic Version.

About

Contains Guided-Coding related AI Skills for different Coding Agents.

Topics

Resources

Stars

6 stars

Watchers

0 watching

Forks

Releases

Contributors

Languages