Claude Code Skills · page 85
Individual Claude Code skills mined from every repository in the directory: each SKILL.md, installable with one command, with its full definition and the repository's trust signals.
- tilt355
Manages Tilt development environments via CLI and Tiltfile authoring. Must use when working with Tilt or Tiltfiles.
aiskillstore/marketplaceInstall Patterns for running long-lived processes in tmux. Use when starting dev servers, watchers, tilt, or any process expected to outlive the conversation.
aiskillstore/marketplaceInstallProvides TypeScript patterns for type-first development, making illegal states unrepresentable, exhaustive handling, and runtime validation. Must use when reading or writing TypeScript/JavaScript files.
aiskillstore/marketplaceInstall- web-fetch355
Fetches web content with intelligent content extraction, converting HTML to clean markdown. Use for documentation, articles, and reference pages http/https URLs.
aiskillstore/marketplaceInstall Provides Zig patterns for type-first development with tagged unions, explicit error sets, comptime validation, and memory management. Must use when reading or writing Zig files.
aiskillstore/marketplaceInstall- zig-docs355
Fetches Zig language and standard library documentation via CLI. Activates when needing Zig API details, std lib function signatures, or language reference content that isn't covered in zig-best-practices.
aiskillstore/marketplaceInstall Troubleshoot Claude Code extensions and behavior. Triggers on: debug, troubleshoot, not working, skill not loading, hook not running, agent not found.
aiskillstore/marketplaceInstallRun Claude Code programmatically without interactive UI. Triggers on: headless, CLI automation, --print, output-format, stream-json, CI/CD, scripting.
aiskillstore/marketplaceInstallClaude Code hook system for pre/post tool execution. Triggers on: hooks, PreToolUse, PostToolUse, hook script, tool validation, audit logging.
aiskillstore/marketplaceInstallBoilerplate templates for Claude Code extensions. Triggers on: create agent, new skill, command template, hook script, extension scaffold.
aiskillstore/marketplaceInstall- code-stats355
Analyze codebase with tokei (fast line counts by language) and difft (semantic AST-aware diffs). Get quick project overview without manual counting. Triggers on: how big is codebase, count lines of code, what languages, show semantic diff, compare files, code statistics.
aiskillstore/marketplaceInstall Docker and Kubernetes patterns. Triggers on: Dockerfile, docker-compose, kubernetes, k8s, helm, pod, deployment, service, ingress, container, image.
aiskillstore/marketplaceInstallProcess JSON with jq and YAML/TOML with yq. Filter, transform, query structured data efficiently. Triggers on: parse JSON, extract from YAML, query config, Docker Compose, K8s manifests, GitHub Actions workflows, package.json, filter data.
aiskillstore/marketplaceInstall- doc-scanner355
Scans for project documentation files (AGENTS.md, CLAUDE.md, GEMINI.md, COPILOT.md, CURSOR.md, WARP.md, and 15+ other formats) and synthesizes guidance. Auto-activates when user asks to review, understand, or explore a codebase, when starting work in a new project, when asking about conventions or agents, or when documentation context would help. Can consolidate multiple platform docs into unified AGENTS.md.
aiskillstore/marketplaceInstall - file-search355
Modern file and content search using fd, ripgrep (rg), and fzf. Triggers on: fd, ripgrep, rg, find files, search code, fzf, fuzzy find, search codebase.
aiskillstore/marketplaceInstall - find-replace355
Modern find-and-replace using sd (simpler than sed) and batch replacement patterns. Triggers on: sd, find replace, batch replace, sed replacement, string replacement, rename.
aiskillstore/marketplaceInstall - git-workflow355
Enhanced git operations using lazygit, gh (GitHub CLI), and delta. Triggers on: stage changes, create PR, review PR, check issues, git diff, commit interactively, GitHub operations, rebase, stash, bisect.
aiskillstore/marketplaceInstall - mcp-patterns355
Model Context Protocol (MCP) server patterns for building integrations with Claude Code. Triggers on: mcp server, model context protocol, tool handler, mcp resource, mcp tool.
aiskillstore/marketplaceInstall Detects stale project plans and suggests session commands. Triggers on: sync plan, update plan, check status, plan is stale, track progress, project planning.
aiskillstore/marketplaceInstallPython asyncio patterns for concurrent programming. Triggers on: asyncio, async, await, coroutine, gather, semaphore, TaskGroup, event loop, aiohttp, concurrent.
aiskillstore/marketplaceInstallCLI application patterns for Python. Triggers on: cli, command line, typer, click, argparse, terminal, rich, console, terminal ui.
aiskillstore/marketplaceInstallSQLAlchemy and database patterns for Python. Triggers on: sqlalchemy, database, orm, migration, alembic, async database, connection pool, repository pattern, unit of work.
aiskillstore/marketplaceInstall- python-env355
Fast Python environment management with uv (10-100x faster than pip). Triggers on: uv, venv, pip, pyproject, python environment, install package, dependencies.
aiskillstore/marketplaceInstall FastAPI web framework patterns. Triggers on: fastapi, api endpoint, dependency injection, pydantic model, openapi, swagger, starlette, async api, rest api, uvicorn.
aiskillstore/marketplaceInstallObservability patterns for Python applications. Triggers on: logging, metrics, tracing, opentelemetry, prometheus, observability, monitoring, structlog, correlation id.
aiskillstore/marketplaceInstallpytest testing patterns for Python. Triggers on: pytest, fixture, mark, parametrize, mock, conftest, test coverage, unit test, integration test, pytest.raises.
aiskillstore/marketplaceInstallPython type hints and type safety patterns. Triggers on: type hints, typing, TypeVar, Generic, Protocol, mypy, pyright, type annotation, overload, TypedDict.
aiskillstore/marketplaceInstallQuick reference for RESTful API design patterns, HTTP semantics, caching, and rate limiting. Triggers on: rest api, http methods, status codes, api design, endpoint design, api versioning, rate limiting, caching headers.
aiskillstore/marketplaceInstallSecurity patterns and OWASP guidelines. Triggers on: security review, OWASP, XSS, SQL injection, CSRF, authentication, authorization, secrets management, input validation, secure coding.
aiskillstore/marketplaceInstall- sql-patterns355
Quick reference for common SQL patterns, CTEs, window functions, and indexing strategies. Triggers on: sql patterns, cte example, window functions, sql join, index strategy, pagination sql.
aiskillstore/marketplaceInstall - sqlite-ops355
Patterns for SQLite databases in Python projects - state management, caching, and async operations. Triggers on: sqlite, sqlite3, aiosqlite, local database, database schema, migration, wal mode.
aiskillstore/marketplaceInstall Search code by AST structure using ast-grep. Find semantic patterns like function calls, imports, class definitions instead of text patterns. Triggers on: find all calls to X, search for pattern, refactor usages, find where function is used, structural search, ast-grep, sg.
aiskillstore/marketplaceInstallQuick reference for Tailwind CSS utility patterns, responsive design, and configuration. Triggers on: tailwind, utility classes, responsive design, tailwind config, dark mode css, tw classes.
aiskillstore/marketplaceInstall- task-runner355
Run project commands with just. Check for justfile in project root, list available tasks, execute common operations like test, build, lint. Triggers on: run tests, build project, list tasks, check available commands, run script, project commands.
aiskillstore/marketplaceInstall Cross-language testing strategies and patterns. Triggers on: test pyramid, unit test, integration test, e2e test, TDD, BDD, test coverage, mocking strategy, test doubles, test isolation.
aiskillstore/marketplaceInstallRecommend the right agents and skills for any task. Covers both heavyweight agents (Task tool) and lightweight skills (Skill tool). Triggers on: which agent, which skill, what tool should I use, help me choose, recommend agent, find the right tool.
aiskillstore/marketplaceInstall- doc-writer355
Create or update numbered task docs using repo context, DOC_TEMPLATE.md, and naming conventions.
aiskillstore/marketplaceInstall Create charts, graphs, and visualizations from data. Use when the user needs to visualize data, create charts, or generate reports with graphics.
aiskillstore/marketplaceInstall- memory-bank355
Persistent project documentation system that maintains context across sessions. Creates structured Memory Bank files to preserve project knowledge, decisions, and progress.
aiskillstore/marketplaceInstall Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.
aiskillstore/marketplaceInstallPython FastAPI development with uv package manager, modular project structure, SQLAlchemy ORM, and production-ready patterns.
aiskillstore/marketplaceInstall- commit355
Helps write conventional commit messages, create atomic commits, and follow git best practices. Use when the agent needs to help with git commits, commit message writing, or git workflow guidance.
aiskillstore/marketplaceInstall - create-skill355
Guide for creating new Agent Skills. Use this skill when you need to create a new skill.
aiskillstore/marketplaceInstall - develop355
General principles for exploring, developing, editing, and refactoring code. Use for codebase analysis, implementation tasks, and code quality improvements.
aiskillstore/marketplaceInstall - plan355
Guidelines for iteratively planning tasks and changes before implementation. Use this when the user requests a non-trivial task or when you need to align on a complex implementation strategy.
aiskillstore/marketplaceInstall - review-code355
Provides a structured workflow for planning and executing code reviews like a senior engineer. Use when asked to review code, PRs, or plan a code review task.
aiskillstore/marketplaceInstall Interactive skill creation assistant that guides users through building new Agent Skills for Claude Code. Use when creating new skills, building custom capabilities, or when the user runs /new-skill command. Helps design skill structure, craft descriptions, create scripts, and organize supporting files.
aiskillstore/marketplaceInstall- knowledge355
Display knowledge base status and recent learnings
aiskillstore/marketplaceInstall - learn-off355
Disable continuous learning mode
aiskillstore/marketplaceInstall - learn-on355
Enable continuous learning mode for automatic insight extraction
aiskillstore/marketplaceInstall - learn-reset355
Clear the knowledge base and start fresh
aiskillstore/marketplaceInstall - learn355
Extract and persist insights from the current conversation to the knowledge base
aiskillstore/marketplaceInstall - route355
Manually route a query to the optimal Claude model (Haiku/Sonnet/Opus)
aiskillstore/marketplaceInstall - router-stats355
Display Claude Router usage statistics and cost savings
aiskillstore/marketplaceInstall - architect355
Design systems, plan implementations, review architecture decisions - Use when you need to plan a complex feature, design system architecture, or make high-level technical decisions.
aiskillstore/marketplaceInstall - coder355
Write, edit, and refactor code with full tool access - Use when you need to actually write or modify code, create files, run commands, or implement features.
aiskillstore/marketplaceInstall - docs355
Research documentation, find examples, explain APIs and libraries - Use when you need to look up official documentation, find code examples, understand library APIs, or research best practices.
aiskillstore/marketplaceInstall - explorer355
Quickly search and navigate the codebase - Use when you need to quickly find files, search for patterns, or locate specific code without deep analysis.
aiskillstore/marketplaceInstall - social-post355
學使用者的 Facebook 個人貼文語氣,依 14 天內容策略日曆,自動產出並發佈到 FB / Instagram / Threads / X。使用時機:使用者說「發文」、「幫我寫一篇貼文」、「用我的風格發」、「今天發一篇」、「PO 一下」、「學我的語氣」、「分析我的貼文風格」、「重新規劃內容」、「排貼文」、「查流量」、「review」時一律觸發;即使只說「發一篇」、「PO 文」、「PO 個廢文」也要觸發。
- mintlify354
Build and maintain documentation sites with Mintlify. Use when
GlitterKill/sdl-mcpInstall Generate a CHANGELOG.md entry from git history since the last tag, categorized by type (features, fixes, security, breaking changes). Matches the existing CHANGELOG format.
GlitterKill/sdl-mcpInstall- test-scope354
Determine which test suites are affected by recent code changes and run only the relevant ones. Avoids running the full test matrix when only specific areas changed.
GlitterKill/sdl-mcpInstall - workflows353
Diagnose and fix broken skills. Use when a skill isn't working correctly.
nth5693/gemini-kitInstall - api-design353nth5693/gemini-kitInstall
- code-review353
Systematic multi-perspective code review with consistent quality gates.
nth5693/gemini-kitInstall Document solved problems for knowledge persistence
nth5693/gemini-kitInstall- debug353
Systematic debugging with structured reproduction and root cause analysis.
nth5693/gemini-kitInstall - docker353nth5693/gemini-kitInstall
- supabase353
Database, auth, and backend expertise for Supabase operations in [PROJECT_NAME]
nth5693/gemini-kitInstall - file-todos353
Manage file-based todo tracking in the todos/ directory
nth5693/gemini-kitInstall - mobile353nth5693/gemini-kitInstall
- nextjs353nth5693/gemini-kitInstall
- performance353nth5693/gemini-kitInstall
- nth5693/gemini-kitInstall
Resume context from previous session
nth5693/gemini-kitInstall- tailwind353nth5693/gemini-kitInstall
- testing353
Unified testing commands and patterns across frontend and backend.
nth5693/gemini-kitInstall Search and chat with AI agents across the Universal Agentic Registry via the Hashgraph Online Registry Broker API. Use when discovering agents, starting conversations, finding incoming messages, or registering new agents.
>
zaxbysauce/opencode-swarmInstallRun a rigorous, quote-grounded codebase review or security/QA/accessibility/performance/AI-slop/enhancement audit. Use for full-repo or large-subsystem review reports; not for normal implementation. Performs Phase 0 inventory, selected exhaustive tracks with non-diluting depth, coverage closure, reviewer/critic validation, and writes .swarm/review-v8 artifacts without modifying source files.
zaxbysauce/opencode-swarmInstall- commit-pr349
>
zaxbysauce/opencode-swarmInstall >
zaxbysauce/opencode-swarmInstall- zaxbysauce/opencode-swarmInstall
- issue-tracer349
Use when asked to trace, investigate, root-cause, plan, fix, close, or prepare a PR for a GitHub issue or bug report. Runs an evidence-first issue workflow: GitHub intake, reproduction, reasoning-guided localization, no-gap fix planning, independent critic review, user approval gate, implementation, tests, and PR-ready closure.
zaxbysauce/opencode-swarmInstall >
zaxbysauce/opencode-swarmInstall>
zaxbysauce/opencode-swarmInstall- qa-sweep349
>
zaxbysauce/opencode-swarmInstall >
zaxbysauce/opencode-swarmInstall>
zaxbysauce/opencode-swarmInstallGuidelines for safe subprocess calls in opencode-swarm. Load before adding, modifying, or reviewing any file that calls spawn, spawnSync, bunSpawn, or child_process. Covers the six required properties, Windows portability, _internals DI seam pattern, and verification grep.
zaxbysauce/opencode-swarmInstallExecute complex implementation work with a swarm-like Claude Code workflow: parallel exploration, scoped planning, selective deep validation, and independent reviewer/critic checks where risk justifies them. Use for feature work, bug fixes, refactors, and multi-file changes.
zaxbysauce/opencode-swarmInstall>
zaxbysauce/opencode-swarmInstallRun a swarm-like PR review using parallel exploration, independent reviewer validation, and critic challenge. Ingests existing PR comments, detects and resolves merge conflicts, and validates bot/human review findings. Use for deep pull request review with low false-positive tolerance.
zaxbysauce/opencode-swarmInstall- swarm349
Enable a high-quality swarm-like Claude Code workflow for the current session, and optionally execute a task immediately using that mode. Uses parallel subagents for breadth, independent reviewer validation for precision, and critic challenge for final confidence. Use when the user wants swarm-like behavior, higher review rigor, or maximum quality without sacrificing Claude Code speed.
zaxbysauce/opencode-swarmInstall Deep technical debt and CI stability audit for identifying test theater, missing or mis-scoped tests, actual and potential test failures, flaky-test risk, dependency/toolchain brittleness, and structural debt that prevents PRs from going green safely.
zaxbysauce/opencode-swarmInstall- unswarm349
Disable swarm mode for the current Claude Code session and return to normal behavior.
zaxbysauce/opencode-swarmInstall >
zaxbysauce/opencode-swarmInstall- brainstorm349
>
zaxbysauce/opencode-swarmInstall - clarify-spec349
>
zaxbysauce/opencode-swarmInstall - clarify349
>
zaxbysauce/opencode-swarmInstall