Complete AI-powered development workflow: BMAD document generation (Brief/PRD/Architecture/Epics), workflow orchestration (plan/work/review), 16 specialized agents, voice announcements, and vibe-check quality gates. From idea to production in 1 week.
You can install this plugin from any of these themed marketplaces. Choose one, add it as a marketplace, then install the plugin.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install titanium-toolkit@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/titanium-toolkit.json
Step 2: Install the plugin
/plugin install titanium-toolkit@titanium-toolkit
Professional Claude Code plugins from Titanium Computing
A curated marketplace of Claude Code plugins designed for professional AI-powered development workflows.
Complete AI development orchestration system
Transform Claude into an AI development team with 17 specialized agents, 10 comprehensive skills, and complete BMAD planning workflows.
Key Features:
/catchup
→ Full Titanium Toolkit Documentation
Version: 2.1.3
/plugin marketplace add webdevtodayjason/titanium-plugins
/plugin install titanium-toolkit@webdevtodayjason/titanium-plugins
Close and reopen Claude Code to activate the plugin.
# Check MCP servers loaded
/mcp
# Should see: plugin:titanium-toolkit:tt
# Check agents available
@api-developer
# Should show 17 agents
# Read orchestration guide
/titanium:orchestration-guide
Create ~/.env
with:
# Required for BMAD document generation
ANTHROPIC_API_KEY=sk-ant-your-key-here
# Optional: Voice announcements
ELEVENLABS_API_KEY=sk_your-key-here
# Optional: Voice summaries
OPENAI_API_KEY=sk-proj-your-key-here
Get API keys:
# vibe-check - AI quality validation (highly recommended)
claude mcp add vibe-check --scope user --transport stdio -- npx -y @pv-bhat/vibe-check-mcp start --stdio
# Create ~/.vibe-check/.env with at least one key:
mkdir -p ~/.vibe-check
echo 'GEMINI_API_KEY=your-key-here' >> ~/.vibe-check/.env
For vibe-check, add ONE of these to ~/.vibe-check/.env
:
GEMINI_API_KEY
(recommended)OPENAI_API_KEY
OPENROUTER_API_KEY
/bmad:start
Creates:
Duration: 30-45 minutes | Cost: ~$0.15
# 1. Create implementation plan
/titanium:plan bmad-backlog/epics/EPIC-001-foundation.md
# 2. Execute the plan
/titanium:work
# 3. Quality review
/titanium:review
Duration: 2-6 hours | Cost: ~$0.10 per epic
/bmad:start → /titanium:plan → /titanium:work → /titanium:review
(45 min) (2 min) (4 hours) (15 min)
Total: 1 day from idea to reviewed, tested code
Titanium Toolkit uses a three-layer architecture:
Layer 1: Orchestrator (Claude)
Layer 2: Subagents (Separate Context Windows)
Layer 3: Tools & Knowledge
sequenceDiagram
participant User
participant Claude
participant PM as @product-manager
participant Arch as @architect
participant MCP as tt MCP Server
User->>Claude: /bmad:start
Claude->>User: What's your project idea?
User->>Claude: Community platform for women hackers
Claude->>PM: Task(Generate brief)
PM->>MCP: bmad_generator(brief)
MCP-->>PM: product-brief.md created
PM-->>Claude: Brief complete
Claude->>PM: Task(Generate PRD)
PM->>MCP: bmad_generator(prd)
MCP-->>PM: prd.md created
PM-->>Claude: PRD complete (5 epics)
Claude->>Arch: Task(Generate architecture)
Arch->>MCP: bmad_generator(architecture)
MCP-->>Arch: architecture.md created
Arch-->>Claude: Architecture complete
Note over Claude,PM: Generate 5 epics (delegated to PM)
Claude->>User: Complete! 5 epics, 47 stories ready
plugins/your-plugin-name/
plugins/your-plugin-name/
├── .claude-plugin/
│ ├── plugin.json # Metadata
│ └── mcp.json # MCP servers (optional)
├── commands/ # Slash commands
├── agents/ # Specialized agents
├── skills/ # Domain knowledge
├── hooks/ # Event hooks
└── README.md # Documentation
Created by: Jason Brashear / Titanium Computing
Built upon and inspired by:
Special thanks to:
MIT License
Copyright (c) 2025 Jason Brashear / Titanium Computing
See LICENSE file for details.
2.1.3