Reusable Claude Code components — rules, skills, MCP configs, and plugins — deployed to projects via manual copy or setup script.
# 1. Add marketplaces (one-time)
claude plugin marketplace add tomlupo/qute-code-kit
claude plugin marketplace add anthropics/claude-code-plugins
claude plugin marketplace add anthropics/example-agent-skills
claude plugin marketplace add every-ai-dev/compound-engineering
# 2. Install plugins (one-time)
claude plugin install qute-essentials@qute-marketplace
claude plugin install context7@claude-plugins-official
claude plugin install superpowers@claude-plugins-official
claude plugin install compound-engineering@every-marketplace
# 3. Copy global settings
cp claude/settings/global-generic.json ~ /.claude/settings.json
# 4. Set up a project (pick one)
./scripts/setup-project.sh ~ /project --bundle quant --init # script
cp claude/rules/general-rules.md ~ /project/.claude/rules/ # or manual
claude/
├── rules/ Path-scoped coding guidelines
├── skills/ Domain skills (copy to projects)
├── mcp/ MCP server configs
├── bundles/ Bundle manifests (minimal, quant, webdev)
├── root-files/ CLAUDE.md + AGENTS.md templates
├── settings/ Project settings profiles
├── commands/ Kit management commands
└── hooks/ Reusable hook scripts
plugins/
└── qute-essentials/ Merged plugin: hooks + universal skills
docs/
├── playbooks/ Step-by-step workflows
├── cheatsheets/ Quick reference lookups
├── prompts/ Copy-paste prompts for Claude
└── resources.md External tools and links
scripts/ Setup and build tooling
templates/ pyproject.toml templates
project-templates/ Generated reference outputs
Bundle
Rules
MCP Servers
Use for
minimal
general, work-org, context-mgmt, docs
—
Any project
quant
minimal + python, datasets
firecrawl, postgres
Data science, ML
webdev
minimal + typescript
vercel, playwright, chrome-devtools, docker, figma
Web apps
qute-essentials — one install for all kit hooks and universal skills:
Type
Components
Hooks
forced-eval, ruff-formatter, doc-reminder, skill-use-logger, notifications
Guards
destructive, malware, secrets, audit, lakera, langfuse
Skills
commits, worktrees, handoff, pickup, decision, readme, guard, config, ship, ship-setup, audit, test, gbu, wtf
claude plugin install qute-essentials@qute-marketplace
Universal (qute-essentials plugin)
Skill
Invocation
Notes
generating-commit-messages
automatic
Conventional commits
worktrees
/worktrees
Git worktree management
handoff
/handoff
Session-end: captures context, ADRs, TASKS
pickup
/pickup
Session-start: loads handoff, audits ADR health
decision
/decision [--supersedes NNNN] <title>
Record ADRs with auto-numbering
readme
/readme
README generation (forked context)
guard
/guard [<name> <on|off>]
Toggle any of 6 security guards
config
/config [--set key=value]
Plugin notification config
ship-setup
/ship-setup
One-time commitizen + CHANGELOG setup
ship
/ship
Bump version, tag, update CHANGELOG
audit
/audit
Dependency CVE scan (pip-audit)
test
/test [filter]
Run test suite, interpret failures
gbu
/gbu
Good/Bad/Ugly structured review
wtf
/wtf
Acknowledge failure, retry immediately
Research & Data (quant bundle)
Skill
Invocation
paper-reading
/paper-reading [path]
investment-research
/investment-research
investment-research-formal
/investment-research-formal
investment-research-dashboard
/investment-research-dashboard
market-datasets
/market-datasets [ticker]
analizy-pl-data
/analizy-pl-data
sql-patterns
/sql-patterns
qrd
/qrd
pipeline-docs
/pipeline-docs
python-patterns
model-invocable
image-generator
/image-generator
llm-external-review
/llm-external-review
code-quality
/code-quality [path] [--quick|--deep]
Web Development (webdev bundle)
Skill
Invocation
ui-ux-pro-max
/ui-ux-pro-max
code-quality
/code-quality [path] [--quick|--deep]
Skill
Invocation
gist-report
/gist-report (includes transcript upload)
excalidraw
/excalidraw
Skill
Invocation
skill-assessment
/skill-assessment [skill-name | all]
debug-session
/debug-session [symptom]
code-quality
/code-quality [path] [--quick|--deep]
Standalone (not in bundles)
Skill
Notes
bird-twitter
Twitter/X posting
brand-dm-evo
Project-specific branding
brand-rockbridge
Project-specific branding
Agent
Trigger
Purpose
research-synthesizer
"synthesize these papers", multiple sources to compare
Cross-reference findings, identify consensus/conflicts
data-pipeline-debugger
"data looks wrong", unexpected pipeline output
Trace data flow, isolate the transformation stage where data breaks
Server
Bundle
Auth
firecrawl
quant
FIRECRAWL_API_KEY
postgres
quant
POSTGRES_CONNECTION_STRING
vercel
webdev
—
chrome-devtools
webdev
—
playwright
webdev
—
docker
webdev
—
figma
webdev
FIGMA_ACCESS_TOKEN
Rule
Applies to
Bundle
general-rules
all files
minimal
work-organization
all files
minimal
context-management
all files
minimal
documentation
docs/**, **/*.md
minimal
decisions
docs/decisions/**
minimal
python-rules
**/*.py
quant
typescript-rules
**/*.{ts,tsx,js,jsx}
webdev
datasets
data/**, docs/datasets/**
quant
Type
Location
Purpose
workflow-qute
docs/playbooks/
Full dev session lifecycle with qute-essentials
workflow-gstack
docs/playbooks/
Release workflow using gstack /ship
Playbooks
docs/playbooks/
All step-by-step workflows
Cheatsheets
docs/cheatsheets/
Quick reference lookups
Prompts
docs/prompts/
Copy-paste into Claude
Resources
docs/resources.md
External tools and links
gstack — virtual engineering team for Claude Code. 23 specialized roles (CEO, designer, QA lead, security officer, etc.) as slash-command skills. Pairs well with qute-essentials: guards and hooks run silently while gstack agents do the work.
Key gstack skills:
Skill
Purpose
/ship
Full release workflow: test triage, coverage audit, version bump, CHANGELOG, PR
/review
Multi-specialist parallel code review
/plan
Break a feature into agent-executable tasks
/dispatcher
Route tasks to background agents
# Install
claude plugin install gstack@claude-plugins-official # or clone to ~/.claude/skills/gstack/
See docs/playbooks/workflow-gstack.md for the ship workflow.
# Audit kit consistency
/audit-kit
# Audit a project's setup
/check-setup ~ /project
# Rebuild marketplace manifest
python scripts/build-marketplace.py
# Regenerate project templates
/refresh-templates