Custom configurations and skills for Claude Code.
- Status Line - Enhanced status bar with context tracking
- Skills - Reusable prompt templates for common workflows
A custom status line that shows:
- Model name (with accent color)
- Current directory
- Git branch with uncommitted file count
- Sync status with upstream (ahead/behind/synced + last fetch time)
- Visual context bar showing token usage percentage
- Error count from project's error database (optional)
- Last user message on second line
Claude Opus 4.5 | 📁myproject | 🔀main (2 files uncommitted, synced 5m ago) | ▄░░░░░░░░░ 12% of 200k tokens
💬 can you fix the login bug
- Copy
context-bar.shto~/.claude/:
cp context-bar.sh ~/.claude/context-bar.sh
chmod +x ~/.claude/context-bar.sh- Add the status line configuration to your
~/.claude/settings.json:
{
"statusLine": {
"command": "/path/to/your/home/.claude/context-bar.sh",
"type": "command"
}
}Replace /path/to/your/home with your actual home directory path (e.g., /Users/yourname on macOS or /home/yourname on Linux).
The script supports 10 color themes. Change the COLOR variable at the top of the script:
gray(monochrome)orangeblue(default)tealgreenlavenderrosegoldslatecyan
jq- for parsing JSONgit- for repository status- Bash 4+
Skills are reusable prompt templates that can be invoked in Claude Code. Place them in ~/.claude/commands/ or ~/.claude/skills/.
Self-reinforcing code quality workflow with dual-group adversarial review.
Requires: Codex MCP server configured in your
settings.json:"mcpServers": { "codex": { "command": "npx", "args": ["@anthropic/codex-mcp"] } }
Launches 6 parallel agents (3 Opus + 3 Codex) to review your code from different angles:
- Bugs & Logic - Edge cases, race conditions, null handling
- Security - Injection, XSS, auth bypass, input validation
- Performance/UX/QA - N+1 queries, loading states, accessibility
The workflow:
- Both groups review the same code independently
- Findings are displayed side-by-side
- Consensus issues (found by both) are prioritized
- All issues are fixed in severity order
# Review recent changes
/reinforce
# Review specific files
/reinforce src/api/auth.ts src/components/Login.tsxSenior staff-level architectural thinking framework.
A 15-step analysis process for planning systems, evaluating changes, or analyzing problems:
- Clarify the Problem
- Explore the Design Space (3-5 distinct approaches)
- Tradeoff Analysis
- Failure-First Thinking (top 10 failure modes)
- Boundaries & Invariants
- Observability & Control
- Reversibility & Entropy Control
- Adversarial Review
- AI Delegation Assessment
- Decision Summary
- Dependency Mapping
- Migration & Rollout Strategy
- Security Threat Modeling (STRIDE)
- Blast Radius Analysis
- Operational Runbook Preview
# Analyze a system design
/thinking-critically "Add real-time notifications to the dashboard"
# Evaluate a proposed change
/thinking-critically "Migrate from PostgreSQL to MongoDB"Copy the skill files to your Claude Code commands directory:
cp skills/reinforce.md ~/.claude/commands/reinforce.md
cp skills/thinking-critically.md ~/.claude/commands/thinking-critically.mdOr for the skills directory structure:
mkdir -p ~/.claude/skills/thinking-critically
cp skills/thinking-critically.md ~/.claude/skills/thinking-critically/SKILL.mdMIT