@juancr11/sibu 0.17.0 → 0.18.0

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 (60) hide show
  1. package/README.md +66 -29
  2. package/bin/entrypoints/cli/create-program.js +1 -1
  3. package/bin/entrypoints/cli/execute-command.js +4 -7
  4. package/bin/modules/agent-tool-configuration/index.js +1 -0
  5. package/bin/modules/agent-tool-configuration/mcp-config.js +134 -0
  6. package/bin/modules/interactive-guidance/prompts.js +1 -1
  7. package/bin/modules/mcp-server-selection-management/list-mcp-servers/handler.js +2 -2
  8. package/bin/modules/mcp-server-selection-management/stop-mcp-server/handler.js +5 -5
  9. package/bin/modules/mcp-server-selection-management/use-mcp-server/handler.js +4 -3
  10. package/bin/modules/skill-selection-management/list-skills/handler.js +2 -2
  11. package/bin/modules/skill-selection-management/stop-managing-file/handler.js +5 -4
  12. package/bin/modules/skill-selection-management/use-skill/handler.js +5 -4
  13. package/bin/modules/{sync-review → sync-review-orchestrator}/apply-action.js +4 -3
  14. package/bin/modules/{sync-review → sync-review-orchestrator}/handler.js +4 -4
  15. package/bin/modules/{sync-review → sync-review-orchestrator}/index.js +1 -0
  16. package/bin/modules/{sync-review → sync-review-orchestrator}/log-preview.js +1 -1
  17. package/bin/modules/{sync-review → sync-review-orchestrator}/sync-preview.js +3 -3
  18. package/bin/modules/{sync-review → sync-review-orchestrator}/unsupported-agent-cleanup.js +2 -2
  19. package/bin/modules/{workflow-mutation-readiness → sync-review-orchestrator}/workflow-mutation-readiness.js +4 -4
  20. package/bin/modules/{workflow-target-planning → template-catalog}/index.js +2 -1
  21. package/bin/modules/{template-catalog-rendering → template-catalog}/templates.js +42 -115
  22. package/bin/modules/workflow-configuration-manager/index.js +6 -0
  23. package/bin/modules/workflow-configuration-manager/list-mcp-servers/handler.js +46 -0
  24. package/bin/modules/workflow-configuration-manager/list-skills/command.js +1 -0
  25. package/bin/modules/workflow-configuration-manager/list-skills/handler.js +75 -0
  26. package/bin/modules/workflow-configuration-manager/stop-managing-file/command.js +1 -0
  27. package/bin/modules/workflow-configuration-manager/stop-managing-file/handler.js +221 -0
  28. package/bin/modules/workflow-configuration-manager/stop-mcp-server/command.js +1 -0
  29. package/bin/modules/workflow-configuration-manager/stop-mcp-server/handler.js +198 -0
  30. package/bin/modules/workflow-configuration-manager/use-mcp-server/command.js +1 -0
  31. package/bin/modules/workflow-configuration-manager/use-mcp-server/handler.js +193 -0
  32. package/bin/modules/workflow-configuration-manager/use-skill/command.js +1 -0
  33. package/bin/modules/workflow-configuration-manager/use-skill/handler.js +314 -0
  34. package/bin/modules/workflow-health-inspector/command.js +1 -0
  35. package/bin/modules/{workflow-health-diagnosis → workflow-health-inspector}/handler.js +7 -7
  36. package/bin/modules/workflow-installer/command.js +1 -0
  37. package/bin/modules/{project-adoption → workflow-installer}/handler.js +5 -4
  38. package/bin/modules/workflow-state-ledger/index.js +2 -0
  39. package/bin/modules/workflow-state-ledger/state-path.js +1 -0
  40. package/bin/modules/{workflow-state-registry → workflow-state-ledger}/state.js +40 -1
  41. package/bin/{modules/workflow-target-planning/workflow-targets.js → shared/expected-workflow-targets.js} +3 -104
  42. package/bin/shared/paths.js +1 -1
  43. package/bin/support/expected-workflow-targets.js +131 -0
  44. package/bin/support/interactive-guidance/index.js +1 -0
  45. package/bin/support/interactive-guidance/prompts.js +275 -0
  46. package/bin/support/version-advisory/index.js +1 -0
  47. package/bin/support/version-advisory/npm-version.js +205 -0
  48. package/package.json +2 -1
  49. package/templates/AGENTS.md +8 -0
  50. package/templates/manifest.json +5 -4
  51. package/bin/modules/template-catalog-rendering/index.js +0 -1
  52. package/bin/modules/workflow-mutation-readiness/index.js +0 -1
  53. package/bin/modules/workflow-state-registry/index.js +0 -1
  54. /package/bin/{modules/project-adoption/command.js → entrypoints/cli-command-surface/index.js} +0 -0
  55. /package/bin/modules/{sync-review → sync-review-orchestrator}/action-prompt.js +0 -0
  56. /package/bin/modules/{sync-review → sync-review-orchestrator}/command.js +0 -0
  57. /package/bin/modules/{workflow-target-planning → template-catalog}/catalog.js +0 -0
  58. /package/bin/modules/{workflow-health-diagnosis → workflow-configuration-manager/list-mcp-servers}/command.js +0 -0
  59. /package/bin/modules/{workflow-health-diagnosis → workflow-health-inspector}/index.js +0 -0
  60. /package/bin/modules/{project-adoption → workflow-installer}/index.js +0 -0