Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub nategarelik/claude-ultra-pluginUltra-capable Claude Code workflow with safety hooks, specialist agents, and productivity commands
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 84 marketplace plugins, 192 local specialized agents, and 156 local skills - optimized for granular installation and minimal token usage
Share bugs, ideas, or general feedback.
Ultra-capable Claude Code workflow with safety hooks, specialist agents, and productivity commands.
v1.1.0 - All hooks now use Claude Code spec-compliant output formats (Dec 2025).
# Add the marketplace
/plugin marketplace add nategarelik/claude-ultra-plugin
# Install the plugin
/plugin install claude-ultra@claude-ultra-marketplace
# Run setup to verify
/claude-ultra:setup
git clone https://github.com/nategarelik/claude-ultra-plugin
claude --plugin-dir ./claude-ultra-plugin
| Command | Description |
|---|---|
/claude-ultra:setup | Initialize and verify configuration |
/claude-ultra:mode | Switch autonomy modes |
/claude-ultra:verify | Force web verification of claims |
/claude-ultra:plan | Enter planning mode for complex tasks |
/claude-ultra:fix | Systematic bug fix workflow |
/claude-ultra:parallel | Multi-agent parallel execution |
/claude-ultra:review | Code review workflow |
/claude-ultra:status | Show session status and token usage |
/claude-ultra:compact | Compress context when running low |
/claude-ultra:rollback | Git rollback helper |
| Agent | Purpose |
|---|---|
| @architect | System design and architecture decisions |
| @code-reviewer | Thorough code review |
| @debugger | Root cause analysis |
| @task-worker | Parallel file operations (fast) |
| @explore | Codebase search and discovery |
| @security-auditor | Security vulnerability checks |
| @docs-generator | Documentation generation |
| @performance-optimizer | Performance analysis |
| @dependency-auditor | Dependency analysis |
All hooks use Claude Code spec-compliant output formats:
| Event | Hook | Purpose | Output Format |
|---|---|---|---|
| SessionStart | session-initializer | Load session context | hookSpecificOutput.additionalContext |
| PreToolUse (Bash) | safety-gate | Block dangerous commands | permissionDecision: "deny" |
| PreToolUse (Bash) | git-safety-net | Prevent destructive git ops | permissionDecision: "deny"/"ask" |
| PreToolUse (*) | token-budget-guardian | Monitor context usage | permissionDecision |
| PostToolUse (Edit/Write) | post-edit-format | Auto-format edited files | additionalContext |
| PreCompact | context-compression-guard | Archive before compression | stdout |
| SubagentStop | quality-gate | Validate subagent output | decision: "block" + reason |
| Stop | session-archiver | Archive session to memory bank | stdout |
Per official Claude Code docs:
# PreToolUse - Use permissionDecision
{
"hookSpecificOutput": {
"hookEventName": "PreToolUse",
"permissionDecision": "deny", # or "allow" or "ask"
"permissionDecisionReason": "Reason shown to Claude"
}
}
# PostToolUse - Use additionalContext
{
"hookSpecificOutput": {
"hookEventName": "PostToolUse",
"additionalContext": "Info for Claude"
}
}
# SessionStart - additionalContext only
{
"hookSpecificOutput": {
"hookEventName": "SessionStart",
"additionalContext": "Context injected at start"
}
}
# Stop/SubagentStop - decision/reason at TOP LEVEL
{
"decision": "block",
"reason": "Reason for continuing"
}
git status/claude-ultra:plan for complex tasks/claude-ultra:mode autonomous # Full autonomy
/claude-ultra:mode collaborative # Check in at decision points (default)
/claude-ultra:mode supervised # Step-by-step approval
settings.example.json - Optimized settings with all hooksCLAUDE.example.md - Slim 66-line system instructionsWorks with: superpowers, context7, greptile, LSP plugins
MIT