Add explain skill and deploy skills via Ansible#81
Merged
michaelbarton merged 3 commits intomasterfrom Mar 10, 2026
Merged
Conversation
Creates a skills/ directory in the dotfiles repo and an Ansible task that dynamically finds all skill files and symlinks them into ~/.agents/skills/. https://claude.ai/code/session_01BhBiF3EqTSMfFCWNGpx6B8
Produces an intuitive overview and a detailed technical breakdown for a given file. https://claude.ai/code/session_01BhBiF3EqTSMfFCWNGpx6B8
Apply agentskills.io guidance: use imperative phrasing, cover implicit user intents, and be explicit about when to activate. https://claude.ai/code/session_01BhBiF3EqTSMfFCWNGpx6B8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces a new "explain" skill for code comprehension and establishes infrastructure to deploy skills through Ansible configuration management.
Key Changes
New skill:
explain— A two-part reporting skill that generates both intuitive and technical explanations of code files. Designed to support onboarding, code review, and building context on unfamiliar code.Skills deployment automation — Added
ansible/tasks/skills.ymlto automate linking skill files from the dotfiles repository to the user's.agents/skillsdirectory. The task:Ansible integration — Updated
ansible/dotfiles.ymlto include the new skills deployment tasks in the setup workflow, tagged for selective execution.Skills directory — Created
skills/directory with.gitkeepto establish the skills repository structure.Implementation Details
The explain skill provides structured guidance with two distinct sections:
The Ansible deployment uses symbolic links rather than copying files, allowing skills to be updated in the dotfiles repository and automatically reflected in the user's environment.
https://claude.ai/code/session_01BhBiF3EqTSMfFCWNGpx6B8