Find the perfect skill
Skill Development for Claude Code
Development
Provides step-by-step guidance for creating, editing, and organizing modular skills that extend Claude's capabilities. Covers skill anatomy (SKILL.md, references, examples, scripts), progressive disclosure for efficient context use, and validation best practices. Use when developing or improving skills for Claude Code plugins or personal workflows.
Code Profiling
Development
Profiles code execution speed to pinpoint performance bottlenecks. Supports simple timers, cProfile, and line profiler, analyzing cumulative time and call counts to suggest optimizations like vectorization or caching.
Insert Decimal Objective for Urgent Work
Development
Inserts a decimal objective (e.g., 72.1) between existing integer objectives to accommodate urgent work discovered mid-milestone. Preserves the logical sequence of planned objectives without renumbering the entire roadmap. Use only when explicitly requested for structural roadmap changes.
Electron App Scaffolder
Development
Scaffolds a production-ready Electron app with TypeScript, React, and Vite. Automatically sets up project structure, core dependencies, and optional features like SQLite (via Knex), Jest testing, and Storybook for component development.
Disconnect Android Device
Development
Disconnect a wireless Android device from ADB. Use with an IP:port argument to disconnect a specific device, 'all' for all wireless devices, or no argument to auto-detect. Helps when you need to disconnect a device connected via WiFi.
Java Core Development
Development
Provides standards for core Java development including code organization, modern features (records, pattern matching), performance optimization, and implementation verification. Useful for Java 17+ projects to maintain consistent code structure and apply proven patterns.
Complete Project Validation
Development
Runs the complete quality validation suite for Topographic Studio projects: linting with Biome, TypeScript type checking, all tests, and build. Checks are executed sequentially, stopping at the first failure with detailed error reporting. Use before committing, creating pull requests, or publishing packages.
Custom React Query Hook
Development
Generates a custom TanStack Query hook for data fetching, including queries and mutations. It reads the backend controller to confirm endpoint URLs and response types, then produces a typed hook using the project's Axios instance. Useful when creating API integration hooks that must follow team conventions and avoid stale cached data.
Ralph Ultra PRD Builder
Development
Creates structured PRD documents in JSON format with stories, acceptance criteria, dependencies, and priorities. Guides users through interactive story creation and validates the output against a JSON schema. Useful when planning new features or projects to ensure well-defined requirements.
PHPStan Error Resolver
Development
Automatically analyzes PHPStan errors and fixes them in batches of five, looping until zero errors or stagnation. Helps maintain a typed PHP codebase without repetitive manual intervention.
Design Craft: Creating Delightful User Experiences
Development
Focuses on the emotional and aesthetic details that transform functional apps into delightful experiences. Covers empty state patterns that welcome users, loading states that reduce perceived wait time, and micro-interactions that provide polished feedback. Helps developers bridge the gap between visually polished interfaces and truly loved products.
Code Explainer
Development
Provides plain-English explanations of code, breaking down logic into simple steps and analogies. Helps developers quickly understand unfamiliar code or review their own work.