Skip to main content
NangoHQ
GitHub-Creator-Profil

NangoHQ

Repository-Ansicht von 31 gesammelten Skills in 4 GitHub-Repositories.

gesammelte Skills
31
Repositories
4
aktualisiert
14. Aug. 2026
Repository-Explorer

Repositories und repräsentative Skills

building-nango-functions-locally
Softwareentwickler

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. Juni 2026
building-nango-functions-remotely
Softwareentwickler

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. Juni 2026
migrating-nango-deletion-detection
Softwareentwickler

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. Juni 2026
migrating-to-checkpoints
Softwareentwickler

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. Juni 2026
migrating-to-zero-yaml
Softwareentwickler

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. Juni 2026
nango-toolbox
Softwareentwickler

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. Juni 2026
action-builder-skill
Softwareentwickler

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. Dez. 2025
integration-patterns-skill
Softwareentwickler

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

17. Dez. 2025
Es werden 8 von 9 gesammelten Skills angezeigt.
adding-nango-provider-support
Softwareentwickler

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. Dez. 2025
nango-esm-migration
Softwareentwickler

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
Softwareentwickler

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
Softwareentwickler

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. Okt. 2025
creating-cursor-rules
Softwareentwickler

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

30. Okt. 2025
prpm-json-best-practices
Softwareentwickler

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

30. Okt. 2025
slash-command-builder
Softwareentwickler

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. Okt. 2025
slash-command-builder
Softwareentwickler

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. Okt. 2025
Es werden 8 von 9 gesammelten Skills angezeigt.
creating-integration-docs
Softwareentwickler

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. Aug. 2026
running-and-testing-locally
Softwareentwickler

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

4. Juni 2026
creating-database-migrations
Datenbankarchitekten

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
Sonstige Computerberufe

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
Softwarequalitätssicherungsanalysten und -tester

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
Sonstige Computerberufe

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. März 2026
building-and-verifying
Softwareentwickler

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

20. März 2026
running-tests
Softwarequalitätssicherungsanalysten und -tester

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

20. März 2026
building-nango-functions-locally
Softwareentwickler

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. Aug. 2026
building-nango-functions-remotely
Softwareentwickler

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. Aug. 2026
building-nango-functions
Softwareentwickler

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. Aug. 2026
migrating-nango-deletion-detection
Softwareentwickler

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. Aug. 2026
migrating-to-checkpoints
Softwareentwickler

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. Aug. 2026
4 von 4 Repositories angezeigt
Alle Repositories angezeigt