Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Integrate company context and security policies into Claude Code, then automate business workflows—CRM management, social media scraping, email triage, meeting follow-ups, content generation, and more—using a suite of pre-built skills and commands.
npx claudepluginhub casper-studios/casper-marketplace --plugin casperView company overview and client list (Layer 1 context)
Generate LinkedIn posts from source material in your personal writing style
View detailed project information and PRDs (Layer 2 context)
Apply Casper security settings to your Claude Code configuration
View meeting transcripts and decision logs (Layer 3 context)
Browser automation and testing using Vercel's agent-browser CLI with ref-based element targeting
This skill should be used when auditing a codebase for AI agent readiness, or when guiding improvements to make a codebase work well with agentic coding tools. It applies when users ask to evaluate test coverage, file structure, type system usage, dev environment speed, or automated enforcement -- the five pillars that determine how effectively coding agents can operate in a project. Triggers on "audit my codebase", "make this agent-ready", "improve for AI agents", "agent-friendly", or questions about why agents struggle with a codebase.
Social media and web scraping using Apify actors. Use this skill when scraping Twitter/X tweets, Reddit posts, LinkedIn posts, Instagram profiles/posts/reels, Facebook pages/posts/groups, TikTok videos, YouTube content, Google Maps businesses/reviews, contact enrichment (emails/phones from websites), or when auto-detecting URL type to scrape. Triggers on requests to scrape social media, get trending posts, extract business info, find contact details, or extract content from social URLs.
Attio CRM operations for companies, contacts, and notes management. Use this skill when interacting with Attio CRM, searching companies, creating contacts, adding notes, or managing deal records. Triggers on CRM operations, company lookup, contact management, or Attio-related requests.
Casper Studios internal design system for generating consistent, production-grade SaaS UI. Use this skill whenever generating UI code for internal tools, client apps, dashboards, POCs, prototypes, or any visual interface — even quick mockups or artifacts. Apply it any time the output is a React component, page, or layout. If the user mentions "our design system", "Casper style", "match our look", or asks you to build any kind of app or interface, use this skill. Also trigger when restyling or theming existing UI to match Casper's visual language. This skill takes priority over generic frontend-design guidance.
Executes bash commands
Hook triggers when Bash tool is used
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.
Planning, committing, PR management, code polishing, action item extraction, and session handoffs.
Complete collection of 30 Claude Code skills for document processing, development, business productivity, and creative tasks
Personal Corp framework: run your business with AI agents through GitHub
Context-Driven Development plugin that transforms Claude Code into a project management tool with structured workflow: Context → Spec & Plan → Implement
Claude Code skill pack for Fondo (18 skills)
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Data analysis, visualization, and storytelling skill for financial and RevOps contexts
Planning, committing, PR management, code polishing, action item extraction, and session handoffs.
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