Enhance your Claude Code experience with confidence scores, intelligent auto-continuation, and multi-agent planning.
Three powerful plugins that supercharge Claude Code for developers working on any project:
Get real-time confidence scores (0-99%) on every Claude response. Know when to trust the output and when to dig deeper.
Your response from Claude...
---
CZ 87% 🟢
Intelligent auto-continuation based on confidence thresholds. Claude proceeds automatically when confident, asks you when uncertain.
Default: Auto-continues at 70%+ confidence, asks below that threshold.
Transform vague prompts into actionable implementation roadmaps through a multi-agent workflow:
- Research Agent - Analyzes intent and identifies unknowns
- Survey Agent - Generates interactive clarification questions
- Plan Agent - Creates production-grade implementation plan
Any developer using Claude Code to build projects:
- 🚀 Next.js / React developers
- 🐍 Python / FastAPI / Django developers
- 📦 Node.js / TypeScript developers
- 🦀 Rust / Go / any language developers
- 🎨 Full-stack, frontend, backend - works with all stacks
Navigate to your project and run:
cd /path/to/your/project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --projectRestart Claude Code and you're done! ✅
Install once for all projects on your machine:
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bashSee QUICKSTART.md for detailed installation options.
See confidence scores on every response:
/inference-confidenz:status # Check plugin status
/inference-confidenz:configure enable # Enable display
/inference-confidenz:configure disable # Disable display
/inference-confidenz:help # Full documentationScore breakdown:
- 🔴 0-32%: Low confidence (proceed with caution)
- 🟡 33-65%: Medium confidence (verify important details)
- 🟢 66-99%: High confidence (likely accurate)
Intelligent auto-continuation:
/inference-continuez:continuez show # Show current settings
/inference-continuez:confidence 85 # Set threshold to 85%
/inference-continuez:continuez enable # Enable auto-continue
/inference-continuez:continuez disable # Disable auto-continueCustomize threshold:
# Permissive (continues more often)
export INFERENCE_CONTINUEZ_THRESHOLD=70
# Conservative (asks more often)
export INFERENCE_CONTINUEZ_THRESHOLD=90Project-specific settings:
echo '{"confidence_threshold": 85}' > .claude/continuez.config.jsonMulti-agent planning workflow:
/inference-planz:run Build user authentication
/inference-planz:planz <prompt> # Alias
/inference-planz:status # Show configuration
/inference-planz:help # Full documentationExample:
/inference-planz:run Build a REST API for blog posts with authentication
→ Research Agent identifies: auth method, database choice, API design
→ Survey Agent asks: JWT or session-based? PostgreSQL or MongoDB?
→ Plan Agent generates: Step-by-step implementation roadmap
Install plugins directly in your project:
cd your-project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --projectBenefits:
- ✅ Different projects can have different plugin versions
- ✅ Team members get plugins automatically when cloning
- ✅ Project-specific threshold configurations
- ✅ No global configuration conflicts
Files created:
your-project/
├── .claude/
│ ├── plugins/
│ │ └── blerbz-plugins/
│ ├── installed_plugins.json
│ ├── settings.json
│ └── *.config.json (optional)
Install once for all projects:
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bashBenefits:
- ✅ Works across all projects immediately
- ✅ Single installation and configuration
- ✅ Simpler for solo developers
Files created:
~/.claude/
├── plugins/
│ ├── known_marketplaces.json
│ └── installed_plugins.json
└── settings.json
Quick global install:
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bashNow all your projects have confidence scores and auto-continue!
Project-scoped for team collaboration:
cd your-team-project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --project
# Commit to repo
git add .claude/
git commit -m "Add Claude Code plugins"
git pushTeam members clone and immediately get:
- Confidence scores
- Auto-continuation
- Planning workflows
High-stakes project (conservative):
cd ~/banking-app
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --project
echo '{"confidence_threshold": 90}' > .claude/continuez.config.jsonRapid prototyping (permissive):
cd ~/hackathon-project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --project
echo '{"confidence_threshold": 70}' > .claude/continuez.config.jsonAdd plugins to your open source repo:
cd your-open-source-project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --project
# Add to .gitignore
cat >> .gitignore <<'EOF'
# Claude Code plugins
.claude/plugins/**/.git
.claude/*.config.json
EOF
git add .claude/ .gitignore
git commit -m "Add Claude Code plugins for contributors"
git pushContributors get enhanced Claude experience automatically!
cd ~/my-nextjs-app
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --project
# Now ask Claude:
# "Add a new API route with error handling"
# → Get confidence scores on responses
# → Auto-continue if confidence is high
# → Use /inference-planz:run for complex featurescd ~/my-fastapi-project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --project
# Example usage:
/inference-planz:run Build user registration endpoint with email verificationcd ~/my-typescript-api
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --projectcd ~/my-rust-project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --projectWorks with any language or framework - plugins enhance Claude Code itself, not specific to any tech stack.
cd your-project
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --projectThe script auto-updates plugins when re-run.
cd ~/blerbz-plugins
git pull origin main# Project-scoped
./.claude/plugins/blerbz-plugins/uninstall.sh --project
# Global
~/blerbz-plugins/uninstall.sh --global
# Auto-detect
./uninstall.sh./uninstall.sh --help # Show help
./uninstall.sh --dry-run # Preview what will be removed
./uninstall.sh --force # Skip confirmation prompts
./uninstall.sh --project # Uninstall project-scoped only
./uninstall.sh --global # Uninstall global onlyThe uninstall script will:
- Remove plugin entries from
installed_plugins.json - Remove enabled entries from
settings.json - Remove marketplace entry (global only)
- Delete the plugin directory
- Remove any config files (
.claude/*.config.json)
Restart Claude Code after uninstalling to complete the removal
Project-scoped:
.claude/plugins/installed_plugins.json- Plugin registry.claude/settings.json- Enabled plugins.claude/continuez.config.json- Continuez threshold (optional).claude/confidenz.config.json- Confidenz settings (optional)
Global:
~/.claude/plugins/known_marketplaces.json- Marketplace registry~/.claude/plugins/installed_plugins.json- Global plugins~/.claude/settings.json- Global enablement~/.config/inference-continuez/settings.json- Global threshold
Precedence: Project-scoped configs override global configs.
Via command:
/inference-continuez:confidence 85Via environment variable:
export INFERENCE_CONTINUEZ_THRESHOLD=85Via project config:
echo '{"confidence_threshold": 85}' > .claude/continuez.config.jsonRecommendations:
- 70%: Default (balanced, good for most development workflows)
- 80%: Moderate (asks more often, better for production code)
- 90%: Conservative (high-stakes projects, financial/medical systems)
blerbz-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace manifest
├── inference-confidenz/ # Confidence scores
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── hooks/
│ │ ├── hooks.json # Hook definitions
│ │ └── confidence-hook.sh # Hook executor
│ ├── skills/ # Slash command skills
│ ├── config/ # Default configuration
│ └── docs/ # Documentation
├── inference-continuez/ # Auto-continuation
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── hooks/
│ │ └── hooks.json
│ ├── scripts/
│ │ ├── confidence-evaluator.py
│ │ └── settings-manager.py
│ ├── skills/
│ └── TROUBLESHOOTING.md
├── inference-planz/ # Multi-agent planning
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── hooks/
│ │ └── hooks.json
│ ├── scripts/
│ │ ├── planz-orchestrator.py
│ │ └── planz-summary.py
│ ├── skills/
│ ├── tests/ # Unit & integration tests
│ └── examples/
├── quickstart.sh # Installation script
├── uninstall.sh # Uninstallation script
├── QUICKSTART.md # Quick start guide
├── CHANGELOG.md # Version history
└── README.md # This file
Inference Confidenz:
- Intercepts Claude responses
- Analyzes response characteristics
- Calculates confidence score (0-99%)
- Appends score to response output
Inference Continuez:
- Detects stopping points in Claude's work
- Evaluates continuation confidence
- Auto-proceeds if confidence >= threshold
- Asks user when confidence < threshold or operation is risky
Inference Planz:
- Accepts vague/complex task description
- Research Agent analyzes intent
- Survey Agent generates clarification questions
- User answers questions
- Plan Agent creates detailed implementation roadmap
- Restart Claude Code (required after installation)
- Verify installation:
/inference-confidenz:status - Check
installed_plugins.jsonpaths are correct - Check
settings.jsonhas plugins enabled
/inference-confidenz:status
/inference-confidenz:configure enableRestart Claude Code.
/inference-continuez:continuez showCheck threshold setting. Destructive operations are blocked by design.
# Project-scoped
ls .claude/plugins/installed_plugins.json
# Global
ls ~/.claude/plugins/installed_plugins.jsonSee QUICKSTART.md for more troubleshooting tips.
- QUICKSTART.md - Installation guide
- inference-confidenz/docs/ - Confidenz documentation
- inference-continuez/TROUBLESHOOTING.md - Continuez troubleshooting
- inference-planz/examples/ - Planz examples
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
MIT License - see LICENSE file for details.
- GitHub Issues: https://github.com/Blerbz/blerbz-plugins/issues
- Documentation: https://github.com/Blerbz/blerbz-plugins
- Quick Start: QUICKSTART.md
Built with ❤️ by the Blerbz team.
Special thanks to:
- Anthropic for Claude Code
- The Claude Code community
- All contributors and users
Enhance your Claude Code experience today! 🚀
curl -fsSL https://raw.githubusercontent.com/Blerbz/blerbz-plugins/main/quickstart.sh | bash -s -- --project