Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Automate full dev lifecycle: summarize branches and uncommitted work, generate conventional commits, create/triage GitHub PRs, polish code per guidelines, safely upgrade deps with pnpm/uv, extract action items from transcripts/Slack into Linear tickets, and produce handoff docs.
npx claudepluginhub casper-studios/casper-marketplace --plugin dev-toolkitAnalyze and upgrade dependencies with breaking change detection. Use when updating frontend (pnpm) or backend (uv) dependencies.
Generate commit messages following conventional commits and commit staged changes. Use when creating commits or when user invokes /commit.
Create handoff documentation for work-in-progress sessions. Use when handing off work to another agent to supplement history compaction and and progress summarization.
Extract action items from a Fireflies call transcript. Default extracts for ALL attendees; specify a target person to extract only theirs. Use when the user wants to find commitments, assignments, and follow-ups from a recorded meeting.
Execute approved implementation plans from scratchpad. Use when implementing a previously planned feature.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Git workflow automation: conventional commits with branch protection, ticket tracking, and semantic correlation
Coding workflow skills: intelligent commits, push & PR, branch cleanup, CLAUDE.md maintenance, README generation, changelog creation, README updating, and GitHub Actions setup
Streamline your git workflow with simple commands for committing, pushing, and creating pull requests
Commands for Git operations, commits, and PRs
Focused development mode - clarify, plan, verify, detect drift
Streamline your git workflow with simple commands for committing, pushing, and creating pull requests
Data analysis, visualization, and storytelling skill for financial and RevOps contexts
Company context and secure coding environment for Casper Studios
Idiomatic usage patterns for React, TanStack Table, and better-all.
A collection of Claude Code plugins for business automation, data analysis, and productivity.
| Plugin | Description |
|---|---|
| casper | Context management for consulting projects - company info, project PRDs, meeting transcripts |
| data-analysis | Data analysis and storytelling for financial and RevOps contexts |
| dev-toolkit | Workflow automation skills for planning, commits, PR management, and code polishing |
| stack-patterns | Idiomatic usage patterns for React, TanStack Table, and better-all |
# Install the skills CLI, then add everything from the marketplace
npx skills add https://github.com/Casper-Studios/casper-marketplace --all -g
The --all flag is idempotent — it installs new skills and overwrites existing ones. The CLI handles cloning, diffing, and symlinking internally.
npx skills add https://github.com/Casper-Studios/casper-marketplace --skill commit
npx skills add https://github.com/Casper-Studios/casper-marketplace --skill pr-comments
# Add the Casper Studios marketplace
/plugin marketplace add Casper-Studios/casper-marketplace
# Install a specific plugin
/plugin install casper
/plugin install data-analysis
/plugin install dev-toolkit
/plugin install stack-patterns
Add sync-skills.sh as a Claude Code hook to keep all marketplace plugins up-to-date automatically:
// ~/.claude/settings.json
{
"hooks": {
"SessionStart": [
{
"matcher": "startup",
"hooks": [
{
"type": "command",
"command": "bash /path/to/sync-skills.sh",
"timeout": 60,
"async": true
}
]
}
]
}
}
Each plugin follows the standard Claude Code plugin structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/ # Skills with SKILL.md and references/
├── commands/ # Slash commands
├── scripts/ # Utility scripts
└── README.md # Plugin documentation
To add a new plugin:
.claude-plugin/plugin.json manifestMIT