create-handoff

๐Ÿ‘ป Casper Studio Claude Code Marketplace

์„ค์น˜
CLI
npx skills add https://github.com/casper-studios/casper-marketplace --skill create-handoff

CLI๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์ด ์Šคํ‚ฌ์„ ์„ค์น˜ํ•˜๊ณ  ์ž‘์—… ๊ณต๊ฐ„์—์„œ SKILL.md ์›Œํฌํ”Œ๋กœ ์‚ฌ์šฉ์„ ์‹œ์ž‘ํ•˜์„ธ์š”.

์ตœ๊ทผ ์—…๋ฐ์ดํŠธ: 4/24/2026

Casper Studios

A collection of Claude Code plugins for business automation, data analysis, and productivity.

Available Plugins

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

Installation

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

Install a specific skill

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

Install via /plugin command

# 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

Auto-sync on session start

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
          }
        ]
      }
    ]
  }
}

Plugin Structure

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

Contributing

To add a new plugin:

  1. Create a new directory at the root level
  2. Add the required .claude-plugin/plugin.json manifest
  3. Add commands, scripts, and documentation
  4. Submit a PR

License

MIT