skill-builder banner
Scottpedia0 Scottpedia0

skill-builder

AI community intermediate

Description

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.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

skill-builder

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.

Screenshots

**Discovery** — patterns found across your data sources, ranked by confidence:

**Skill Builder** — preview and install skills with one click:

**MCP Builder** — generate complete MCP server projects from a form:

**Connections** — plug in API keys and data sources:

Quick Start

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.md

If 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 7

What It Does

Reads 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.

Commands

skill-builder suggest           # see all suggestions
skill-builder daily             # one per day, no repeats
skill-builder implement     # build and install a skill

...