bps-kit 1.2.2 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/.bps-kit.json +4 -4
  2. package/README.md +3 -0
  3. package/implementation_plan.md.resolved +37 -0
  4. package/package.json +2 -2
  5. package/templates/agents-template/ARCHITECTURE.md +21 -9
  6. package/templates/agents-template/agents/automation-specialist.md +157 -0
  7. package/templates/agents-template/rules/GEMINI.md +2 -10
  8. package/templates/agents-template/workflows/automate.md +153 -0
  9. package/templates/skills_normal/n8n-code-javascript/BUILTIN_FUNCTIONS.md +764 -0
  10. package/templates/skills_normal/n8n-code-javascript/COMMON_PATTERNS.md +1110 -0
  11. package/templates/skills_normal/n8n-code-javascript/DATA_ACCESS.md +782 -0
  12. package/templates/skills_normal/n8n-code-javascript/ERROR_PATTERNS.md +763 -0
  13. package/templates/skills_normal/n8n-code-javascript/README.md +350 -0
  14. package/templates/skills_normal/n8n-code-javascript/SKILL.md +699 -0
  15. package/templates/skills_normal/n8n-code-python/COMMON_PATTERNS.md +794 -0
  16. package/templates/skills_normal/n8n-code-python/DATA_ACCESS.md +702 -0
  17. package/templates/skills_normal/n8n-code-python/ERROR_PATTERNS.md +601 -0
  18. package/templates/skills_normal/n8n-code-python/README.md +386 -0
  19. package/templates/skills_normal/n8n-code-python/SKILL.md +748 -0
  20. package/templates/skills_normal/n8n-code-python/STANDARD_LIBRARY.md +974 -0
  21. package/templates/skills_normal/n8n-expression-syntax/COMMON_MISTAKES.md +393 -0
  22. package/templates/skills_normal/n8n-expression-syntax/EXAMPLES.md +483 -0
  23. package/templates/skills_normal/n8n-expression-syntax/README.md +93 -0
  24. package/templates/skills_normal/n8n-expression-syntax/SKILL.md +516 -0
  25. package/templates/skills_normal/n8n-mcp-tools-expert/README.md +99 -0
  26. package/templates/skills_normal/n8n-mcp-tools-expert/SEARCH_GUIDE.md +374 -0
  27. package/templates/skills_normal/n8n-mcp-tools-expert/SKILL.md +642 -0
  28. package/templates/skills_normal/n8n-mcp-tools-expert/VALIDATION_GUIDE.md +442 -0
  29. package/templates/skills_normal/n8n-mcp-tools-expert/WORKFLOW_GUIDE.md +618 -0
  30. package/templates/skills_normal/n8n-node-configuration/DEPENDENCIES.md +789 -0
  31. package/templates/skills_normal/n8n-node-configuration/OPERATION_PATTERNS.md +913 -0
  32. package/templates/skills_normal/n8n-node-configuration/README.md +364 -0
  33. package/templates/skills_normal/n8n-node-configuration/SKILL.md +785 -0
  34. package/templates/skills_normal/n8n-validation-expert/ERROR_CATALOG.md +943 -0
  35. package/templates/skills_normal/n8n-validation-expert/FALSE_POSITIVES.md +720 -0
  36. package/templates/skills_normal/n8n-validation-expert/README.md +290 -0
  37. package/templates/skills_normal/n8n-validation-expert/SKILL.md +689 -0
  38. package/templates/skills_normal/n8n-workflow-patterns/README.md +251 -0
  39. package/templates/skills_normal/n8n-workflow-patterns/SKILL.md +411 -0
  40. package/templates/skills_normal/n8n-workflow-patterns/ai_agent_workflow.md +784 -0
  41. package/templates/skills_normal/n8n-workflow-patterns/database_operations.md +785 -0
  42. package/templates/skills_normal/n8n-workflow-patterns/http_api_integration.md +734 -0
  43. package/templates/skills_normal/n8n-workflow-patterns/scheduled_tasks.md +773 -0
  44. package/templates/skills_normal/n8n-workflow-patterns/webhook_processing.md +545 -0
  45. package/templates/vault/n8n-code-javascript/SKILL.md +10 -10
  46. package/templates/vault/n8n-code-python/SKILL.md +11 -11
  47. package/templates/vault/n8n-expression-syntax/SKILL.md +4 -4
  48. package/templates/vault/n8n-mcp-tools-expert/SKILL.md +9 -9
  49. package/templates/vault/n8n-node-configuration/SKILL.md +2 -2
  50. package/templates/vault/n8n-validation-expert/SKILL.md +3 -3
  51. package/templates/vault/n8n-workflow-patterns/SKILL.md +11 -11
@@ -13,9 +13,9 @@ Master guide for using n8n-mcp MCP server tools to build workflows.
13
13
 
14
14
  n8n-mcp provides tools organized into categories:
15
15
 
16
- 1. **Node Discovery** → SEARCH_GUIDE.md
17
- 2. **Configuration Validation** → VALIDATION_GUIDE.md
18
- 3. **Workflow Management** → WORKFLOW_GUIDE.md
16
+ 1. **Node Discovery** → [SEARCH_GUIDE.md](SEARCH_GUIDE.md)
17
+ 2. **Configuration Validation** → [VALIDATION_GUIDE.md](VALIDATION_GUIDE.md)
18
+ 3. **Workflow Management** → [WORKFLOW_GUIDE.md](WORKFLOW_GUIDE.md)
19
19
  4. **Template Library** - Search and deploy 2,700+ real workflows
20
20
  5. **Documentation & Guides** - Tool docs, AI agent guide, Code node guides
21
21
 
@@ -363,13 +363,13 @@ await n8n_update_partial_workflow({
363
363
  ## Detailed Guides
364
364
 
365
365
  ### Node Discovery Tools
366
- See SEARCH_GUIDE.md for:
366
+ See [SEARCH_GUIDE.md](SEARCH_GUIDE.md) for:
367
367
  - search_nodes
368
368
  - get_node with detail levels (minimal, standard, full)
369
369
  - get_node modes (info, docs, search_properties, versions)
370
370
 
371
371
  ### Validation Tools
372
- See VALIDATION_GUIDE.md for:
372
+ See [VALIDATION_GUIDE.md](VALIDATION_GUIDE.md) for:
373
373
  - Validation profiles explained
374
374
  - validate_node with modes (minimal, full)
375
375
  - validate_workflow complete structure
@@ -377,7 +377,7 @@ See VALIDATION_GUIDE.md for:
377
377
  - Handling validation errors
378
378
 
379
379
  ### Workflow Management
380
- See WORKFLOW_GUIDE.md for:
380
+ See [WORKFLOW_GUIDE.md](WORKFLOW_GUIDE.md) for:
381
381
  - n8n_create_workflow
382
382
  - n8n_update_partial_workflow (17 operation types!)
383
383
  - Smart parameters (branch, case)
@@ -627,9 +627,9 @@ validate_node({nodeType: "nodes-base.webhook", config: {}, mode: "minimal"})
627
627
  7. activateWorkflow → go live!
628
628
 
629
629
  For details, see:
630
- - SEARCH_GUIDE.md - Node discovery
631
- - VALIDATION_GUIDE.md - Configuration validation
632
- - WORKFLOW_GUIDE.md - Workflow management
630
+ - [SEARCH_GUIDE.md](SEARCH_GUIDE.md) - Node discovery
631
+ - [VALIDATION_GUIDE.md](VALIDATION_GUIDE.md) - Configuration validation
632
+ - [WORKFLOW_GUIDE.md](WORKFLOW_GUIDE.md) - Workflow management
633
633
 
634
634
  ---
635
635
 
@@ -757,8 +757,8 @@ get_node({
757
757
 
758
758
  For comprehensive guides on specific topics:
759
759
 
760
- - **DEPENDENCIES.md** - Deep dive into property dependencies and displayOptions
761
- - **OPERATION_PATTERNS.md** - Common configuration patterns by node type
760
+ - **[DEPENDENCIES.md](DEPENDENCIES.md)** - Deep dive into property dependencies and displayOptions
761
+ - **[OPERATION_PATTERNS.md](OPERATION_PATTERNS.md)** - Common configuration patterns by node type
762
762
 
763
763
  ---
764
764
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: n8n-validation-expert
3
- description: Interpret validation errors and guide fixing them. Use when encountering validation errors, validation warnings, false positives, operator structure issues, or need help understanding validation results. Also use when asking about validation...
3
+ description: Interpret validation errors and guide fixing them. Use when encountering validation errors, validation warnings, false positives, operator structure issues, or need help understanding validation results. Also use when asking about validation profiles, error types, or the validation loop process.
4
4
  ---
5
5
 
6
6
  # n8n Validation Expert
@@ -662,8 +662,8 @@ n8n_autofix_workflow({
662
662
 
663
663
  For comprehensive error catalogs and false positive examples:
664
664
 
665
- - **ERROR_CATALOG.md** - Complete list of error types with examples
666
- - **FALSE_POSITIVES.md** - When warnings are acceptable
665
+ - **[ERROR_CATALOG.md](ERROR_CATALOG.md)** - Complete list of error types with examples
666
+ - **[FALSE_POSITIVES.md](FALSE_POSITIVES.md)** - When warnings are acceptable
667
667
 
668
668
  ---
669
669
 
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: n8n-workflow-patterns
3
- description: Proven workflow architectural patterns from real n8n workflows. Use when building new workflows, designing workflow structure, choosing workflow patterns, planning workflow architecture, or asking about webhook processing, HTTP API integration,...
3
+ description: Proven workflow architectural patterns from real n8n workflows. Use when building new workflows, designing workflow structure, choosing workflow patterns, planning workflow architecture, or asking about webhook processing, HTTP API integration, database operations, AI agent workflows, or scheduled tasks.
4
4
  ---
5
5
 
6
6
  # n8n Workflow Patterns
@@ -13,23 +13,23 @@ Proven architectural patterns for building n8n workflows.
13
13
 
14
14
  Based on analysis of real workflow usage:
15
15
 
16
- 1. **Webhook Processing** (Most Common)
16
+ 1. **[Webhook Processing](webhook_processing.md)** (Most Common)
17
17
  - Receive HTTP requests → Process → Output
18
18
  - Pattern: Webhook → Validate → Transform → Respond/Notify
19
19
 
20
- 2. **[HTTP API Integration]**
20
+ 2. **[HTTP API Integration](http_api_integration.md)**
21
21
  - Fetch from REST APIs → Transform → Store/Use
22
22
  - Pattern: Trigger → HTTP Request → Transform → Action → Error Handler
23
23
 
24
- 3. **Database Operations**
24
+ 3. **[Database Operations](database_operations.md)**
25
25
  - Read/Write/Sync database data
26
26
  - Pattern: Schedule → Query → Transform → Write → Verify
27
27
 
28
- 4. **AI Agent Workflow**
28
+ 4. **[AI Agent Workflow](ai_agent_workflow.md)**
29
29
  - AI agents with tools and memory
30
30
  - Pattern: Trigger → AI Agent (Model + Tools + Memory) → Output
31
31
 
32
- 5. **Scheduled Tasks**
32
+ 5. **[Scheduled Tasks](scheduled_tasks.md)**
33
33
  - Recurring automation workflows
34
34
  - Pattern: Schedule → Fetch → Process → Deliver → Log
35
35
 
@@ -329,11 +329,11 @@ Common workflow patterns:
329
329
 
330
330
  For comprehensive guidance on each pattern:
331
331
 
332
- - **webhook_processing.md** - Webhook patterns, data structure, response handling
333
- - **http_api_integration** - REST APIs, authentication, pagination, retries
334
- - **database_operations.md** - Queries, sync, transactions, batch processing
335
- - **ai_agent_workflow.md** - AI agents, tools, memory, langchain nodes
336
- - **scheduled_tasks.md** - Cron schedules, reports, maintenance tasks
332
+ - **[webhook_processing.md](webhook_processing.md)** - Webhook patterns, data structure, response handling
333
+ - **[http_api_integration.md](http_api_integration.md)** - REST APIs, authentication, pagination, retries
334
+ - **[database_operations.md](database_operations.md)** - Queries, sync, transactions, batch processing
335
+ - **[ai_agent_workflow.md](ai_agent_workflow.md)** - AI agents, tools, memory, langchain nodes
336
+ - **[scheduled_tasks.md](scheduled_tasks.md)** - Cron schedules, reports, maintenance tasks
337
337
 
338
338
  ---
339
339