summoner
NewMulti-agent orchestration skill for complex tasks requiring coordination, decomposition, and quality control. Use for large implementations, refactoring projects, multi-component features, or any work requiring multiple specialized agents.
Overview
Production-Ready Skills for Claude Code
![Status]() ![Version]()  
ClaudeShack is a curated collection of powerful Claude Code skills designed to enhance productivity, ensure code quality, and enable intelligent multi-agent workflows - all while maintaining privacy, minimizing context bloat, and preventing hallucinations.
šÆ Core Principles
- ā¢Privacy First: No PII collection, opt-in telemetry, transparent data handling
- ā¢Minimal Context: Focused context passing to subagents, no full conversation dumps
- ā¢Facts Over Fiction: Documentation verified against code, no hallucinations
- ā¢Read-Only Subagents: Analysis and suggestions only, modifications require user approval
- ā¢Community Driven: GitHub-native feedback, telemetry-informed improvements
š¦ Available Skills
š§ Oracle (Project Memory & Learning)
Project memory system that tracks interactions, learns from corrections, and maintains knowledge across sessions.
Core Features:
- ā¢Session recording and timeline tracking
- ā¢Learn from mistakes and corrections
- ā¢Strategic context injection (KISS - load only what's needed)
- ā¢Pattern detection for automation opportunities
- ā¢Token-efficient knowledge storage
Use When: Remembering project patterns, avoiding repeated mistakes, maintaining institutional knowledge
Location: skills/oracle/
Integrates With: All skills (provides memory and learning foundation)
š”ļø Guardian (Quality Gates & Session Health)
Automatic quality monitoring that spawns focused Haiku agents for code review when degradation detected.
Core Features:
- ā¢Triggers on code volume (>50 lines), repeated errors (3+), file churn (5+ edits)
- ā¢Read-only subagents (analysis only, no modifications)
- ā¢Oracle validation (cross-checks suggestions against known patterns)
- ā¢Learning from feedback (adjusts sensitivity based on acceptance rates)
- ā¢Session health tracking
Use When: Automatic code review, detecting session degradation, task planning for complex work
Location: skills/guardian/
Integrates With: Oracle (+31% suggestion acceptance when active)
š§ Summoner (Multi-Agent Orchestration)
Coordinates multiple specialized agents for complex, multi-component tasks.
Core Features:
- ā¢Task decomposition into atomic subtasks
- ā¢Mission Control Documents (MCD) as single source of truth
- ā¢Parallel agent execution where dependencies allow
- ā¢Quality gates (DRY, CLEAN, SOLID enforcement)
- ā¢Minimal context passing to each agent
Use When: Tasks with 3+ distinct components, multi-phase execution, complex research coordination
Location: skills/summoner/
Integrates With: Oracle (loads patterns), Guardian (validates quality), Wizard (coordinates research)
š Wizard (Documentation Maintenance)
Intelligent documentation that stays accurate through research, fact-checking, and validation.
Core Features:
- ā¢Research-first approach (Oracle + code + conversation history)
- ā¢No-hallucination policy (facts only with references)
- ā¢Spawns read-only research agents via Summoner
- ā¢Guardian validates accuracy
- ā¢Auto-detects outdated documentation
Use When: Updating docs, generating skill documentation, validating accuracy, cross-referencing with code
Location: skills/wizard/
Integrates With: Oracle (knowledge source), Summoner (research coordination), Guardian (doc validation)
šØ Style Master (CSS & Frontend Styling)
Expert in CSS, design systems, and frontend styling.
Core Features:
- ā¢Codebase style analysis and design token extraction
- ā¢Living style guide generation
- ā¢Modern CSS techniques (container queries, custom properties, logical properties)
- ā¢Accessibility compliance (WCAG AA/AAA)
- ā¢Framework expertise (Tailwind, CSS-in-JS, Sass)
Use When: Design systems, visual consistency, CSS guidance, modernizing legacy styles
Location: skills/style-master/
Integrates With: Oracle (remembers style preferences), Summoner (complex refactors)
š Evaluator (Privacy-First Telemetry)
Anonymous, opt-in telemetry and feedback collection for continuous improvement.
Core Features:
- ā¢Opt-in only (disabled by default)
- ā¢No PII collection (anonymous session IDs, daily rotation)
- ā¢Local-first storage (you control what's sent)
- ā¢GitHub-native feedback (issues and projects)
- ā¢Aggregate metrics only (no individual events shared)
Use When: Enabling telemetry to help improve skills, submitting feedback, viewing usage analytics
Location: skills/evaluator/
Integrates With: All skills (tracks usage and acceptance rates)
š Getting Started
Marketplace Installation
Add the ClaudeShack marketplace and install the plugin:
# Add the marketplace
/plugin marketplace add Overlord-Z/ClaudeShack
# Then install the claudeshack plugin from the marketplace
# (Use the /plugin menu to browse and install)All skills included:
- ā¢oracle - Project memory and learning
- ā¢guardian - Quality gates and session health
- ā¢summoner - Multi-agent orchestration
- ā¢wizard - Documentation maintenance (no hallucinations)
- ā¢style-master - CSS and frontend styling
- ā¢evaluator - Privacy-first telemetry
Manual Installation
Clone this repository to use skills locally:
git clone https://github.com/Overlord-Z/ClaudeShack.git
cd ClaudeShackSkills are automatically available when Claude Code runs in this directory.
Using Skills
Skills activate automatically based on context, or you can explicitly request them:
Use oracle to remember this pattern
Use guardian to review this code
Use summoner to coordinate [complex multi-component task]
Use wizard to update the documentation
Use style master to analyze our CSS
Use evaluator to view telemetry summaryInitialize in Your Project
After installing ClaudeShack skills, initialize them in your project:
Option 1: Use the slash command
/init-claudeshackOption 2: Run the initialization script
python /path/to/ClaudeShack/scripts/init_project.pyThis will:
- ā¢Create/update
claude.mdwith ClaudeShack context - ā¢Set up
.oracle/directory structure for project memory - ā¢Create
.guardian/config.jsonwith default thresholds - ā¢Update
.gitignoreto exclude project-specific data
What gets created:
your-project/
āāā claude.md # Updated with ClaudeShack context
āāā .oracle/ # Project memory (gitignored)
ā āāā knowledge/ # Patterns, corrections, gotchas
ā āāā sessions/ # Session logs
ā āāā timeline/ # Project history
āāā .guardian/ # Session health (gitignored)
ā āāā config.json # Guardian thresholds
āāā .gitignore # Updated with ClaudeShack entriesSee MARKETPLACE.md for detailed installation and usage instructions.
ClaudeShack CLI
Manage skills with the marketplace CLI:
# Set up CLI
export CLAUDESHACK_HOME="/path/to/ClaudeShack"
export PATH="$PATH:$CLAUDESHACK_HOME/marketplace/scripts"
# List all skills
claudeshack list
# Get skill info
claudeshack info oracle
# Verify installation
claudeshack verify
# Show version
claudeshack versionSee marketplace/INSTALL.md for complete installation guide.
š Repository Structure
ClaudeShack/
āāā skills/ # All ClaudeShack skills
ā āāā oracle/ # Project memory & learning
ā āāā guardian/ # Quality gates & session health
ā āāā summoner/ # Multi-agent orchestration
ā āāā wizard/ # Documentation maintenance
ā āāā style-master/ # CSS & frontend styling
ā āāā evaluator/ # Privacy-first telemetry
ā āāā documentation-wizard/ # Legacy doc sync (use wizard instead)
āāā .github/ # GitHub configuration
ā āāā ISSUE_TEMPLATE/ # Bug reports, feature requests, feedback
ā āāā PULL_REQUEST_TEMPLATE.md # PR template
āāā README.md # This file
āāā CONTRIBUTING.md # Contribution guidelines
āāā CODE_OF_CONDUCT.md # Community standards
āāā REPO_SETUP_GUIDE.md # Public release setup guideš ļø Skill Development
Want to create your own skill? Check out:
šØ Creating Templates
ClaudeShack skills are extensible through templates. Add your own without modifying core skills.
Guardian Templates
Create custom review templates in skills/guardian/Templates/:
{
"name": "API Security Review",
"description": "Review API endpoints for security issues",
"version": "1.0.0",
"focus_areas": [
"Authentication and authorization",
"Input validation and sanitization",
"Rate limiting",
"SQL injection prevention",
"API key exposure"
],
"oracle_patterns": [
"api-security",
"authentication",
"rate-limiting"
],
"questions": [
"Are all endpoints authenticated?",
"Is input properly validated?",
"Are API keys in environment variables?"
],
"severity_thresholds": {
"critical": ["sql_injection", "auth_bypass", "key_exposure"],
"high": ["missing_auth", "weak_validation"],
"medium": ["missing_rate_limit", "verbose_errors"]
}
}Available Templates:
- ā¢
security_review.json- OWASP Top 10 security review - ā¢
performance_review.json- Performance optimization - ā¢
feature_planning.json- Complex task breakdown - ā¢
session_health.json- Session degradation monitoring
Summoner MCD Templates
Create Mission Control Document templates in skills/summoner/References/:
- ā¢Define standard task structures
- ā¢Include quality gate checklists
- ā¢Specify agent specifications
- ā¢Add context boundaries
Custom Slash Commands
Add your own commands in .claude/commands/:
# /mycommand.md
You are helping with [specific task].
## Context
[Provide context for this command]
## Your Task
1. [Step 1]
2. [Step 2]
## Remember
- [Key principle 1]
- [Key principle 2]See existing commands:
- ā¢
/handoff- Session handoff with context preservation
š Skill Synergies
Skills work better together:
- ā¢Guardian + Oracle: +31% suggestion acceptance rate (Oracle provides validation patterns)
- ā¢Wizard + Summoner: Comprehensive docs through coordinated research agents
- ā¢Wizard + Guardian: Validated documentation (Guardian checks accuracy against code)
- ā¢Style Master + Oracle: Consistent styling through remembered preferences
- ā¢Evaluator: Tracks all skill usage and acceptance rates (opt-in)
Example: Guardian reviews code ā validates against Oracle patterns ā Wizard updates docs ā Style Master ensures consistency ā Evaluator tracks what worked.
š Community Feedback Loop
ClaudeShack improves through continuous learning from real-world usage. Here's how your feedback shapes development:
How It Works
1. You Use Skills
ā
2. Evaluator Tracks (opt-in, anonymous)
- Which skills are used most
- Which suggestions are accepted/rejected
- Session health patterns
- Integration effectiveness
ā
3. Community Submits Feedback
- GitHub Issues (bug reports, feature requests)
- Skill Feedback template (what works, what doesn't)
- Discussions (Q&A, ideas, showcases)
ā
4. Data Analysis
- Aggregate Evaluator metrics (no individual data)
- Identify patterns in feedback
- Guardian threshold tuning needs
- Oracle knowledge gaps
ā
5. Skill Improvements
- Adjust Guardian sensitivity based on acceptance rates
- Add Oracle patterns from common corrections
- New Guardian templates for common reviews
- Summoner MCD refinements
- Documentation clarifications
ā
6. Release Updates
- Changelog with what changed and why
- Performance metrics (before/after)
- Credit to contributors
ā
Back to #1 (continuous improvement)What Gets Improved
From Evaluator Metrics:
- ā¢Guardian thresholds: If suggestion acceptance is low, triggers are too aggressive
- ā¢Oracle patterns: Track which patterns prevent the most errors
- ā¢Skill synergies: Measure which combinations work best
- ā¢Session health: Learn what signals predict degradation
From GitHub Feedback:
- ā¢New templates: Users request reviews for specific domains (database, accessibility, etc.)
- ā¢Documentation gaps: Questions reveal what's unclear
- ā¢Feature requests: What capabilities are missing
- ā¢Bug reports: What's not working as designed
Example Improvements
Real scenario:
Week 1: Evaluator shows Guardian triggers 50 times, but only 20% accepted
ā
Analysis: Triggering too aggressively, users find it annoying
ā
Week 2: Raise lines_threshold from 50 to 75
ā
Week 3: Evaluator shows 40 triggers, 65% accepted (much better!)
ā
Record in Oracle: "lines_threshold=75 optimal for this codebase type"Transparency Reports
We publish quarterly reports showing:
- ā¢Total opt-in users (approximate)
- ā¢Aggregate skill usage statistics
- ā¢Top improvement themes from feedback
- ā¢Changes made and why
- ā¢Performance improvements
Next report: Q2 2025
Your Feedback Matters
Submit Feedback:
- ā¢š Bug Report
- ā¢āØ Feature Request
- ā¢ā Skill Feedback
- ā¢š¬ Join Discussions
Enable Telemetry (opt-in):
# Help improve skills with anonymous usage data
use evaluator to enable telemetry
# View what's collected locally
use evaluator to show summaryWhat We DON'T Collect:
- ā¢ā Your code or file contents
- ā¢ā Project names or paths
- ā¢ā Personal information (name, email, IP)
- ā¢ā Conversation history
- ā¢ā Anything identifiable
What We DO Collect (if you opt in):
- ā¢ā Skill usage counts (which skills, how often)
- ā¢ā Success/failure rates (did the skill work?)
- ā¢ā Suggestion acceptance rates (Guardian only)
- ā¢ā Session health metrics (aggregate patterns)
- ā¢ā Performance timings (how fast skills run)
All data is anonymous, aggregate, and local-first. You control what gets sent.
š Resources
- ā¢Marketplace: MARKETPLACE.md - Full installation and usage guide
- ā¢Official Skills Repository: anthropics/skills
- ā¢Claude Code Documentation: docs.claude.com
- ā¢Community Skills: awesome-claude-skills
š¤ Contributing
This is a personal skill center, but ideas and suggestions are welcome! Feel free to:
- ā¢Open issues for skill ideas
- ā¢Suggest improvements to existing skills
- ā¢Share your own skill implementations
š License
This repository contains custom skills. See individual skill directories for specific licensing.
Built with ā¤ļø for the Claude Code community
Install & Usage
mkdir -p .claude/skillsmkdir -p .claude/skills && curl -o .claude/skills/summoner.md https://raw.githubusercontent.com/Overlord-Z/ClaudeShack/main/SKILL.md/summonerFrequently Asked Questions
What is summoner?
Multi-agent orchestration skill for complex tasks requiring coordination, decomposition, and quality control. Use for large implementations, refactoring projects, multi-component features, or any work requiring multiple specialized agents.
How to install summoner?
To install summoner, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /summoner.
What is summoner best for?
summoner is a community categorized under General. It is designed for: refactoring, agent. Created by Overlord-Z.