Find the perfect skill
Debug Code Task
Development
Fetches task metadata and execution logs for a code-agent task from Firestore. Use this when the user pastes a code-task URL (dev.intexuraos.cloud or intexuraos.cloud) or provides a task ID (task_*) with debugging or investigation intent.
Cross-Platform Compatibility
Development
Comprehensive guide to writing code compatible across Windows, macOS, and Linux. Covers file path handling, OS detection, platform-specific dependencies, and testing strategies.
Dartboard Rendering
Development
This skill provides implementation patterns for rendering a dartboard with p5.js, including correct drawing order (outer to inner, spider split into two steps), coordinate transformation between physical mm and screen pixels, and segment boundary angle calculations. It helps when implementing or reviewing dartboard rendering logic to avoid common mistakes like incorrect layering or coordinate mixing.
Git Move - Move and Rename Files
Development
Move or rename files using `git mv` to preserve Git history and automatically stage changes. Avoids breaking history into delete+add operations. Use when reorganizing code structure or refactoring file locations.
RevenueCat App Setup
Development
Walks through complete RevenueCat app setup for iOS or Android: creating the app, configuring store credentials (App Store Connect or Google Play Console), setting up products, and getting the API key. Use when integrating a new app with RevenueCat for the first time.
Git Commit with Prefix
Development
Analyzes code changes to select the appropriate commit prefix (add/fix/docs/refactor/test/chore/perf/build/ci/revert/style) and generate a clear, structured commit message. Helps maintain a consistent and traceable commit history by categorizing changes accurately.
Phoenix Context Boundary Validation
Development
Analyzes Phoenix context dependencies via mix xref to detect boundary violations, circular dependencies, and layer contamination. Computes a health score (0-100) and suggests refactoring actions like splitting contexts or extracting sub-contexts. Use before major refactors, during PR reviews, or when evaluating architectural health.
Cinematic Interaction Designer
Development
Creates Awwwards-level animations using GSAP, Three.js/R3F, and Lenis. Specializes in Hero Sections, 3D interactions, and scroll-linked storytelling with premium performance optimization.
Exports & Barrel Files
Development
Defines conventions for module exports and barrel files: named exports only, no flat wildcards (except `export * as Name` for compound components), sectioned comments, types alongside values, and one export line per source file. Helps maintain consistent, tree-shakeable exports in portal apps using Turbopack or similar bundlers.
Create Implementation Plan
Development
Generates a detailed implementation plan from an existing issue analysis or feature concept. It detects the current branch, reads project guidelines, and produces a structured plan.md with break-down tasks, test plan, checkpoints, and commit strategy. Useful when you have an analysis document and need a concrete coding roadmap.
Pre-Commit Checks
Development
Runs Ruff linting and formatting with auto-fix, then performs Mypy type checking on Python files. Use this skill before every git commit to catch errors early and meet CI requirements. It stages auto-fixed files if needed and reports pass/fail results.
Automatic PR Labeling
Development
Automatically labels pull requests based on conventional commit types (e.g., feat: → enhancement, fix: → bug). Helps organize and filter PRs by category without manual effort.