Top Agent Skills
25836 skills
Flickr API Schema
Flickr API Schema API skill. Use when working with Flickr API Schema for rest?method=flickr.favorites.getList, rest?method=flickr.people.getPhotos, rest?method=flickr.photosets.getList. Covers 25 endpoints.
6 · bundle
Python Pro
Master Python 3.12+ with modern features, async programming, performance optimization, and production-ready practices. Expert in the latest Python ecosystem including uv, ruff, pydantic, and FastAPI.
1
Reversa New
Orquestrador do time Code New Project Agents do Reversa. Conduz o pipeline greenfield, partindo de uma ideia em linguagem natural e produzindo brainstorm, personas, PRD e specs SDD em `_reversa_sdd/`. Use quando o usuário digitar "/reversa-new", "reversa-new", "começar projeto novo", "criar projeto do zero" ou pedir para iniciar um produto greenfield. Não escreve código de aplicação, apenas specs.
1
Reversa To Do
Decompõe o roadmap em ações atômicas com IDs sequenciais, dependências e marcador de paralelismo. Use quando o usuário digitar "/reversa-to-do", "reversa-to-do", "decompor em tarefas" ou pedir para virar o roadmap em uma lista executável. Quarto skill do ciclo forward, depois de `/reversa-plan`.
1
Reversa Visor
Documenta a interface do sistema legado a partir de screenshots — extrai componentes, layouts, fluxos de navegação e estados de tela. Use quando screenshots do sistema estiverem disponíveis, sem necessidade de o sistema estar em execução.
1
Reversa Clarify
Gera até cinco perguntas dirigidas para resolver pontos ambíguos do requirements e integra as respostas no documento. Use quando o usuário digitar "/reversa-clarify", "reversa-clarify", "esclarecer dúvidas" ou pedir para tirar pontos abertos do requirements antes de planejar. Etapa opcional do ciclo forward, entre `/reversa-requirements` e `/reversa-plan`.
1
Reversa Ideator
Agente Ideator do time Code New Project Agents. Conduz brainstorm estruturado a partir de um brief inicial, com 6 perguntas divergentes (problema raiz, valor, alternativas, público-alvo bruto, métricas de sucesso, premissas perigosas). Use quando o usuário digitar "/reversa-ideator", "reversa-ideator" ou quando invocado pelo orquestrador `/reversa-new`. Produz `_reversa_sdd/ideation.md`.
1
Reversa Quality
Auditoria de clareza textual do requirements. Verifica se a prosa é boa o bastante para gerar plano sem ambiguidade. NÃO mistura com auditoria de testes de implementação. Use quando o usuário digitar "/reversa-quality", "reversa-quality" ou pedir para revisar a qualidade do requirements antes de planejar. Etapa opcional do ciclo forward.
1
Reversa Architect
Sintetiza a análise do projeto legado em documentação arquitetural completa — diagramas C4, ERD completo, mapa de integrações e Spec Impact Matrix. Use na fase de interpretação após o reversa-detective.
1
Reversa Researcher
Agente Researcher do time Code New Project Agents. A partir de `ideation.md`, aprofunda o público-alvo em 1 a 3 personas estruturadas com jornadas. Use quando o usuário digitar "/reversa-researcher", "reversa-researcher" ou quando invocado pelo orquestrador `/reversa-new`. Produz `_reversa_sdd/personas.md`.
1
Reversa Agents Help
Explica com analogias o que cada agente do Reversa faz e quando usá-lo. Ative com /reversa-agents-help.
1
Reversa Docs Analyst
Analista do Time Reversa Docs. Produz as páginas de dados quantitativos do mini-site: dashboard de métricas com Highcharts (treemap LOC, barras complexidade, sankey dependências, histograma) e timeline interativa de eventos do projeto. Ative com /reversa-docs-analyst, reversa-docs-analyst, regenerar métricas, refazer timeline, dashboard do projeto.
1
Reversa Design System
Extrai e documenta o sistema de design do projeto legado — paleta de cores, tipografia, espaçamentos, tokens e componentes a partir de CSS, arquivos de tema e screenshots. Use quando arquivos de estilo ou screenshots de interface estiverem disponíveis.
1
Speckit Analyze Agent
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
1
Speckit Clarify Agent
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
1
Speckit Checklist Agent
Generate a custom checklist for the current feature based on user requirements.
1
Speckit Constitution Agent
Create or update the project constitution from interactive or provided principle inputs, ensuring all dependent templates stay in sync.
1
Speckit Taskstoissues Agent
Convert existing tasks into actionable, dependency-ordered GitHub issues for the feature based on available design artifacts.
1
Create Github Issue Feature From Specification
Create GitHub Issue for feature request from specification file using feature_request.yml template.
1
UI Atom
Atomic-design guidance for UI Atoms — the smallest single-purpose building blocks (buttons, inputs, icons, labels). Use when authoring or reviewing components under ui/atoms, components/atoms, or when deciding whether a component belongs at the atom level.
0
State Ajax
Async data-fetching patterns — Fetch vs Axios, service-layer organisation, AbortController cancellation, and integration with Redux Toolkit's createAsyncThunk for pending/fulfilled/rejected state transitions. Use when writing or reviewing HTTP call sites, standardising loading/error handling, or wiring request cancellation in effects.
0
State Crud
CRUD patterns for state slices — consistent `domain/create|read|update|delete` action naming, request/success/failure triples per operation, and normalised `{ byId, allIds }` entity shapes for O(1) lookups. Use when designing a new entity slice, standardising action-type names, or refactoring array-shaped state.
0
State Saga
Redux-Saga (generator-based) middleware for async side effects — yields declarative effects (call/put/select/takeLatest/delay) instead of imperative async code, watcher-per-slice composition, optimistic updates with rollback. Use when authoring per-slice operations.js, the rootSagas composer, or reviewing saga workers.
0
UI Molecule
Atomic-design guidance for Molecules — functional groups of atoms (SearchBar = input + button + icon; FormField = label + input + error) with a single cohesive purpose. Use when authoring or reviewing components under ui/molecules, composing atoms, or deciding atom vs molecule vs organism.
0
UI Organism
Atomic-design guidance for Organisms — complex feature-level sections (Header, ProductGrid, CommentSection) that compose molecules, connect to state, handle loading/error/empty states, and own responsive layout decisions. Use when authoring components under ui/organisms or deciding molecule vs organism boundaries.
0
UI Skeleton
Skeleton loading placeholders — gray-shape stand-ins that mirror final content dimensions, use subtle shimmer/pulse animation, and prevent layout shift. Use when replacing generic spinners with content-shaped placeholders, reducing perceived latency on slow routes, or preventing CLS on image-heavy cards.
0
State Reducer
Pure switch/case reducers for the chota-react-saga template — initial-state file, three-phase async cases per CRUD verb, optimistic mutations with `previousState<Items>` rollback, fall-through SUCCESS/ERROR for toggle and delete.
0
State Selectors
Selector functions for the chota-react-saga template — colocated with each slice, return derived view-data from the saga state shape (isLoading/isContentLoading/isActionLoading/error/<items>/<current>), filter/sort projections that combine slices (e.g. visibleTodos × selectedFilter).
0
Server App Shell
App Shell architecture — the cached HTML/CSS/JS skeleton (header, nav, footer) served instantly via Service Worker while dynamic content streams in. Use when building PWAs, wiring service-worker caches, inlining critical CSS, or adding offline fallbacks and skeleton loading states.
0
Outcome Map
Create product objectives, key results, initiatives, guardrails, and review cadence.
0
Workshop Runbook
Plan structured workshops with goals, agenda, activities, prompts, decision rules, and follow-ups.
0
Job To Be Done Map
Frame jobs, triggers, desired outcomes, anxieties, and product opportunities.
0
Roadmap Story Brief
Write a roadmap narrative that connects customer problems, company goals, bets, and sequencing.
0
Team Offsite Agenda
Design team offsites with objectives, agenda flow, exercises, logistics, and post-offsite actions.
0
Delivery Status Brief
Create a clear project status brief with progress, risks, blockers, decisions, and next actions.
0
Market Landscape Scan
Compare a product against alternatives by positioning, capabilities, gaps, and strategic moves.
0
Decision Meeting Notes
Turn meetings into decisions, owners, open questions, and follow-ups.
0
Executive Product Note
Write executive-ready product updates with signal, tradeoffs, risks, and recommendations.
0
Delivery Commitment Map
Create a delivery plan with goals, capacity, scope, risks, and commitments.
0
Handoff Readiness Brief
Prepare implementation handoffs with states, flows, assets, edge cases, and acceptance criteria.
0
Launch Readiness Review
Assess launch readiness across product, engineering, support, sales, marketing, risk, and measurement.
0
Research Evidence Brief
Turn research inputs into concise evidence, patterns, confidence levels, and product decisions.
0
Dashboard Decision Brief
Specify dashboards around decisions, audiences, questions, metrics, cuts, and refresh rhythm.
0
Priority Decision System
Prioritize product work with explicit criteria, scoring, tradeoffs, and decision rationale.
0
Product Health Diagnostic
Analyze product health across acquisition, activation, engagement, retention, quality, and monetization.
0
Interview Signal Synthesis
Synthesize interviews into themes, contradictions, opportunities, and product implications.
0
Prince2 Stage Control Pack
Run PRINCE2 Controlling a Stage: work package tracking, highlight reports, risk and issue control, tolerance checks, change handling, and corrective action planning.
0
Prince2 Stage Boundary Pack
Prepare PRINCE2 Managing a Stage Boundary material: end stage report, next stage plan, updated business case, updated project plan, lessons, risks, issues, and exception plan if needed.
0
Prince2 Direction Gate Brief
Prepare PRINCE2 Directing a Project gate briefs for project board decisions, including initiation authorization, stage authorization, exception decisions, and closure authorization.
0
Prince2 Product Delivery Pack
Prepare PRINCE2 Managing Product Delivery material: work package acceptance, team plans, checkpoint reports, quality evidence, delivery confirmation, and handback notes.
0
Product Requirements Blueprint
Draft product requirements with the problem, users, scope, requirements, metrics, and open decisions.
0
Repo Skills
After cloning a repository, scan for skill definitions and load them on demand. Always use this after cloning any repo.
0
Data Analyst
Use this skill to write and run SQL queries, pull data, build metrics, or answer analytical questions. Always use this skill when you need to query data.
0
Data Workflow
Use this skill for any data or analytics task — querying databases, analyzing metrics, exploring data warehouses, processing datasets, or creating visualizations.
0
Code Simplifier
Use this skill after completing code changes to review for reuse, quality, and efficiency. Simplifies and refines code for clarity, consistency, and maintainability while preserving all functionality.
0
Coding Workflow
Use this skill for any coding task that involves working with repositories, writing code, creating branches, or opening pull requests. Covers the full development workflow from cloning to PR.
0
Sag
ElevenLabs text-to-speech with mac-style say UX.
0
Xurl
xurl CLI for authenticated X posts, replies, reads/search, DMs, media upload, followers, auth status, or raw v2 API calls.
0
Gemini
Gemini CLI one-shot prompts, summaries, generation, skills, hooks, MCP, or Gemma routing.
0
Github
GitHub CLI for issues, PRs, CI/check logs, comments, reviews, releases, repos, and gh api queries.
0