Decision intelligence for product teams. Weigh what matters.
Tarazu helps product teams prioritize ideas, compare tradeoffs, capture context, and generate explainable recommendations with structured frameworks like RICE — powered by Claude.
| Feature | Description |
|---|---|
| Normalized RICE Scoring | Slider-based input for each dimension on a 1–100 scale with real-time score calculation |
| Priority Matrix | Canvas-rendered Effort vs. Impact scatter plot with labeled quadrants |
| AI Strategy Advisor | One-click backlog analysis via Claude Opus — returns top priority, quick win, risk flag, sprint plan, and strategic insight |
| AI Score Suggestions | Per-candidate scoring via Claude Sonnet, grounded in product context and prior feedback |
| Persistent Storage | Features save across sessions via localStorage and cloud sync |
| Responsive Shell | Three-panel desktop layout (left rail / center canvas / right rail) collapses to a two-column tablet overlay and a bottom-tab mobile layout via matchMedia |
Product managers spend 4–6 hours per sprint planning cycle on prioritization — most of it in spreadsheets. Tarazu replaces that workflow with a purpose-built decision system that enforces RICE discipline, visualizes tradeoffs, and adds AI analysis that would otherwise require a senior PM or consultant.
It sits at the intersection of product management domain expertise and AI engineering — the exact skillset I bring to PM and technical leadership roles.
| Layer | Choice | Why |
|---|---|---|
| Frontend | React + Next.js | Component model, fast builds, file-based routing |
| Visualization | Canvas 2D API | No library dependency; native DPI scaling, custom hit-testing |
| AI — Analysis | Anthropic Claude Opus 4.7 | Structured JSON output for backlog-level strategic analysis (configurable via ANTHROPIC_MODEL_ANALYSIS) |
| AI — Scoring | Anthropic Claude Sonnet 4.6 | Fast per-candidate RICE score suggestions (configurable via ANTHROPIC_MODEL_SUGGESTIONS) |
| Auth & Data | Clerk + Supabase | Hosted auth with cloud-synced settings and feedback |
| Deploy | Vercel | Zero-config with serverless API routes for the Claude proxy |
- Centralized scoring via
useScoredhook — RICE calculated once per state change, consumed by all components - Memoized canvas positions — hover/selection interactions don't trigger position recalculation
- Responsive breakpoint via
window.matchMediahook — not CSS-in-JS or broken inline media queries - Dual-mode AI — live Claude analysis via serverless proxy when available; smart demo fallback when not
- Serverless proxies — API keys stay server-side in
app/api/analyze/route.jsandapp/api/suggest-scores/route.js
git clone https://github.com/kristenmartino/Tarazu.git
cd Tarazu
npm install
npm run dev- Copy
.env.exampleto.env.local - Add your Anthropic API key (and any optional Clerk / Supabase / GA values)
- Start the dev server:
npm run dev
Next.js serves both the app and the /api/* routes from a single process at http://localhost:3000.
Deploy to Vercel for automatic serverless function support (auto-detects the /api directory).
Without the API key, the app runs in demo mode with locally-generated analysis.
Add ANTHROPIC_API_KEY as an environment variable in Vercel's dashboard.
Tarazu was built as part of a portfolio demonstrating PM + AI capabilities. The full PRD — including competitive analysis, requirements with acceptance criteria, technical architecture, risk mitigations, and launch plan — is available in docs/Tarazu_PRD.pdf. The complete brand system and product redesign spec lives in tarazu-brand-system-spec.md.
Built by Kristen Martino · Product & AI Strategist · MS Business Analytics & AI, UT Dallas