Skip to main content
NangoHQ
Profil créateur GitHub

NangoHQ

Vue par dépôt de 31 skills collectés dans 4 dépôts GitHub.

skills collectés
31
dépôts
4
mis à jour
14 août 2026
explorateur de dépôts

Dépôts et skills représentatifs

building-nango-functions-locally
Développeurs de logiciels

Builds Nango Functions in a checked-out Zero YAML TypeScript Nango project using local files, index.ts registration, nango dryrun, generated tests, and optional nango deploy. Use when creating or updating Nango actions or syncs locally.

2 juin 2026
building-nango-functions-remotely
Développeurs de logiciels

Builds Nango Functions without a checked-out Nango project by calling Nango remote compile, dryrun, and deploy endpoints, resolving NANGO_SERVER_URL from env or .env, and using shared action and sync patterns. Use when creating or updating Nango actions or…

2 juin 2026
migrating-nango-deletion-detection
Développeurs de logiciels

Migrates Nango syncs from deleteRecordsFromPreviousExecutions()/trackDeletes to trackDeletesStart/trackDeletesEnd for automated deletion detection (including checkpoint-based full refresh). Use when updating existing createSync code.

2 juin 2026
migrating-to-checkpoints
Développeurs de logiciels

Migrates existing Nango TypeScript createSync implementations from nango.lastSyncDate, legacy incremental syncType, and non-resumable full refreshes to checkpoint-based syncs. Use when updating customer Nango sync code to define checkpoint schemas, call…

2 juin 2026
migrating-to-zero-yaml
Développeurs de logiciels

Manually migrates legacy `nango.yaml` Nango projects to Zero YAML TypeScript by generating `models.ts`, `index.ts`, package/tsconfig scaffolding, and wrapping legacy scripts in `createSync()`, `createAction()`, or `createOnEvent()`. Use when a Nango repo…

2 juin 2026
nango-toolbox
Développeurs de logiciels

Universal gateway for any third-party API or SaaS (Google Calendar, Gmail, Slack, Notion, Linear, HubSpot, etc.). TRIGGER on any request to read or modify data in an external product, even when no matching MCP tool is loaded.

2 juin 2026
action-builder-skill
Développeurs de logiciels

Use when creating or refactoring Nango integration actions to be thin API wrappers - provides patterns for minimal transformation logic, direct proxy calls, and standardized structure

17 déc. 2025
integration-patterns-skill
Développeurs de logiciels

Shared patterns for Nango actions and syncs - working directory verification, inline schemas, parameter naming, type safety, and registration requirements. Private dependency skill.

17 déc. 2025
Affichage de 8 skills collectés sur 9.
adding-nango-provider-support
Développeurs de logiciels

Use when adding support for a new Nango provider - configures provider in providers.yaml, creates documentation (main page, setup guide, connect guide), and updates docs.json following established patterns

18 déc. 2025
nango-esm-migration
Développeurs de logiciels

Use when fixing CJS/ESM module issues in Nango integrations after zero-yaml migration - covers import path fixes, creating ESM wrappers for CJS vendor modules, and restoring commented-out code

27 nov. 2025
nango-dry-run
Développeurs de logiciels

Use when testing Nango syncs locally - runs dry-run command with proper parameters for integration testing without affecting production data

5 nov. 2025
agent-builder
Développeurs de logiciels

Use when creating, improving, or troubleshooting Claude Code subagents. Expert guidance on agent design, system prompts, tool access, model selection, and best practices for building specialized AI assistants.

30 oct. 2025
creating-cursor-rules
Développeurs de logiciels

Expert guidance for creating effective Cursor IDE rules with best practices, patterns, and examples

30 oct. 2025
prpm-json-best-practices
Développeurs de logiciels

Best practices for structuring prpm.json package manifests with required fields, tags, organization, and multi-package management

30 oct. 2025
slash-command-builder
Développeurs de logiciels

Use when creating, improving, or troubleshooting Claude Code slash commands. Expert guidance on command structure, arguments, frontmatter, tool permissions, and best practices for building effective custom commands.

30 oct. 2025
slash-command-builder
Développeurs de logiciels

Use when creating, improving, or troubleshooting Claude Code slash commands. Expert guidance on command structure, arguments, frontmatter, tool permissions, and best practices for building effective custom commands.

30 oct. 2025
Affichage de 8 skills collectés sur 9.
creating-integration-docs
Développeurs de logiciels

Use when adding documentation for a new Nango integration - creates main page, setup guide, and updates docs.json and providers.yaml following established patterns

14 août 2026
running-and-testing-locally
Développeurs de logiciels

Use when running the Nango application locally for development and browser testing - covers Docker services, dev commands, service URLs, and troubleshooting startup issues

4 juin 2026
creating-database-migrations
Architectes de bases de données

Use when adding or editing Nango database migrations - covers migration directory selection, timestamped .cjs naming, matching recent migration style, down migration decisions, and foreign key ON DELETE conventions.

26 mai 2026
creating-skills
Autres occupations informatiques

Use when creating new agent skills or improving existing ones - ensures skills are discoverable, scannable, and effective through proper structure, discovery optimization, and real examples

26 mai 2026
ui-visual-debugging
Analystes en assurance qualité des logiciels et testeurs

Use when modifying or visually debugging Nango frontend UI, including packages/webapp, packages/connect-ui, browser interactions, screenshots, and visual regressions. Prefer browser-controlled or headless Playwright checks; use Peekaboo only for native macOS,…

26 mai 2026
agent-builder
Autres occupations informatiques

Use when creating, improving, or troubleshooting Claude Code subagents. Expert guidance on agent design, system prompts, tool access, model selection, and best practices for building specialized AI assistants.

20 mars 2026
building-and-verifying
Développeurs de logiciels

Use when building the Nango monorepo or verifying TypeScript compilation - covers build commands, project references, common tsc errors, and package dependency order

20 mars 2026
running-tests
Analystes en assurance qualité des logiciels et testeurs

Use when running tests in the Nango monorepo - knows unit vs integration configs, vitest commands, Docker setup, and common test patterns

20 mars 2026
building-nango-functions-locally
Développeurs de logiciels

Builds Nango Functions in a checked-out Zero YAML TypeScript Nango project using local files, index.ts registration, nango dryrun, generated tests, and optional nango deploy via CLI. Use when creating, updating, validating, testing, or deploying Nango actions…

14 août 2026
building-nango-functions-remotely
Développeurs de logiciels

Builds Nango Functions without a checked-out Nango project by using the Nango /functions compile, dryrun, dryrun status, and deployment APIs with NANGO_SERVER_URL and NANGO_SECRET_KEY. Use when creating, updating, validating, testing, or deploying Nango…

14 août 2026
building-nango-functions
Développeurs de logiciels

Builds Nango Function implementation patterns for createAction() and createSync() without choosing a local CLI or remote API workflow. Use only when the user asks to create or update a Nango action or sync and it is unclear whether the work should happen in a…

14 août 2026
migrating-nango-deletion-detection
Développeurs de logiciels

Migrates Nango syncs from deleteRecordsFromPreviousExecutions()/trackDeletes to trackDeletesStart/trackDeletesEnd for automated deletion detection (including checkpoint-based full refresh). Use when updating existing createSync code.

14 août 2026
migrating-to-checkpoints
Développeurs de logiciels

Migrates existing Nango TypeScript createSync implementations from nango.lastSyncDate, legacy incremental syncType, and non-resumable full refreshes to checkpoint-based syncs. Use when updating customer Nango sync code to define checkpoint schemas, call…

14 août 2026
4 dépôts affichés sur 4
Tous les dépôts sont affichés