agent-browser
Browser automation using Vercel's agent-browser CLI. Use when you need to interact with web pages, fill forms, take screenshots, or scrape data. Alternative to…
Show the AI-ranked backlog of Dex system-improvement ideas. Use when the user says 'show my Dex ideas', 'what's in the backlog', 'what should we build next'. Not for workshopping one idea into a plan; use `dex-improve`. Not for discovering existing features; use `dex-level-up`.
$ npx -y skills add davekilleen/Dex --skill dex-backlog --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/dex-backlogContext preview
The summary Claude sees to decide when to auto-load this skill.
Show the AI-ranked backlog of Dex system-improvement ideas. Use when the user says 'show my Dex ideas', 'what's in the backlog', 'what should we build next'. Not for workshopping one idea into a plan; use `dex-improve`. Not for discovering existing features; use `dex-level-up`.
name: dex-backlog description: "Show the AI-ranked backlog of Dex system-improvement ideas. Use when the user says 'show my Dex ideas', 'what's in the backlog', 'what should we build next'. Not for workshopping one idea into a plan; use `dex-improve`. Not for discovering existing features; use `dex-level-up`."
**In plain English:** AI-powered ranking of your Dex system improvement backlog based on current system state. Shows you what to build next.
**When to use it:**
**How to run it:**
/dex-backlog # Full review with re-ranking
---
1. **Load context** - Read system state, usage patterns, learnings 2. **Score ideas** - Calculate 5-dimension scores for each idea 3. **Re-rank backlog** - Sort by weighted total score 4. **Update file** - Write new rankings to `System/Dex_Backlog.md` 5. **Present top ideas** - Show top 5 with "Why now?" justification 6. **Offer next steps** - Workshop, implement, or defer
---
Read these files to understand current system state:
System/Dex_Backlog.md # All ideas to score System/usage_log.md # Feature adoption patterns System/user-profile.yaml # Role, preferences CLAUDE.md # Current capabilities
System/Session_Learnings/ # Recent pain points (last 30 days) .claude/commands/ # Available commands core/mcp/ # MCP integrations 06-Resources/Learnings/ # Captured patterns
Build a context dictionary with:
---
For every active idea in the backlog, calculate 5 dimension scores.
Before scoring ANY idea, validate it's actually implementable in Cursor:
**What Cursor/Terminal CAN do:**
**What Cursor/Terminal CANNOT do:**
**If idea requires something from the CANNOT list → Set all scores to 0 and flag as "Not feasible in Cursor"**
---
After feasibility check passes, score on 5 dimensions:
**Question:** How much would this improve daily workflow?
**Scoring logic:**
Base score: 50 +20 if matches_recent_pain_points(): - Search System/Session_Learnings/ for mentions of this issue - Keywords from idea title/description appear in learnings - Problem stated explicitly in recent notes +15 if affects_daily_workflow(): - Touches commands used >3x per week (from usage_log) - Modifies core files (03-Tasks/Tasks.md, daily plans, person pages) - Impacts repetitive actions +15 if has_compound_value(): - Enables other ideas in backlog - Reduces technical debt - Creates reusable patterns - Unblocks multiple workflows Max: 100
**Examples:**
---
**Question:** Does this fit actual usage patterns?
**Scoring logic:**
Base score: 50 +30 based on usage_overlap(): - Extract features idea depends on - Check if those features are used (usage_log) - Calculate overlap: (used_features / total_features) * 30 +20 if fits_role_profile(): - PM roles: prioritize project/product features - Sales roles: prioritize relationship/account features - Leadership: prioritize synthesis/review features - Match category to role focus areas Max: 100
**Examples:**
---
**Question:** Does this reduce context/token usage?
**CRITICAL - Cursor Feasibility Check:** Before scoring, verify the idea is implementable in Cursor/Terminal:
**Scoring logic:**
Base score: 50 +25 if reduces_token_usage(): - Caches/stores frequently accessed data (in files/MCP) - Compresses or summarizes verbose content (file-based) - Eliminates redundant reads - Enables more efficient retrieval patterns +15 if improves_context_efficiency(): - Reduces number of files that need reading - Creates structured summaries (YAML/JSON files) - Better indexing/search to avoid broad scans - Moves data from markdown to structured format +10 if enables_incremental_updates(): - Supports partial updates instead of full rewrites - Tracks changes in separate files - Lazy loading or on-demand computation Max: 100
**Examples:**
A personal operating system for your work. Strategic work management, meeting intelligence, relationship tracking, daily planning — all configured for your specific role.
Repo: davekilleen/Dex
Browser automation using Vercel's agent-browser CLI. Use when you need to interact with web pages, fill forms, take screenshots, or scrape data. Alternative to…
Build applications where agents are first-class citizens. Use this skill when designing autonomous agents, creating MCP tools, implementing self-modifying…
This skill should be used when writing Ruby gems following Andrew Kane's proven patterns and philosophy. It applies when creating new Ruby gems, refactoring…
This skill should be used before implementing features, building components, or making changes. It guides exploring user intent, approaches, and design…
Capture solved problems as categorized documentation with YAML frontmatter for fast lookup
Expert guidance for creating, writing, and refining Claude Code Skills. Use when working with SKILL.md files, authoring new skills, improving existing skills,…