Scottpedia0/skill-builder
Analyze how you work → build automations that actually run. One skill per day for Claude Code, Codex, Cursor.
Platform-specific configuration:
{
"mcpServers": {
"skill-builder": {
"command": "npx",
"args": [
"-y",
"skill-builder"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Reads your shell history, git commits, browser history, and Claude Code conversation logs. Finds patterns you repeat. Generates working skills (slash commands) you can install in Claude Code, Codex, Cursor, or any agent that reads markdown.
Has 15 built-in skills. If you add an API key, it uses an LLM to generate skills for any pattern it finds — not just the built-in ones.
Built this in a day for our own use. If you find it useful, make it better.
git clone https://github.com/Scottpedia0/skill-builder.git
cd skill-builder
npm install
# See what it finds on your machine (reads shell history + git automatically)
node bin/cli.mjs suggest
# Preview a skill before installing
node bin/cli.mjs implement pr-dashboard --dry-run
# Install it
node bin/cli.mjs implement pr-dashboard
# → writes to ~/.claude/commands/pr-dashboard.mdIf you don't have shell history or want to test with sample data:
node scripts/generate-demo-db.mjs
node bin/cli.mjs suggest --days 7Reads data from your machine → finds things you do repeatedly → suggests skills to automate them.
Shell history ──┐
Git commits ────┤
Browser URLs ───┤──→ Analyzer ──→ Suggester ──→ Generator ──→ skill.md
Claude threads ─┤
Telemetry ──────┘Without an API key: 15 built-in skills install instantly (marked ✅).
With an API key: The LLM generates a custom skill for any pattern (marked 🤖). Tested with OpenRouter, Anthropic, Google, OpenAI.
skill-builder suggest # see all suggestions
skill-builder daily # one per day, no repeats
skill-builder implement <id> # build and install a skill
skill-builder list # show built-in skills
skill-builder --help # all options--dry-run previews without installing. --days N controls the analysis window.
| Skill | What it does | |-------|-------------| | pr-dashboard | PR/CI summary acr
Loading reviews...