Skip to main content
NangoHQ
Perfil de creador de GitHub

NangoHQ

Vista por repositorio de 31 skills recopiladas en 4 repositorios de GitHub.

skills recopiladas
31
repositorios
4
actualizado
14 ago 2026
explorador de repositorios

Repositorios y skills representativas

building-nango-functions-locally
Desarrolladores de software

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 jun 2026
building-nango-functions-remotely
Desarrolladores de software

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 jun 2026
migrating-nango-deletion-detection
Desarrolladores de software

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 jun 2026
migrating-to-checkpoints
Desarrolladores de software

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 jun 2026
migrating-to-zero-yaml
Desarrolladores de software

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 jun 2026
nango-toolbox
Desarrolladores de software

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 jun 2026
action-builder-skill
Desarrolladores de software

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 dic 2025
integration-patterns-skill
Desarrolladores de software

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

17 dic 2025
Mostrando 8 de 9 skills recopiladas.
adding-nango-provider-support
Desarrolladores de software

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 dic 2025
nango-esm-migration
Desarrolladores de software

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
Desarrolladores de software

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
Desarrolladores de software

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
Desarrolladores de software

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

30 oct 2025
prpm-json-best-practices
Desarrolladores de software

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

30 oct 2025
slash-command-builder
Desarrolladores de software

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
Desarrolladores de software

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
Mostrando 8 de 9 skills recopiladas.
creating-integration-docs
Desarrolladores de software

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 ago 2026
running-and-testing-locally
Desarrolladores de software

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

4 jun 2026
creating-database-migrations
Arquitectos de bases de datos

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 may 2026
creating-skills
Otras ocupaciones informáticas

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 may 2026
ui-visual-debugging
Analistas de garantía de calidad de software y probadores

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 may 2026
agent-builder
Otras ocupaciones informáticas

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 mar 2026
building-and-verifying
Desarrolladores de software

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

20 mar 2026
running-tests
Analistas de garantía de calidad de software y probadores

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

20 mar 2026
building-nango-functions-locally
Desarrolladores de software

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 ago 2026
building-nango-functions-remotely
Desarrolladores de software

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 ago 2026
building-nango-functions
Desarrolladores de software

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 ago 2026
migrating-nango-deletion-detection
Desarrolladores de software

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 ago 2026
migrating-to-checkpoints
Desarrolladores de software

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 ago 2026
Mostrando 4 de 4 repositorios
Todos los repositorios cargados