Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

sim

sim에는 simstudioai에서 수집한 skills 26개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
26
Stars
28.9k
업데이트
2026-06-27
Forks
3.7k
직업 범위
직업 카테고리 6개 · 96% 분류됨
저장소 탐색

이 저장소의 skills

add-settings-page
미분류

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
소프트웨어 품질 보증 분석가·테스터

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
소프트웨어 개발자

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
소프트웨어 품질 보증 분석가·테스터

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
데이터베이스 아키텍트

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 품질 보증 분석가·테스터

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
웹·디지털 인터페이스 디자이너

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

2026-06-10
add-enrichment
소프트웨어 개발자

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
소프트웨어 개발자

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
기타 컴퓨터 관련 직업

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
소프트웨어 품질 보증 분석가·테스터

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
네트워크·컴퓨터 시스템 관리자

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
소프트웨어 개발자

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

2026-04-30
react-query-best-practices
소프트웨어 개발자

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

2026-04-13
you-might-not-need-a-callback
소프트웨어 개발자

Analyze and fix useCallback anti-patterns in your code

2026-04-13
you-might-not-need-a-memo
소프트웨어 개발자

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

2026-04-13
you-might-not-need-state
소프트웨어 개발자

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

2026-04-13
add-tools
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

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
소프트웨어 개발자

Analyze and fix useEffect anti-patterns in your code

2026-04-07
add-hosted-key
소프트웨어 개발자

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