Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

sim

sim contiene 26 skills recopiladas de simstudioai, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
26
Stars
28.9k
actualizado
2026-06-27
Forks
3.7k
Cobertura ocupacional
6 categorías ocupacionales · 96% clasificado
explorador de repositorios

Skills en este repositorio

add-settings-page
sin clasificar

Add a new Sim settings page, or audit existing settings pages for design-system compliance with the shared SettingsPanel layout. Use when creating a settings tab, or when asked to check/clean up settings pages so they match the design system (consistent title, header, search, spacing).

2026-06-27
memory-load-check
Analistas de garantía de calidad de software y probadores

Review PRs and diffs for unbounded memory loading, concurrency explosions, oversized payload materialization, and missing pagination or byte caps. Use when reviewing cleanup jobs, background jobs, data imports/exports, file parsing, API fan-out, workflow execution payloads, large arrays/files, or any change that reads many rows, files, responses, logs, or external API pages into process memory.

2026-06-16
add-connector
Desarrolladores de software

Add or update a Sim knowledge base connector for syncing documents from an external source, including auth mode, config fields, pagination, document mapping, tags, and registry wiring. Use when working in `apps/sim/connectors/{service}/` or adding a new external document source.

2026-06-16
validate-connector
Analistas de garantía de calidad de software y probadores

Audit an existing Sim knowledge base connector against the service API docs and repository conventions, then report and fix issues in auth, config fields, pagination, document mapping, tags, and registry entries. Use when validating or repairing code in `apps/sim/connectors/{service}/`.

2026-06-16
db-migrate
Arquitectos de bases de datos

Author or review a Drizzle DB migration for zero-downtime safety — expand/contract phasing, backward-compatibility with the deployed app version, and writing the `-- migration-safe` acknowledgment the check:migrations lint requires. Use when adding/editing files under `packages/db/migrations/` or changing `packages/db/schema.ts`.

2026-06-16
ship
Desarrolladores de software

Commit, push, and open a PR to staging in one shot — runs the cleanup pass and, when migrations changed, the db-migrate safety review first

2026-06-16
add-model
Desarrolladores de software

Add a new LLM model to `apps/sim/providers/models.ts` with every pricing and capability value verified against the provider's live API docs (no hallucination), plus the repo-side touchpoints that are not data-driven — hosted-key billing, tests, and provider-code handling. Use when adding a model to an existing provider in `apps/sim/providers/models.ts`.

2026-06-15
add-block
Desarrolladores de software

Create or update a Sim integration block with correct subBlocks, conditions, dependsOn, modes, canonicalParamId usage, outputs, and tool wiring. Use when working on `apps/sim/blocks/blocks/{service}.ts` or aligning a block with its tools.

2026-06-13
add-integration
Desarrolladores de software

Add a complete Sim integration from API docs, covering tools, block, icon, optional triggers, registrations, and integration conventions. Use when introducing a new service under `apps/sim/tools`, `apps/sim/blocks`, and `apps/sim/triggers`.

2026-06-11
validate-integration
Analistas de garantía de calidad de software y probadores

Audit an existing Sim integration against the service API docs and repository conventions, then report and fix issues across tools, blocks, outputs, OAuth scopes, triggers, and registry entries. Use when validating or repairing a service integration under `apps/sim/tools`, `apps/sim/blocks`, or `apps/sim/triggers`.

2026-06-11
emcn-design-review
Diseñadores de interfaces web y digitales

Review UI code for alignment with the emcn design system — components, tokens, patterns, and conventions

2026-06-10
add-enrichment
Desarrolladores de software

Add a code-defined table enrichment (registry entry) under `apps/sim/enrichments/` backed by an ordered provider cascade, ensuring every provider tool it calls has hosted-key support. Use when adding a per-row table enrichment that fills cells via existing Sim tools.

2026-06-04
add-hosted-key
Desarrolladores de software

Add hosted API key support to a tool so Sim provides the key (metered and billed to the workspace) when a user has not brought their own. Use when adding a `hosting` config to a tool under `apps/sim/tools/{service}/`.

2026-06-04
council
Otras ocupaciones informáticas

Spawn parallel task agents to explore a given area of the codebase from multiple angles, then use their findings to answer the question or build a plan. Use when a task needs broad fan-out exploration across many files before acting.

2026-06-04
validate-model
Analistas de garantía de calidad de software y probadores

Validate a model entry (or every model in a provider) in `apps/sim/providers/models.ts` against the provider's live API docs, reporting pricing and capability drift, dead capability flags, hosting/billing intent, and any field that cannot be verified. Use when auditing or repairing model entries under `apps/sim/providers/models.ts`.

2026-06-04
sim-helm
Administradores de redes y sistemas informáticos

Install, upgrade, and operate the Sim Helm chart on Kubernetes. Covers install path selection (inline / existingSecret / External Secrets Operator), required secret generation, the values.yaml mental model (env vs envDefaults vs Secret), and common failure triage. Invoke when a user asks about deploying Sim to a cluster, authoring a Sim values.yaml, debugging a Sim pod that won't start, upgrading a Sim release, or wiring Sim into a secret manager.

2026-05-12
cleanup
Desarrolladores de software

Run all code quality skills in sequence — effects, memo, callbacks, state, React Query, and emcn design review

2026-04-30
react-query-best-practices
Desarrolladores de software

Audit React Query usage for best practices — key factories, staleTime, mutations, and server state ownership

2026-04-13
you-might-not-need-a-callback
Desarrolladores de software

Analyze and fix useCallback anti-patterns in your code

2026-04-13
you-might-not-need-a-memo
Desarrolladores de software

Analyze and fix useMemo/React.memo anti-patterns in your code

2026-04-13
you-might-not-need-state
Desarrolladores de software

Analyze and fix unnecessary useState, derived state, and server-state-in-local-state anti-patterns

2026-04-13
add-tools
Desarrolladores de software

Create or update Sim tool configurations from service API docs, including typed params, request mapping, response transforms, outputs, and registry entries. Use when working in `apps/sim/tools/{service}/` or fixing tool definitions for an integration.

2026-04-12
add-trigger
Desarrolladores de software

Create or update Sim webhook triggers using the generic trigger builder, service-specific setup instructions, outputs, and registry wiring. Use when working in `apps/sim/triggers/{service}/` or adding webhook support to an integration.

2026-04-12
validate-trigger
Desarrolladores de software

Audit an existing Sim webhook trigger against the service's webhook API docs and repository conventions, then report and fix issues across trigger definitions, provider handler, output alignment, registration, and security. Use when validating or repairing a trigger under `apps/sim/triggers/{service}/` or `apps/sim/lib/webhooks/providers/{service}.ts`.

2026-04-12
you-might-not-need-an-effect
Desarrolladores de software

Analyze and fix useEffect anti-patterns in your code

2026-04-07
add-hosted-key
Desarrolladores de software

Add hosted API key support to a tool so Sim provides the key when users don't bring their own. Use when adding hosted keys, BYOK support, hideWhenHosted, or hosted key pricing to a tool or block.

2026-04-01