@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.
- package/README.md +66 -29
- package/bin/entrypoints/cli/create-program.js +1 -1
- package/bin/entrypoints/cli/execute-command.js +4 -7
- package/bin/modules/agent-tool-configuration/index.js +1 -0
- package/bin/modules/agent-tool-configuration/mcp-config.js +134 -0
- package/bin/modules/interactive-guidance/prompts.js +1 -1
- package/bin/modules/mcp-server-selection-management/list-mcp-servers/handler.js +2 -2
- package/bin/modules/mcp-server-selection-management/stop-mcp-server/handler.js +5 -5
- package/bin/modules/mcp-server-selection-management/use-mcp-server/handler.js +4 -3
- package/bin/modules/skill-selection-management/list-skills/handler.js +2 -2
- package/bin/modules/skill-selection-management/stop-managing-file/handler.js +5 -4
- package/bin/modules/skill-selection-management/use-skill/handler.js +5 -4
- package/bin/modules/{sync-review → sync-review-orchestrator}/apply-action.js +4 -3
- package/bin/modules/{sync-review → sync-review-orchestrator}/handler.js +4 -4
- package/bin/modules/{sync-review → sync-review-orchestrator}/index.js +1 -0
- package/bin/modules/{sync-review → sync-review-orchestrator}/log-preview.js +1 -1
- package/bin/modules/{sync-review → sync-review-orchestrator}/sync-preview.js +3 -3
- package/bin/modules/{sync-review → sync-review-orchestrator}/unsupported-agent-cleanup.js +2 -2
- package/bin/modules/{workflow-mutation-readiness → sync-review-orchestrator}/workflow-mutation-readiness.js +4 -4
- package/bin/modules/{workflow-target-planning → template-catalog}/index.js +2 -1
- package/bin/modules/{template-catalog-rendering → template-catalog}/templates.js +42 -115
- package/bin/modules/workflow-configuration-manager/index.js +6 -0
- package/bin/modules/workflow-configuration-manager/list-mcp-servers/handler.js +46 -0
- package/bin/modules/workflow-configuration-manager/list-skills/command.js +1 -0
- package/bin/modules/workflow-configuration-manager/list-skills/handler.js +75 -0
- package/bin/modules/workflow-configuration-manager/stop-managing-file/command.js +1 -0
- package/bin/modules/workflow-configuration-manager/stop-managing-file/handler.js +221 -0
- package/bin/modules/workflow-configuration-manager/stop-mcp-server/command.js +1 -0
- package/bin/modules/workflow-configuration-manager/stop-mcp-server/handler.js +198 -0
- package/bin/modules/workflow-configuration-manager/use-mcp-server/command.js +1 -0
- package/bin/modules/workflow-configuration-manager/use-mcp-server/handler.js +193 -0
- package/bin/modules/workflow-configuration-manager/use-skill/command.js +1 -0
- package/bin/modules/workflow-configuration-manager/use-skill/handler.js +314 -0
- package/bin/modules/workflow-health-inspector/command.js +1 -0
- package/bin/modules/{workflow-health-diagnosis → workflow-health-inspector}/handler.js +7 -7
- package/bin/modules/workflow-installer/command.js +1 -0
- package/bin/modules/{project-adoption → workflow-installer}/handler.js +5 -4
- package/bin/modules/workflow-state-ledger/index.js +2 -0
- package/bin/modules/workflow-state-ledger/state-path.js +1 -0
- package/bin/modules/{workflow-state-registry → workflow-state-ledger}/state.js +40 -1
- package/bin/{modules/workflow-target-planning/workflow-targets.js → shared/expected-workflow-targets.js} +3 -104
- package/bin/shared/paths.js +1 -1
- package/bin/support/expected-workflow-targets.js +131 -0
- package/bin/support/interactive-guidance/index.js +1 -0
- package/bin/support/interactive-guidance/prompts.js +275 -0
- package/bin/support/version-advisory/index.js +1 -0
- package/bin/support/version-advisory/npm-version.js +205 -0
- package/package.json +2 -1
- package/templates/AGENTS.md +8 -0
- package/templates/manifest.json +5 -4
- package/bin/modules/template-catalog-rendering/index.js +0 -1
- package/bin/modules/workflow-mutation-readiness/index.js +0 -1
- package/bin/modules/workflow-state-registry/index.js +0 -1
- /package/bin/{modules/project-adoption/command.js → entrypoints/cli-command-surface/index.js} +0 -0
- /package/bin/modules/{sync-review → sync-review-orchestrator}/action-prompt.js +0 -0
- /package/bin/modules/{sync-review → sync-review-orchestrator}/command.js +0 -0
- /package/bin/modules/{workflow-target-planning → template-catalog}/catalog.js +0 -0
- /package/bin/modules/{workflow-health-diagnosis → workflow-configuration-manager/list-mcp-servers}/command.js +0 -0
- /package/bin/modules/{workflow-health-diagnosis → workflow-health-inspector}/index.js +0 -0
- /package/bin/modules/{project-adoption → workflow-installer}/index.js +0 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|