Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

sim

يحتوي sim على 26 من skills المجمعة من simstudioai، مع تغطية مهنية على مستوى المستودع وصفحات 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