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

n8n-cli

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

수집된 skills
40
Stars
15
업데이트
2026-04-16
Forks
3
직업 범위
직업 카테고리 5개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

n8n-backup
네트워크·컴퓨터 시스템 관리자

Back up an entire n8n instance to a git-tracked directory. Exports all workflows, credentials, tags, and variables as a snapshot. NOT single-file export -- use /n8n-export for that. Use when creating full instance snapshots.

2026-04-16
n8n-cli-bulk
네트워크·컴퓨터 시스템 관리자

Run bulk activate/deactivate/archive/transfer operations across n8n workflows with mandatory dry-run first. Operates on existing tags -- NOT tag design (use /n8n-cli-tag-governance). Use for batch state changes and project reorgs.

2026-04-16
n8n-cli-cleanup
네트워크·컴퓨터 시스템 관리자

Find dead workflows, orphaned credentials, and duplicate webhooks for deletion. Outputs safe-to-delete recommendations. NOT tagging -- use /n8n-cli-tag-governance for that. Use for quarterly hygiene sweeps.

2026-04-16
n8n-cli-cost
네트워크·컴퓨터 시스템 관리자

Analyze n8n execution costs and usage patterns. Finds top consumers, hourly distribution, and triggers firing too often. Use when investigating high usage, before billing reviews, or optimizing execution counts.

2026-04-16
n8n-create
소프트웨어 개발자

Build an n8n workflow from an English description. Generates valid JSON and imports it via n8n-cli. Use when creating a new workflow from scratch based on a natural-language spec.

2026-04-16
n8n-creds
정보 보안 분석가

Audit n8n credentials and find gaps. Lists what exists, what workflows need, and what is missing. Use when auditing credentials, setting up new workflows, or troubleshooting auth failures.

2026-04-16
n8n-debug
소프트웨어 개발자

Analyze failed n8n executions and suggest fixes. Pulls error logs, groups by pattern, and diagnoses root causes. NOT replay -- use /n8n-cli-replay to re-run a specific failure. Use when debugging workflow errors.

2026-04-16
n8n-cli-deps
컴퓨터 시스템 분석가

Map n8n workflow dependencies as a graph. Shows sub-workflow calls, credential refs, and webhook URLs as tree, mermaid, or JSON. Use when understanding interconnections before making changes.

2026-04-16
n8n-diff
소프트웨어 품질 보증 분석가·테스터

Diff n8n workflow versions side-by-side. Shows structural changes between instances, local files, or backups. NOT a review -- use /n8n-cli-review for risk analysis. Use when checking for drift or auditing what changed.

2026-04-16
n8n-cli-document
소프트웨어 개발자

Generate human-readable markdown docs from an n8n workflow JSON. Covers trigger, steps, credentials, and failure modes. Use when documenting workflows for team handoff, audits, or onboarding.

2026-04-16
n8n-export
소프트웨어 개발자

Export individual n8n workflows to JSON files. Selective, single-workflow exports for git or sharing. NOT a full instance backup -- use /n8n-backup for that. Use when saving one workflow to a file.

2026-04-16
n8n-cli-from-cron
소프트웨어 개발자

Convert crontab entries into equivalent n8n workflows. Reads cron jobs and generates one workflow per entry. Use when migrating off bare cron onto n8n for visibility and error handling.

2026-04-16
n8n-cli-from-launchd
네트워크·컴퓨터 시스템 관리자

Convert macOS launchd plists into equivalent n8n workflows. Reads LaunchAgents and LaunchDaemons. macOS sibling to /n8n-cli-from-cron. Use when migrating off launchd onto n8n for observability.

2026-04-16
n8n-cli-from-mcp
소프트웨어 개발자

Convert an MCP server or Claude Code skill into an n8n workflow. Moves agent capabilities into n8n to run on a schedule or webhook without an agent. Use when productizing an MCP-driven prototype.

2026-04-16
n8n-cli-from-zapier
소프트웨어 개발자

Migrate a Zapier zap to an equivalent n8n workflow. Reads zap exports or descriptions and generates n8n JSON. Use when moving off Zapier for cost, ownership, or flexibility.

2026-04-16
n8n-cli-impact
네트워크·컴퓨터 시스템 관리자

Check blast radius before making n8n changes. Answers 'if I delete credential X or deactivate workflow Y, what breaks?' Use before any destructive operation in production.

2026-04-16
n8n-import
소프트웨어 개발자

Import n8n workflow JSON with guided credential mapping. Resolves credential references during import. Use when loading workflows from files, repos, or other instances into n8n.

2026-04-16
n8n-cli-meta-monitor
소프트웨어 개발자

Build a self-monitoring workflow inside n8n that alerts on failures via Slack/Discord/email. Creates an actual n8n workflow -- NOT a CLI watcher (use /n8n-monitor for that). Use when setting up always-on observability.

2026-04-16
n8n-migrate
소프트웨어 개발자

Migrate n8n workflows between instances (cloud to self-hosted or vice versa). Exports, remaps credentials, and imports in one pass. Use when moving workflows across n8n environments.

2026-04-16
n8n-monitor
네트워크·컴퓨터 시스템 관리자

Poll n8n execution stream from the terminal and surface failures. Runs outside n8n as a CLI watcher. NOT a workflow -- use /n8n-cli-meta-monitor to build an in-n8n alerting workflow. Use when watching for errors live.

2026-04-16
n8n-cli-node-usage
소프트웨어 개발자

Search all n8n workflows for a specific node type, credential, or pattern. Answers 'which workflows use Slack?' Use when an API changes, a node has a breaking update, or you need to find every use of a service.

2026-04-16
n8n-cli-refactor
소프트웨어 개발자

Refactor an n8n workflow for simplification. Finds redundant nodes, batching opportunities, and over-complex Code nodes, then proposes a cleaner version. Use when a workflow feels unwieldy or has grown past 20 nodes.

2026-04-16
n8n-cli-replay
소프트웨어 품질 보증 분석가·테스터

Replay a specific failed n8n execution with its original input data. Reproduces the failure on demand without waiting for the trigger. NOT pattern analysis -- use /n8n-debug for that. Use when reproducing an intermittent bug.

2026-04-16
n8n-cli-review
소프트웨어 품질 보증 분석가·테스터

Review n8n workflow changes PR-style with risk ratings. Explains what changed, why it matters, and flags dangers. NOT a raw diff -- use /n8n-diff for that. Use when approving changes before production or after a handoff.

2026-04-16
n8n-cli-schedule-audit
네트워크·컴퓨터 시스템 관리자

Audit n8n Schedule Triggers for cron collisions and bad expressions. Finds 50-things-at-3am pileups and suggests rebalanced schedules. Use before going to production, after imports, or when spreading load.

2026-04-16
n8n-cli-smoke
소프트웨어 품질 보증 분석가·테스터

Run smoke tests against n8n webhook workflows. Sends known-good payloads and verifies expected responses. Use when promoting to production, after major changes, or as a daily reliability check.

2026-04-16
n8n-status
네트워크·컴퓨터 시스템 관리자

Check n8n instance health, active workflows, and recent execution stats. Quick overview in one command. Use when checking if n8n is up, reviewing status, or getting an instance summary.

2026-04-16
n8n-cli-tag-governance
네트워크·컴퓨터 시스템 관리자

Design and enforce a tag taxonomy for n8n workflows. Finds untagged workflows, proposes tags based on content, and applies them. NOT deletion -- use /n8n-cli-cleanup for junk removal. Use when tagging is inconsistent or missing.

2026-04-16
n8n-cli-template
소프트웨어 개발자

Templatize or instantiate n8n workflows. Strips IDs and credentials to create reusable templates, or fills placeholders to create new workflows from templates. Use for sharing patterns across instances or building a library.

2026-04-16
n8n-cli-test-fixtures
소프트웨어 품질 보증 분석가·테스터

Generate realistic test payloads for n8n webhook workflows. Infers input schema and creates happy-path, edge-case, and error fixtures. Use when adding tests to an existing workflow or building one TDD-style.

2026-04-16
n8n-cli-to-mcp
소프트웨어 개발자

Expose an n8n workflow as an MCP tool for AI agents. Generates a tool definition that Claude, Cursor, or Codex can call. Inverse of /n8n-cli-from-mcp. Use when agents need to invoke an n8n workflow on demand.

2026-04-16
n8n-cli-upgrade-preflight
네트워크·컴퓨터 시스템 관리자

Pre-flight safety check before upgrading n8n. Scans for deprecated nodes, breaking changes, and at-risk community packages. Outputs a go/no-go report. Use before any major n8n version bump.

2026-04-16
n8n-webhook-test
소프트웨어 품질 보증 분석가·테스터

Fire test requests at n8n webhook endpoints from the terminal. Sends custom or empty payloads and shows the response. Use when testing webhooks, debugging integrations, or verifying triggers.

2026-04-16
n8n-code-javascript
소프트웨어 개발자

Write JavaScript in n8n Code nodes. Covers $input/$json/$node syntax, $helpers HTTP requests, DateTime, error patterns, and run-once vs run-for-each modes. Use when writing or fixing JS inside n8n.

2026-04-16
n8n-code-python
소프트웨어 개발자

Write Python in n8n Code nodes (beta). Covers _input/_json/_node syntax and stdlib-only constraints. JS is preferred for 95% of cases. Use only when Python stdlib functions are specifically needed in n8n.

2026-04-16
n8n-expression-syntax
소프트웨어 개발자

Validate and fix n8n expression syntax. Covers {{ }} double-brace syntax, $json/$node variables, and common mistakes. NOT Code node JS -- use /n8n-code-javascript for that. Use when debugging expressions.

2026-04-16
n8n-mcp-tools-expert
소프트웨어 개발자

Guide for using n8n-mcp MCP server tools effectively. Covers tool selection, parameter formats, node search, config validation, and template access. Use when invoking any n8n-mcp MCP tool.

2026-04-16
n8n-node-configuration
소프트웨어 개발자

Configure n8n nodes with operation-aware property guidance. Covers required fields, property dependencies, and detail levels per node type. Use when setting up node parameters or understanding which fields an operation needs.

2026-04-16
n8n-validation-expert
소프트웨어 품질 보증 분석가·테스터

Fix n8n workflow validation errors. Interprets error codes, identifies false positives, and guides fixes for operator structure issues. Use when a workflow fails validation or you need to understand validation profiles.

2026-04-16
n8n-workflow-patterns
컴퓨터 시스템 분석가

Reference library of proven n8n workflow architecture patterns. Covers webhooks, HTTP APIs, database ops, AI agents, and scheduled tasks. Use when designing workflow structure or choosing a pattern for a new build.

2026-04-16