A collection of AI agent skills for working with SpecStory session histories. Built for developers who want Claude Code (or similar AI coding assistants) to help analyze, organize, and extract insights from their AI-assisted coding sessions.
FAQ
specstoryai-agent-skills is a Claude Code plugin with 6 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes specstory-guard, specstory-link-trail, specstory-organize. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.
$ npx -y skills add specstoryai/agent-skills --agent claude-code
A collection of AI agent skills for working with SpecStory session histories. Built for developers who want Claude Code (or similar AI coding assistants) to help analyze, organize, and extract insights from their AI-assisted coding sessions.
Contributions welcome! Found a way to improve a skill or have a new one to add? Open a PR.
Skills are markdown files that give AI agents specialized knowledge and workflows for specific tasks. When you add these to your project, Claude Code (or agents like Codex, Cursor, Gemini, Copilot) can recognize relevant tasks and apply the right frameworks and analysis patterns.
These skills work with your local .specstory/history directory (or cloud.specstory.com APIs), which is created by SpecStory when capturing AI coding sessions.
Install SpecStory for your tool:
| Tool | Installation |
|---|---|
| Cursor / VS Code | Search "SpecStory" in Extensions (Cmd/Ctrl+Shift+X) |
| Claude Code / CLI agents | brew tap specstoryai/tap && brew install specstory |
Once installed, your AI conversations are automatically saved to .specstory/history/ in each project.
Note for contributors: Don't run
npx skills addfrom within this repo - it will install skills into the repo directory. The.gitignoreexcludes these directories, but install skills in your actual projects instead.
| Skill | Description |
|---|---|
| specstory-guard | Install a pre-commit hook that scans .specstory/history for secrets before commits. Run when user says "set up secret... |
| specstory-link-trail | Track all URLs fetched during SpecStory AI coding sessions. Run when user says "show my link trail", "what URLs did I... |
| specstory-organize | Organize SpecStory AI coding sessions in .specstory/history into year/month folders. Run when user says "organize my... |
| specstory-project-stats | Fetch project statistics from SpecStory Cloud. Run when user says "get project stats", "show SpecStory stats", "project... |
| specstory-session-summary | Summarize recent SpecStory AI coding sessions in standup format. Use when the user wants to review sessions from... |
| specstory-yak | Analyze your SpecStory AI coding sessions in .specstory/history for yak shaving - when your initial goal got derailed... |
Use npx skills to install skills directly:
# Install all skills
npx skills add specstoryai/agent-skills
# Install specific skills
npx skills add specstoryai/agent-skills --skill specstory-yak specstory-session-summary
# List available skills
npx skills add specstoryai/agent-skills --list
This installs skills to .agents/skills/ and symlinks them to each detected agent's directory (.claude/skills/, .cursor/skills/, .codex/skills/, etc.). The CLI auto-detects which agents you have installed.
Clone the entire repo and copy the skills folder:
git clone https://github.com/specstoryai/agent-skills.git
cp -r agent-skills/skills/* .claude/skills/
Add as a submodule for easy updates:
git submodule add https://github.com/specstoryai/agent-skills.git .claude/agent-skills
Then reference skills from .claude/agent-skills/skills/.
Once installed, just ask Claude Code to help with SpecStory-related tasks:
"Analyze my yak shaving for the last 30 days"
โ Uses specstory-yak skill
"Summarize my coding sessions from this week"
โ Uses specstory-session-summary skill
"Organize my specstory history folder"
โ Uses specstory-organize skill
"What URLs did I visit in my last session?"
โ Uses specstory-link-trail skill
"Set up secret scanning for my specstory files"
โ Uses specstory-guard skill
You can also invoke skills directly:
/specstory-yak
/specstory-session-summary
/specstory-organize
/specstory-link-trail
/specstory-guard
specstory-yak - Detect rabbit holes and scope creep in your coding sessionsspecstory-session-summary - Generate standup-ready summaries of recent workspecstory-link-trail - Track all URLs fetched during sessionsspecstory-organize - Keep history files organized by year/monthspecstory-guard - Pre-commit hook to catch secrets in history filesFound a way to improve a skill? Have a new skill to suggest? PRs and issues welcome!
See CONTRIBUTING.md for detailed guidelines on:
Apache 2.0 - Use these however you want.
.cursorindexingignore
.github/
scripts/
sync-skills.js
workflows/
sync-skills.yml
validate-skill.yml
.gitignore
.specstory/
.gitignore
AGENTS.md
CLAUDE.md
CONTRIBUTING.md
LICENSE
README.md
skills/
specstory-guard/
hooks/
pre-commit
LICENSE.txt
metadata.json
scripts/
guard.py
patterns.py
scan.py
setup.py
SKILL.md
specstory-link-trail/
extract_urls_context.py
generate_report.py
LICENSE.txt
parse_webfetch.py
SKILL.md
specstory-organize/
LICENSE.txt
README.md
scripts/
organize.py
SKILL.md
specstory-project-stats/
LICENSE.txt
README.md
scripts/
get-stats.js
SKILL.md
specstory-session-summary/
LICENSE.txt
SKILL.md
specstory-yak/
LICENSE.txt
scripts/
analyze.py
lib/
__init__.py
models.py
parser.py
report.py
scoring.py
utils.py
SKILL.mdยฉ 2026 Flowy ยท Free and open source
Built for Claude Code ยท Not affiliated with Anthropic