Agent skill

specstory-project-stats

Fetch project statistics from SpecStory Cloud. Run when user says "get project stats", "show SpecStory stats", "project statistics", "how many sessions", or "SpecStory metrics".

majiayu000534★ · 1 repos on radarProfile →
claude-coderead-onlyMIT
Install
npx skills add majiayu000/claude-skill-registry --skill specstory-project-stats --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Version: 1.0.0
Declared author: SpecStory, Inc.
Allowed tools: Bash(node*)
Path: skills/analysis/specstory-project-stats/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# SpecStory Project Stats Fetches project statistics from SpecStory's cloud platform, showing contributor counts, session activity, and other project metrics. ## How It Works 1. **Identifies** the project via `.specstory/.project.json`, git remote, or folder name 2. **Calls** the SpecStory Cloud API 3. **Returns** project statistics in JSON format 4. **Presents** the data in a readable summary ## Prerequisites - Project must be synced to SpecStory Cloud - Node.js must be available to run the script ## Usage ### Slash Command | User says | Action | |-----------|--------| | `/specstory-project-stats` | Fetch stats for current project | | `/specstory-project-stats` | Same as above (no arguments needed) | ### Direct Script Usage ```bash # Fetch stats for current project node skills/specstory-project-stats/scripts/get-stats.js # With custom API endpoint (for development) SPECSTORY_API_URL=http://localhost:5173 node skills/specstory-project-stats/scripts/get-stats.js ``` ## Output The script outputs JSON with project statistics: ```json { "project_id": "specstoryai/agent-skills", "sessions": { "total": 156, "last_30_days": 47, "last_7_days": 12 }, "contributors": { "total": 5, "active_la

What's inside
Steps it walks through
  1. How It Works
  2. Prerequisites
  3. Usage
  4. Slash Command
  5. Direct Script Usage
  6. Output
  7. Project ID Resolution
  8. Error Handling
  9. Present Results to User
  10. Example Response (success)
  11. Example Response (404 error)
  12. Environment Variables
  13. Notes
Ships with 1 file
  • metadata.json
Commands it runs
Fetch stats for current project
node skills/specstory-project-stats/scripts/get-stats.js
With custom API endpoint (for development)
More from claude-skill-registry
All skills →
About this skill
What does the specstory-project-stats skill do?

Fetch project statistics from SpecStory Cloud. Run when user says "get project stats", "show SpecStory stats", "project statistics", "how many sessions", or "SpecStory metrics".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill specstory-project-stats --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going