A metacognitive playbook for hard, multi-step, or ambiguous tasks: how to decompose problems, verify your own work before presenting it, and decide what to do next when the path is unclear.
This repo is a plugin marketplace. From an interactive Claude Code session:
/plugin marketplace add <your-github-username>/fable-skill
/plugin install fable-skill@fable-tools
Update later with:
/plugin marketplace update fable-tools
Copy the skill folder directly into your local skills directory:
cp -r plugins/fable-skill/skills/fable-skill ~/.claude/skills/fable-skill
Any Claude surface that reads ~/.claude/skills/ will pick it up on next load.
fable-skill/
.claude-plugin/
marketplace.json # marketplace catalog (this repo)
plugins/
fable-skill/
.claude-plugin/
plugin.json # plugin manifest
skills/
fable-skill/
SKILL.md # the skill itself
- Create a new GitHub repository named
fable-skill(public, so others can install it). - From this folder:
git init git add . git commit -m "Add fable skill" git branch -M main git remote add origin https://github.com/<your-github-username>/fable-skill.git git push -u origin main - Validate before sharing (optional but recommended):
claude plugin validate . - Share the install command from the top of this README with anyone who wants it.