Browse Skills

2258 skills found

dev-swarm-mvp.md
6
1 export dev-swarm-mvp
2 X-School-Academy from "X-School-Academy/ai-dev-swarm"
3 Define MVP scope, success metrics, and explicit out-of-scope items to focus on the smallest testable product. Use when user asks to define MVP, scope MVP, or start Stage 3 after personas.
2026-01-05
tfc-list-runs.md
6
1 export tfc-list-runs
2 laurigates from "laurigates/dotfiles"
3 List Terraform Cloud runs for a workspace with filtering by status, operation type, and date. Use when reviewing run history, finding failed runs, or auditing infrastructure changes. Requires TFE_TOKEN environment variable.
2026-01-05
frontend-css.md
6
1 export frontend-css
2 coreyja from "coreyja/coreyja.com"
3 Write maintainable CSS following the project's established methodology, whether using Tailwind utility classes, BEM naming, CSS modules, or styled-components. Use this skill when styling UI components or pages with CSS, applying design system tokens for colors and spacing, or working with CSS frameworks. When writing utility classes, custom styles, or responsive design rules. When working with .css, .scss, .module.css files, or inline styles in JSX/templates. When establishing or maintaining design tokens for consistent styling. When optimizing CSS for production builds with purging or tree-shaking unused styles.
2026-01-05
dev-swarm-tech-specs.md
6
1 export dev-swarm-tech-specs
2 X-School-Academy from "X-School-Academy/ai-dev-swarm"
3 Define technical specifications including tech stack, security, theme standards (from UX mockup), coding standards, and testing standards. Use when user asks to define tech specs, choose tech stack, or start Stage 7 after architecture.
2026-01-05
dev-swarm-personas.md
6
1 export dev-swarm-personas
2 X-School-Academy from "X-School-Academy/ai-dev-swarm"
3 Create/Updates detailed user personas and prioritized user stories based on target users and market research. Use when user asks to create personas, define user stories, or start Stage 2 after market research or init-ideas.
2026-01-05
scrum-event-sprint-review.md
6
1 export scrum-event-sprint-review
2 atusy from "atusy/agentic-scrum"
3 Verify Definition of Done and acceptance criteria for Sprint increments. Use when completing sprints, running verification commands, or preparing for acceptance.
2026-01-05
backend-models.md
6
1 export backend-models
2 coreyja from "coreyja/coreyja.com"
3 Define database models with clear naming, appropriate data types, proper constraints, and relationship definitions. Use this skill when creating or modifying ORM model files, database entity definitions, or data structure schemas. When defining table relationships, foreign keys, and cascade behaviors. When implementing model validation rules, timestamps, or indexes. When working with model files in frameworks like SQLAlchemy, Sequelize, ActiveRecord, SQLx, Prisma, or similar ORMs. When choosing appropriate data types for columns or establishing data integrity constraints (NOT NULL, UNIQUE, foreign keys).
2026-01-05
design-system-starter.md
6
1 export design-system-starter
2 ArieGoldkin from "ArieGoldkin/ai-agent-hub"
3 Use this skill when creating or evolving design systems for applications. Provides design token structures, component architecture patterns, documentation templates, and accessibility guidelines. Ensures consistent, scalable, and accessible UI design across products.
2026-01-05
dart-resolve-workspace-symbol.md
6
1 export dart-resolve-workspace-symbol
2 X-School-Academy from "X-School-Academy/ai-dev-swarm"
3 To search for symbols across Dart workspaces, resolve a symbol name to find definitions or catch spelling errors.
2026-01-05
dbcli-tables.md
6
1 export dbcli-tables
2 tteamtm from "tteamtm/dbcli"
3 List all tables in a database and show table structure (columns, types, constraints) for 30+ databases using DbCli. Use when user wants to explore database schema, see what tables exist, check table structure, or understand column definitions.
2026-01-05
tfc-plan-json.md
6
1 export tfc-plan-json
2 laurigates from "laurigates/dotfiles"
3 Download and analyze structured Terraform plan JSON output from Terraform Cloud. Use when analyzing resource changes, diffing infrastructure, or programmatically inspecting plan details. Requires TFE_TOKEN environment variable.
2026-01-05
python-testing.md
6
1 export python-testing
2 laurigates from "laurigates/dotfiles"
3 Python testing with pytest, coverage, fixtures, parametrization, and mocking.Covers test organization, conftest.py, markers, async testing, and TDD workflows.Use when user mentions pytest, unit tests, test coverage, fixtures, mocking,or writing Python tests.
2026-01-05
sync-agent-configs.md
6
1 export sync-agent-configs
2 dparedesi from "dparedesi/YTScribe"
3 Sync skill definitions to agent proxy files (.agent/workflows/skills.md and .github/copilot-instructions.md). Use after adding, removing, or modifying skills.
2026-01-05
txex.md
6
1 export txex
2 b-open-io from "b-open-io/prompts"
3 Extract, cache, and transform media from Bitcoin blockchain transactions. Use when extracting files from outpoints, downloading NFT collections, or transforming blockchain media (images, video, audio).
2026-01-05
frontend-components.md
6
1 export frontend-components
2 coreyja from "coreyja/coreyja.com"
3 Design reusable, composable UI components with single responsibility, clear interfaces, and proper state management. Use this skill when creating or refactoring React, Vue, Svelte, or other framework components. When defining component props, interfaces, or APIs. When managing component state or lifting state up to parent components. When building reusable UI elements like buttons, cards, forms, modals, or lists. When implementing component composition patterns. When working with component files (.jsx, .tsx, .vue, .svelte). When documenting component usage or creating component libraries.
2026-01-05
consolidate-transcripts.md
6
1 export consolidate-transcripts
2 dparedesi from "dparedesi/YTScribe"
3 Consolidate transcripts from a channel into a single file, sorted by date (newest first), up to 800K tokens. Use when preparing transcripts for LLM context or bulk analysis.
2026-01-05
dev-swarm-prd.md
6
1 export dev-swarm-prd
2 X-School-Academy from "X-School-Academy/ai-dev-swarm"
3 Create comprehensive Product Requirements Document (PRD) defining product behavior, functional and non-functional requirements. Use when user asks to create PRD, write requirements, or start Stage 4 after MVP definition.
2026-01-05
prototype-to-production.md
6
1 export prototype-to-production
2 ArieGoldkin from "ArieGoldkin/ai-agent-hub"
3 Convert design prototypes (HTML, CSS, Figma exports) into production-ready components. Analyzes prototype structure, extracts design tokens, identifies reusable patterns, and generates typed React components. Adapts to existing project tech stack with React + TypeScript as default.
2026-01-05
backend-api.md
6
1 export backend-api
2 coreyja from "coreyja/coreyja.com"
3 Design and implement RESTful API endpoints following REST principles, consistent naming conventions, and proper HTTP methods. Use this skill when creating or modifying API routes, controllers, or handlers in backend code. When implementing endpoint logic that handles HTTP requests (GET, POST, PUT, PATCH, DELETE). When working with API versioning, query parameters, or response formatting. When defining URL structures for resource-based endpoints. When setting up rate limiting or HTTP status code handling. When working with files like route definitions, controller files, API handler modules, or web framework configuration files.
2026-01-05
dbcli-db-ddl.md
6
1 export dbcli-db-ddl
2 tteamtm from "tteamtm/dbcli"
3 Execute DDL (Data Definition Language) statements - CREATE, ALTER, DROP tables, indexes, views on 30+ databases using DbCli. CRITICAL - requires mandatory backup before DROP/ALTER operations. Use when user needs to create schema, modify structure, or drop database objects.
2026-01-05
tfc-run-logs.md
6
1 export tfc-run-logs
2 laurigates from "laurigates/dotfiles"
3 Retrieve plan and apply logs from Terraform Cloud runs. Use when examining TFC run output, debugging failed plans/applies, or reviewing infrastructure changes. Requires TFE_TOKEN environment variable.
2026-01-05
hook-optimization.md
5
1 export hook-optimization
2 duongdev from "duongdev/ccpm"
3 Provides guidance on optimizing CCPM hooks for performance and token efficiency. Auto-activates when developing, debugging, or benchmarking hooks. Includes caching strategies, token budgets, performance benchmarking, and best practices for maintaining sub-5-second hook execution times.
2026-01-05
ruleset-optimization.md
5
1 export ruleset-optimization
2 ilude from "ilude/claude-code-config"
3 Guidelines for optimizing Claude rulesets and instruction files (CLAUDE.md, settings.json) using context efficiency principles. Includes strategies for skill extraction, progressive disclosure, token savings calculation, and deduplication. Manually invoke when optimizing rulesets, reducing context size, extracting content to skills, or improving ruleset organization.
2026-01-05
marketing-strategy-pmm.md
5
1 export marketing-strategy-pmm
2 rickydwilson-dcs from "rickydwilson-dcs/claude-skills"
3 Product marketing, positioning, GTM strategy, and competitive intelligence. Includes ICP definition, April Dunford positioning methodology, launch playbooks, competitive battlecards, and international market entry guides. Use when developing positioning, planning product launches, creating messaging, analyzing competitors, entering new markets, enabling sales, or when user mentions product marketing, positioning, GTM, go-to-market, competitive analysis, market entry, or sales enablement.
2026-01-05