[Automation Advisor](./automation-advisor/) β NEW
Quantified ROI analysis for automation decisions with voice-enabled web interface. Analytical precision design.
Features:
- π 8 structured questions transforming intuition into data
- π° Break-even analysis with time/frequency scoring
- ποΈ Voice input via Groq Whisper transcription
- π£οΈ Browser TTS for voice output
- π¨ Sophisticated cream theme with editorial typography
- π± Multi-user session support
- β¨οΈ Keyboard-first interaction design
Quick Start:
```bash
# Install dependencies
pip install flask groq python-dotenv
# Add Groq API key (optional, for voice)
export GROQ_API_KEY="your-key"
# Start web server
python3 server_web.py
# Open browser
open http://localhost:8080
```
Use when: Deciding whether to automate repetitive tasks - transforms "this feels tedious" into quantified recommendations with clear next steps.
---
[CodexBar](./codexbar/) β NEW
Monitor AI provider usage limits, quotas, and costs using CodexBar CLI. Track Codex, Claude, Cursor, Gemini, and 10+ other AI services.
Features:
- π Real-time usage monitoring for 13+ AI providers
- π° Cost tracking from local logs (Codex, Claude)
- π Session and weekly quota meters with reset countdowns
- π¦ Provider status and incident detection
- π Privacy-first: on-device parsing only
- π₯οΈ Works on macOS (menu bar app + CLI) and Linux (CLI only)
Quick Start:
```bash
# Install CodexBar
brew install --cask steipete/tap/codexbar
# Check usage
codexbar status
# Check costs
codexbar cost --provider codex
codexbar cost --provider claude
```
Use when: Monitoring AI provider quotas, tracking spending, checking session/weekly limits, or verifying provider status.
---
[Decision Toolkit](./decision-toolkit/) β NEW
Generate structured decision-making tools β step-by-step guides, bias checkers, scenario matrices, and interactive dashboards.
Features:
- π― 7 decision frameworks (First Principles, 10-10-10, Pre-Mortem, Regret Minimization, etc.)
- π§ Comprehensive bias encyclopedia (20+ cognitive biases with counter-questions)
- π Interactive HTML wizards with Agency neobrutalism styling
- π Markdown export with decision records
- ποΈ Voice summary templates for Orpheus TTS
- βοΈ Opportunity cost calculators and scenario matrices
Frameworks Included:
- First Principles Thinking (5 core questions)
- Opportunity Cost Calculator
- Scenario Matrix with probability calibration
- Pre-Mortem Analysis
- 10-10-10 Framework (Suzy Welch)
- Regret Minimization (Jeff Bezos method)
- Weighted Decision Matrix
Quick Start:
```bash
# Copy to skills directory
cp -r decision-toolkit ~/.claude/skills/
# Invoke for a decision
/decision-toolkit "Should I switch to a new tech stack?"
```
Use when: Facing significant choices requiring systematic analysis β career moves, technology decisions, major purchases, strategic pivots.
---
[Fathom](./fathom/) β NEW
Fetch meetings, transcripts, summaries, action items, and download video recordings from Fathom API.
Features:
- π List recent meetings with recording IDs
- π Fetch full transcripts with speaker attribution
- π€ AI-generated meeting summaries from Fathom
- β
Action items with assignees and completion status
- π₯ Participant info from calendar invites
- π Links to Fathom recordings and share URLs
- π₯ Download video recordings via M3U8 streaming
- β Automatic video validation with retry mechanism
- π¬ Optional integration with transcript-analyzer skill
Quick Start:
```bash
# Install dependencies
pip install requests python-dotenv
# Requires ffmpeg for video downloads
brew install ffmpeg # macOS
# or: apt-get install ffmpeg # Linux
# Add API key
echo "FATHOM_API_KEY=your-key" > ~/.claude/skills/fathom/scripts/.env
#