Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- Add 60 new agents across all 10 categories (75 -> 135)
- Add 95 new plugins with command files (25 -> 120)
- Update all agents to use model: opus
- Update README with complete plugin/agent tables
- Update marketplace.json with all 120 plugins
2026-02-04 21:08:28 +00:00

626 B

Generate an n8n workflow JSON from a natural language description of the automation.

Steps

  1. Parse the automation description:
  2. Design the workflow node graph:
  3. Generate the n8n workflow JSON:
  4. Add error handling:
  5. Add workflow metadata:
  6. Test the workflow structure for validity.
  7. Provide setup instructions for required credentials.

Format

{
  "name": "<workflow name>",
  "nodes": [...],
  "connections": {...},

Rules

  • Use the latest n8n node types and API formats.
  • Include credential placeholders, never hardcode secrets.
  • Add error handling nodes for production workflows.