Find the perfect skill
Backlog Prioritization
Development
This skill orders backlog items using frameworks like RICE, MoSCoW, or Value-Effort. It reads PBIs from a directory, applies the selected framework, and outputs a ranked list with numeric priorities. Useful during sprint planning or when stakeholders request priority ranking.
Vowel Uppercase Converter
Development
Converts input text into a Python string literal where all vowels (a, e, i, o, u, y) are capitalized. Helps generate strings with emphasized vowels or perform vowel-uppercase text transformation.
Git Worktree Creator
Development
Creates isolated git worktrees with separate Next.js dev servers on unique ports (9653 + offset). Use it when you need to work on multiple branches simultaneously or run parallel instances in isolated environments.
View Pull Request Diff
Development
Shows the code diff of a pull request, including file changes and statistics. Helps when reviewing code changes, understanding the scope of modifications, or examining specific files.
Migrate Pages Router component to App Router
Development
Migrate a React component from Next.js Pages Router to App Router. Handles conversion of data fetching methods (getServerSideProps, getStaticProps), routing patterns, and hooks like useRouter and Head. Use when modernizing legacy Next.js pages to the App Router pattern.
Agent Builder and Validator
Development
Create, validate, or audit agent Markdown definitions. This skill scaffolds agent files with proper frontmatter and PascalCase naming, and checks existing agents against forge conventions. Use when building a new agent or ensuring consistency across a collection of agents.
TDD Development Orchestrator
Development
Orchestrates a TDD-based development workflow: plans with a test-first approach, splits into trackable steps, saves to Obsidian vault, and executes sequentially. Delegates tasks to specialized agents via tmux. Helps structure complex implementations with clear progress tracking.
Build Claude Code Skills
Development
This skill orchestrates four specialized agents to create production-ready Claude Code skills from user requirements. It guides users through requirements elicitation, skill generation, validation, and documentation enhancement. Helps systematically build robust, well-structured skills.
Systematic Debugging
Development
Provides a structured five-phase debugging workflow: understand, reproduce, isolate, fix, and document. Guides through writing failing tests, binary search isolation, minimal fixes, and regression tests. Most useful when tackling complex or non-obvious bugs that require a systematic approach.
MemoClaw - Persistent Memory for AI Agents
Development
Persistent memory for AI agents with semantic vector search. Store facts and retrieve them by meaning similarity, no API keys – your wallet is your identity. Best for maintaining context across agent sessions or sharing memories between multiple agents with built-in deduplication and configurable TTL.
Codebase Research
Development
Researches the codebase to find and explain specific topics. Uses Read, Glob, and Grep tools to answer questions about architecture, configuration, data flows, and implementation details without modifying any files.
Adding a Frontend Page in Yew
Development
Step-by-step guide for adding a new page to the Lightfriend Yew frontend. Covers creating the page component, adding a route variant and handler, declaring the module in the inline mod block (no mod.rs), and optionally adding a navigation link. Helps when you need to extend the UI with a new view.