@paradigma-inc/flywheel 0.1.26 → 0.1.51
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 +117 -60
- package/bin/flywheel.js +10 -3
- package/package.json +5 -1
- package/skills/flywheel/SKILL.md +13 -1
- package/skills/flywheel/campaigns/participating-in-a-campaign.md +2 -2
- package/skills/flywheel/compute/managed-compute.md +26 -7
- package/skills/flywheel/example-workflows/organizing-exploring-and-iterating-on-a-research-topic.md +11 -11
- package/skills/flywheel/example-workflows/reproducing-papers-on-a-budget.md +8 -8
- package/skills/flywheel/getting-started/flywheel-tutorial-overview.md +2 -1
- package/skills/flywheel/references/ARTIFACTS.md +48 -0
- package/skills/flywheel/references/INTERFACES.md +208 -0
- package/skills/flywheel/references/experiment-design-protocol.md +5 -5
- package/skills/flywheel/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel/references/flywheel-mcp-tool-map.md +109 -63
- package/skills/flywheel/setting-up-flywheel/claude-code-cli-installation.md +1 -1
- package/skills/flywheel/setting-up-flywheel/codex-cli-installation.md +1 -1
- package/skills/flywheel/setting-up-flywheel/how-can-i-get-an-authorized-client_id-for-the-oauth-flow.md +3 -3
- package/skills/flywheel/setting-up-flywheel/installation-overview.md +19 -4
- package/skills/flywheel/setting-up-flywheel/other-hosts-installation.md +1 -1
- package/skills/flywheel/usage-and-workflows/what-to-do-with-flywheel.md +28 -1
- package/skills/flywheel/web-ui/the-flywheel-web-ui.md +1 -1
- package/skills/flywheel-auto/SKILL.md +23 -12
- package/skills/flywheel-auto/references/ARTIFACTS.md +1 -1
- package/skills/flywheel-auto/references/INTERFACES.md +61 -59
- package/skills/flywheel-auto/references/experiment-design-protocol.md +5 -5
- package/skills/flywheel-auto/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-auto/references/flywheel-mcp-tool-map.md +76 -63
- package/skills/flywheel-lookahead/SKILL.md +22 -11
- package/skills/flywheel-lookahead/references/ARTIFACTS.md +1 -1
- package/skills/flywheel-lookahead/references/INTERFACES.md +61 -59
- package/skills/flywheel-lookahead/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-lookahead/references/flywheel-mcp-tool-map.md +76 -63
- package/skills/flywheel-prove/SKILL.md +17 -0
- package/skills/flywheel-reproduce/SKILL.md +23 -12
- package/skills/flywheel-reproduce/references/ARTIFACTS.md +1 -1
- package/skills/flywheel-reproduce/references/INTERFACES.md +61 -59
- package/skills/flywheel-reproduce/references/experiment-design-protocol.md +5 -5
- package/skills/flywheel-reproduce/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-reproduce/references/flywheel-mcp-tool-map.md +76 -63
- package/skills/flywheel-to-graph/SKILL.md +20 -9
- package/skills/flywheel-to-graph/references/ARTIFACTS.md +1 -1
- package/skills/flywheel-to-graph/references/INTERFACES.md +61 -59
- package/skills/flywheel-to-graph/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-to-graph/references/flywheel-mcp-tool-map.md +76 -63
- package/skills/flywheel-tree/SKILL.md +70 -0
- package/skills/flywheel-tree/agents/interface.yaml +4 -0
- package/skills/flywheel-tree/assets/ansi_palette.json +29 -0
- package/skills/flywheel-tree/references/workflow.md +108 -0
- package/skills/flywheel-tree/scripts/render_tree.py +407 -0
- package/skills/flywheel-tree/scripts/render_tree_via_mcp.py +694 -0
- package/src/cli.mjs +204 -582
- package/src/mcp-writer.mjs +2 -2
- package/src/runtime/delegate.mjs +21 -0
- package/src/runtime/required-runtime-commands.json +117 -0
- package/src/runtime/runtime-config.mjs +84 -0
- package/src/runtime/vendor/.gitkeep +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/active-key-id.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/active-key-id.js +22 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/active-key-id.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/baseurl.d.ts +35 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/baseurl.js +64 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/baseurl.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.d.ts +34 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.js +92 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/config.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/fingerprint.d.ts +5 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/fingerprint.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/fingerprint.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.d.ts +4 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js +31 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/keychain.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.d.ts +23 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js +387 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/login.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.d.ts +15 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.js +150 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/profile.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.d.ts +26 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.js +27 -0
- package/src/runtime/vendor/flywheel-cli-dist/auth/profiles.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.d.ts +32 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.js +171 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_artifacts-upload-helpers.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.js +26 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_open-url.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_stream-writer.d.ts +34 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_stream-writer.js +63 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_stream-writer.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_wait-polling.d.ts +29 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_wait-polling.js +75 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/_wait-polling.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-detach.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-detach.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-detach.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-add.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-add.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-add.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-remove.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-remove.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-remove.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-set-primary.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-set-primary.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-emails-set-primary.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-get.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-get.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-get.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-preview.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-preview.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-preview.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-proof.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-proof.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge-proof.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge.js +11 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/account-merge.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.d.ts +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/aliases.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-create.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-create.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-create.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-delete.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-delete.js +20 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-delete.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-list.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-list.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-rotate.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-rotate.js +21 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/api-keys-rotate.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-expire.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-expire.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-expire.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-heartbeat.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-heartbeat.js +29 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-heartbeat.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-list.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/approval-sessions-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-delete.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-get.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-get.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-get.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-list.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.js +9 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-note-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-finalize.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.js +15 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload-prepare.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.js +5 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/artifacts-upload.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-clear.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.js +30 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-keychain-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.js +34 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-login.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.js +4 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/auth-status.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/blobs-get.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/blobs-get.js +18 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/blobs-get.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-create.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-create.js +11 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-create.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-list.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-list.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-revoke.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-revoke.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-revoke.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-update.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-update.js +22 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-budgets-update.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-snapshot.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-snapshot.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/campaign-snapshot.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-acquire.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-acquire.js +39 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-acquire.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-budgets.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-budgets.js +14 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-budgets.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-connection.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-connection.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-connection.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-funding.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-funding.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-funding.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-list.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-request-approval.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-request-approval.js +53 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-grants-request-approval.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-options.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-options.js +17 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-options.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-policy-get.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-policy-get.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-policy-get.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-policy-set.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-policy-set.js +19 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-policy-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release-all.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release-all.js +39 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release-all.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release.js +28 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-release.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-status.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-status.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/compute-status.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-balance.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-balance.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-balance.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-billing-portal.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-billing-portal.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-billing-portal.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-purchase.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-purchase.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-purchase.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral-claim.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral-claim.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral-claim.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-referral.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscribe.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscribe.js +14 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscribe.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscription.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscription.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-subscription.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-transactions.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-transactions.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-transactions.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-usage.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-usage.js +9 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/credits-usage.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/enums.d.ts +16 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/enums.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/enums.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.d.ts +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.js +65 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/env.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-launch.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-launch.js +11 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-launch.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-list.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-list.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-terminate.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-terminate.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/executions-terminate.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-history.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-history.js +82 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-history.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-subgraph.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-subgraph.js +18 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-subgraph.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-pdf.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-pdf.js +19 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-pdf.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-render-pdf.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-render-pdf.js +65 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-render-pdf.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-stream.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-stream.js +174 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary-stream.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary.js +9 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/export-summary.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/files-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/files-list.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/files-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-disconnect.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-disconnect.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-disconnect.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-link.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-link.js +17 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-link.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-refresh-repos.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-refresh-repos.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-refresh-repos.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-status.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-status.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/github-status.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-get.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-get.js +15 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/graph-get.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/handler-factory.d.ts +22 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/handler-factory.js +51 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/handler-factory.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.d.ts +23 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.js +258 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/help.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/import-subgraph.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/import-subgraph.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/import-subgraph.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.d.ts +20 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js +238 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/index.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-remove.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-remove.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-remove.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-set.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-set.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-huggingface-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-status.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-status.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-status.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-remove.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-remove.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-remove.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-set.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-set.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/integrations-wandb-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/machines-list.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/machines-list.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/machines-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-add-parent.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-audit-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-audit-list.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-audit-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-branch.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit-new.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-commit.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-create.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.js +14 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete-bulk.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.js +9 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-delete.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-files.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-files.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-files.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-get.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-get.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-get.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-list.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.js +33 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-merge.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-remove-parent.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-ancestry.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-ancestry.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-ancestry.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-summary.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-summary.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-summary.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-tree.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-tree.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-render-tree.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-resolve-slug.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-resolve-slug.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-resolve-slug.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-get.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-get.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-get.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set-bulk.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set-bulk.js +20 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set-bulk.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-summaries.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-summaries.js +11 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-sharing-summaries.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-backfill-hypothesis.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-backfill-hypothesis.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-backfill-hypothesis.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-backfill-insights.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-backfill-insights.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-backfill-insights.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-acquire.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-acquire.js +13 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-acquire.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-heartbeat.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-heartbeat.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-heartbeat.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-release.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-release.js +7 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/nodes-stage-lease-release.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.js +56 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-set.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-show.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/profile-unset.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/account.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/account.js +124 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/account.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/api-keys.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/api-keys.js +103 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/api-keys.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/approval.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/approval.js +101 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/approval.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js +104 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/artifacts.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.js +37 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/auth.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/budgets.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/budgets.js +72 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/budgets.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/compute.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/compute.js +128 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/compute.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/credits.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/credits.js +134 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/credits.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/env.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/env.js +39 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/env.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/executions.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/executions.js +55 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/executions.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/export.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/export.js +88 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/export.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/github.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/github.js +60 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/github.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/graph.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/graph.js +22 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/graph.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/integrations.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/integrations.js +69 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/integrations.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.js +284 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/lifecycle.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.js +82 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/profile.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/resources.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/resources.js +108 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/resources.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/sharing.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/sharing.js +69 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/sharing.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.js +98 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/tagging.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/updates.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/updates.js +70 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry/updates.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.d.ts +25 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js +441 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/registry.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.js +25 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-assign.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.js +25 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-create.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.js +11 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-delete.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.js +28 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/tags-update.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/types.d.ts +30 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/types.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/types.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide-all-active.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide-all-active.js +6 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide-all-active.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide.js +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-hide.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-list.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-list.js +12 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/updates-list.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/utils.d.ts +10 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/utils.js +171 -0
- package/src/runtime/vendor/flywheel-cli-dist/commands/utils.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/errors.d.ts +55 -0
- package/src/runtime/vendor/flywheel-cli-dist/errors.js +51 -0
- package/src/runtime/vendor/flywheel-cli-dist/errors.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/exit-codes.d.ts +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/exit-codes.js +8 -0
- package/src/runtime/vendor/flywheel-cli-dist/exit-codes.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.d.ts +26 -0
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.js +117 -0
- package/src/runtime/vendor/flywheel-cli-dist/grammar/globals.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.d.ts +17 -0
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.js +102 -0
- package/src/runtime/vendor/flywheel-cli-dist/grammar/parse.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/client.d.ts +75 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js +369 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/client.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.d.ts +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.js +68 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/debug.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/poll.d.ts +18 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/poll.js +57 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/poll.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.d.ts +30 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.js +127 -0
- package/src/runtime/vendor/flywheel-cli-dist/http/retry.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/main.d.ts +31 -0
- package/src/runtime/vendor/flywheel-cli-dist/main.js +763 -0
- package/src/runtime/vendor/flywheel-cli-dist/main.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/output/format.d.ts +9 -0
- package/src/runtime/vendor/flywheel-cli-dist/output/format.js +129 -0
- package/src/runtime/vendor/flywheel-cli-dist/output/format.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/runtime-entry.d.ts +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/runtime-entry.js +2 -0
- package/src/runtime/vendor/flywheel-cli-dist/runtime-entry.js.map +1 -0
- package/src/runtime/vendor/flywheel-cli-dist/version.d.ts +3 -0
- package/src/runtime/vendor/flywheel-cli-dist/version.js +31 -0
- package/src/runtime/vendor/flywheel-cli-dist/version.js.map +1 -0
- package/src/runtime/vendor/manifest.json +500 -0
- package/src/setup/command.mjs +24 -0
- package/src/setup/io/patchers/json.mjs +33 -0
- package/src/setup/io/patchers/toml.mjs +15 -0
- package/src/setup/io/patchers/yaml.mjs +33 -0
- package/src/setup/mode.mjs +113 -0
- package/src/setup/modes/cli.mjs +317 -0
- package/src/setup/modes/mcp-command.mjs +850 -0
- package/src/setup/modes/mcp.mjs +176 -0
- package/src/setup/preflight.mjs +54 -0
- package/src/setup/shared/prior-mode-detect.mjs +412 -0
- package/src/setup/shared/skill.mjs +12 -0
- package/src/setup/shared/summary.mjs +80 -0
- package/src/setup-auth.mjs +293 -178
- package/src/unified-cli.mjs +161 -0
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
{
|
|
2
|
+
"sourceCommit": "ffedf6bc3851ff31746837968cf586a6fee876b4",
|
|
3
|
+
"files": [
|
|
4
|
+
"auth/active-key-id.d.ts",
|
|
5
|
+
"auth/active-key-id.js",
|
|
6
|
+
"auth/active-key-id.js.map",
|
|
7
|
+
"auth/baseurl.d.ts",
|
|
8
|
+
"auth/baseurl.js",
|
|
9
|
+
"auth/baseurl.js.map",
|
|
10
|
+
"auth/config.d.ts",
|
|
11
|
+
"auth/config.js",
|
|
12
|
+
"auth/config.js.map",
|
|
13
|
+
"auth/fingerprint.d.ts",
|
|
14
|
+
"auth/fingerprint.js",
|
|
15
|
+
"auth/fingerprint.js.map",
|
|
16
|
+
"auth/keychain.d.ts",
|
|
17
|
+
"auth/keychain.js",
|
|
18
|
+
"auth/keychain.js.map",
|
|
19
|
+
"auth/login.d.ts",
|
|
20
|
+
"auth/login.js",
|
|
21
|
+
"auth/login.js.map",
|
|
22
|
+
"auth/profile.d.ts",
|
|
23
|
+
"auth/profile.js",
|
|
24
|
+
"auth/profile.js.map",
|
|
25
|
+
"auth/profiles.d.ts",
|
|
26
|
+
"auth/profiles.js",
|
|
27
|
+
"auth/profiles.js.map",
|
|
28
|
+
"commands/_artifacts-upload-helpers.d.ts",
|
|
29
|
+
"commands/_artifacts-upload-helpers.js",
|
|
30
|
+
"commands/_artifacts-upload-helpers.js.map",
|
|
31
|
+
"commands/_open-url.d.ts",
|
|
32
|
+
"commands/_open-url.js",
|
|
33
|
+
"commands/_open-url.js.map",
|
|
34
|
+
"commands/_stream-writer.d.ts",
|
|
35
|
+
"commands/_stream-writer.js",
|
|
36
|
+
"commands/_stream-writer.js.map",
|
|
37
|
+
"commands/_wait-polling.d.ts",
|
|
38
|
+
"commands/_wait-polling.js",
|
|
39
|
+
"commands/_wait-polling.js.map",
|
|
40
|
+
"commands/account-detach.d.ts",
|
|
41
|
+
"commands/account-detach.js",
|
|
42
|
+
"commands/account-detach.js.map",
|
|
43
|
+
"commands/account-emails-add.d.ts",
|
|
44
|
+
"commands/account-emails-add.js",
|
|
45
|
+
"commands/account-emails-add.js.map",
|
|
46
|
+
"commands/account-emails-remove.d.ts",
|
|
47
|
+
"commands/account-emails-remove.js",
|
|
48
|
+
"commands/account-emails-remove.js.map",
|
|
49
|
+
"commands/account-emails-set-primary.d.ts",
|
|
50
|
+
"commands/account-emails-set-primary.js",
|
|
51
|
+
"commands/account-emails-set-primary.js.map",
|
|
52
|
+
"commands/account-get.d.ts",
|
|
53
|
+
"commands/account-get.js",
|
|
54
|
+
"commands/account-get.js.map",
|
|
55
|
+
"commands/account-merge-preview.d.ts",
|
|
56
|
+
"commands/account-merge-preview.js",
|
|
57
|
+
"commands/account-merge-preview.js.map",
|
|
58
|
+
"commands/account-merge-proof.d.ts",
|
|
59
|
+
"commands/account-merge-proof.js",
|
|
60
|
+
"commands/account-merge-proof.js.map",
|
|
61
|
+
"commands/account-merge.d.ts",
|
|
62
|
+
"commands/account-merge.js",
|
|
63
|
+
"commands/account-merge.js.map",
|
|
64
|
+
"commands/aliases.d.ts",
|
|
65
|
+
"commands/aliases.js",
|
|
66
|
+
"commands/aliases.js.map",
|
|
67
|
+
"commands/api-keys-create.d.ts",
|
|
68
|
+
"commands/api-keys-create.js",
|
|
69
|
+
"commands/api-keys-create.js.map",
|
|
70
|
+
"commands/api-keys-delete.d.ts",
|
|
71
|
+
"commands/api-keys-delete.js",
|
|
72
|
+
"commands/api-keys-delete.js.map",
|
|
73
|
+
"commands/api-keys-list.d.ts",
|
|
74
|
+
"commands/api-keys-list.js",
|
|
75
|
+
"commands/api-keys-list.js.map",
|
|
76
|
+
"commands/api-keys-rotate.d.ts",
|
|
77
|
+
"commands/api-keys-rotate.js",
|
|
78
|
+
"commands/api-keys-rotate.js.map",
|
|
79
|
+
"commands/approval-sessions-expire.d.ts",
|
|
80
|
+
"commands/approval-sessions-expire.js",
|
|
81
|
+
"commands/approval-sessions-expire.js.map",
|
|
82
|
+
"commands/approval-sessions-heartbeat.d.ts",
|
|
83
|
+
"commands/approval-sessions-heartbeat.js",
|
|
84
|
+
"commands/approval-sessions-heartbeat.js.map",
|
|
85
|
+
"commands/approval-sessions-list.d.ts",
|
|
86
|
+
"commands/approval-sessions-list.js",
|
|
87
|
+
"commands/approval-sessions-list.js.map",
|
|
88
|
+
"commands/artifacts-delete.d.ts",
|
|
89
|
+
"commands/artifacts-delete.js",
|
|
90
|
+
"commands/artifacts-delete.js.map",
|
|
91
|
+
"commands/artifacts-get.d.ts",
|
|
92
|
+
"commands/artifacts-get.js",
|
|
93
|
+
"commands/artifacts-get.js.map",
|
|
94
|
+
"commands/artifacts-list.d.ts",
|
|
95
|
+
"commands/artifacts-list.js",
|
|
96
|
+
"commands/artifacts-list.js.map",
|
|
97
|
+
"commands/artifacts-note-set.d.ts",
|
|
98
|
+
"commands/artifacts-note-set.js",
|
|
99
|
+
"commands/artifacts-note-set.js.map",
|
|
100
|
+
"commands/artifacts-upload-finalize.d.ts",
|
|
101
|
+
"commands/artifacts-upload-finalize.js",
|
|
102
|
+
"commands/artifacts-upload-finalize.js.map",
|
|
103
|
+
"commands/artifacts-upload-prepare.d.ts",
|
|
104
|
+
"commands/artifacts-upload-prepare.js",
|
|
105
|
+
"commands/artifacts-upload-prepare.js.map",
|
|
106
|
+
"commands/artifacts-upload.d.ts",
|
|
107
|
+
"commands/artifacts-upload.js",
|
|
108
|
+
"commands/artifacts-upload.js.map",
|
|
109
|
+
"commands/auth-keychain-clear.d.ts",
|
|
110
|
+
"commands/auth-keychain-clear.js",
|
|
111
|
+
"commands/auth-keychain-clear.js.map",
|
|
112
|
+
"commands/auth-keychain-set.d.ts",
|
|
113
|
+
"commands/auth-keychain-set.js",
|
|
114
|
+
"commands/auth-keychain-set.js.map",
|
|
115
|
+
"commands/auth-login.d.ts",
|
|
116
|
+
"commands/auth-login.js",
|
|
117
|
+
"commands/auth-login.js.map",
|
|
118
|
+
"commands/auth-status.d.ts",
|
|
119
|
+
"commands/auth-status.js",
|
|
120
|
+
"commands/auth-status.js.map",
|
|
121
|
+
"commands/blobs-get.d.ts",
|
|
122
|
+
"commands/blobs-get.js",
|
|
123
|
+
"commands/blobs-get.js.map",
|
|
124
|
+
"commands/campaign-budgets-create.d.ts",
|
|
125
|
+
"commands/campaign-budgets-create.js",
|
|
126
|
+
"commands/campaign-budgets-create.js.map",
|
|
127
|
+
"commands/campaign-budgets-list.d.ts",
|
|
128
|
+
"commands/campaign-budgets-list.js",
|
|
129
|
+
"commands/campaign-budgets-list.js.map",
|
|
130
|
+
"commands/campaign-budgets-revoke.d.ts",
|
|
131
|
+
"commands/campaign-budgets-revoke.js",
|
|
132
|
+
"commands/campaign-budgets-revoke.js.map",
|
|
133
|
+
"commands/campaign-budgets-update.d.ts",
|
|
134
|
+
"commands/campaign-budgets-update.js",
|
|
135
|
+
"commands/campaign-budgets-update.js.map",
|
|
136
|
+
"commands/campaign-snapshot.d.ts",
|
|
137
|
+
"commands/campaign-snapshot.js",
|
|
138
|
+
"commands/campaign-snapshot.js.map",
|
|
139
|
+
"commands/compute-acquire.d.ts",
|
|
140
|
+
"commands/compute-acquire.js",
|
|
141
|
+
"commands/compute-acquire.js.map",
|
|
142
|
+
"commands/compute-budgets.d.ts",
|
|
143
|
+
"commands/compute-budgets.js",
|
|
144
|
+
"commands/compute-budgets.js.map",
|
|
145
|
+
"commands/compute-connection.d.ts",
|
|
146
|
+
"commands/compute-connection.js",
|
|
147
|
+
"commands/compute-connection.js.map",
|
|
148
|
+
"commands/compute-funding.d.ts",
|
|
149
|
+
"commands/compute-funding.js",
|
|
150
|
+
"commands/compute-funding.js.map",
|
|
151
|
+
"commands/compute-grants-list.d.ts",
|
|
152
|
+
"commands/compute-grants-list.js",
|
|
153
|
+
"commands/compute-grants-list.js.map",
|
|
154
|
+
"commands/compute-grants-request-approval.d.ts",
|
|
155
|
+
"commands/compute-grants-request-approval.js",
|
|
156
|
+
"commands/compute-grants-request-approval.js.map",
|
|
157
|
+
"commands/compute-options.d.ts",
|
|
158
|
+
"commands/compute-options.js",
|
|
159
|
+
"commands/compute-options.js.map",
|
|
160
|
+
"commands/compute-policy-get.d.ts",
|
|
161
|
+
"commands/compute-policy-get.js",
|
|
162
|
+
"commands/compute-policy-get.js.map",
|
|
163
|
+
"commands/compute-policy-set.d.ts",
|
|
164
|
+
"commands/compute-policy-set.js",
|
|
165
|
+
"commands/compute-policy-set.js.map",
|
|
166
|
+
"commands/compute-release-all.d.ts",
|
|
167
|
+
"commands/compute-release-all.js",
|
|
168
|
+
"commands/compute-release-all.js.map",
|
|
169
|
+
"commands/compute-release.d.ts",
|
|
170
|
+
"commands/compute-release.js",
|
|
171
|
+
"commands/compute-release.js.map",
|
|
172
|
+
"commands/compute-status.d.ts",
|
|
173
|
+
"commands/compute-status.js",
|
|
174
|
+
"commands/compute-status.js.map",
|
|
175
|
+
"commands/credits-balance.d.ts",
|
|
176
|
+
"commands/credits-balance.js",
|
|
177
|
+
"commands/credits-balance.js.map",
|
|
178
|
+
"commands/credits-billing-portal.d.ts",
|
|
179
|
+
"commands/credits-billing-portal.js",
|
|
180
|
+
"commands/credits-billing-portal.js.map",
|
|
181
|
+
"commands/credits-purchase.d.ts",
|
|
182
|
+
"commands/credits-purchase.js",
|
|
183
|
+
"commands/credits-purchase.js.map",
|
|
184
|
+
"commands/credits-referral-claim.d.ts",
|
|
185
|
+
"commands/credits-referral-claim.js",
|
|
186
|
+
"commands/credits-referral-claim.js.map",
|
|
187
|
+
"commands/credits-referral.d.ts",
|
|
188
|
+
"commands/credits-referral.js",
|
|
189
|
+
"commands/credits-referral.js.map",
|
|
190
|
+
"commands/credits-subscribe.d.ts",
|
|
191
|
+
"commands/credits-subscribe.js",
|
|
192
|
+
"commands/credits-subscribe.js.map",
|
|
193
|
+
"commands/credits-subscription.d.ts",
|
|
194
|
+
"commands/credits-subscription.js",
|
|
195
|
+
"commands/credits-subscription.js.map",
|
|
196
|
+
"commands/credits-transactions.d.ts",
|
|
197
|
+
"commands/credits-transactions.js",
|
|
198
|
+
"commands/credits-transactions.js.map",
|
|
199
|
+
"commands/credits-usage.d.ts",
|
|
200
|
+
"commands/credits-usage.js",
|
|
201
|
+
"commands/credits-usage.js.map",
|
|
202
|
+
"commands/enums.d.ts",
|
|
203
|
+
"commands/enums.js",
|
|
204
|
+
"commands/enums.js.map",
|
|
205
|
+
"commands/env.d.ts",
|
|
206
|
+
"commands/env.js",
|
|
207
|
+
"commands/env.js.map",
|
|
208
|
+
"commands/executions-launch.d.ts",
|
|
209
|
+
"commands/executions-launch.js",
|
|
210
|
+
"commands/executions-launch.js.map",
|
|
211
|
+
"commands/executions-list.d.ts",
|
|
212
|
+
"commands/executions-list.js",
|
|
213
|
+
"commands/executions-list.js.map",
|
|
214
|
+
"commands/executions-terminate.d.ts",
|
|
215
|
+
"commands/executions-terminate.js",
|
|
216
|
+
"commands/executions-terminate.js.map",
|
|
217
|
+
"commands/export-history.d.ts",
|
|
218
|
+
"commands/export-history.js",
|
|
219
|
+
"commands/export-history.js.map",
|
|
220
|
+
"commands/export-subgraph.d.ts",
|
|
221
|
+
"commands/export-subgraph.js",
|
|
222
|
+
"commands/export-subgraph.js.map",
|
|
223
|
+
"commands/export-summary-pdf.d.ts",
|
|
224
|
+
"commands/export-summary-pdf.js",
|
|
225
|
+
"commands/export-summary-pdf.js.map",
|
|
226
|
+
"commands/export-summary-render-pdf.d.ts",
|
|
227
|
+
"commands/export-summary-render-pdf.js",
|
|
228
|
+
"commands/export-summary-render-pdf.js.map",
|
|
229
|
+
"commands/export-summary-stream.d.ts",
|
|
230
|
+
"commands/export-summary-stream.js",
|
|
231
|
+
"commands/export-summary-stream.js.map",
|
|
232
|
+
"commands/export-summary.d.ts",
|
|
233
|
+
"commands/export-summary.js",
|
|
234
|
+
"commands/export-summary.js.map",
|
|
235
|
+
"commands/files-list.d.ts",
|
|
236
|
+
"commands/files-list.js",
|
|
237
|
+
"commands/files-list.js.map",
|
|
238
|
+
"commands/github-disconnect.d.ts",
|
|
239
|
+
"commands/github-disconnect.js",
|
|
240
|
+
"commands/github-disconnect.js.map",
|
|
241
|
+
"commands/github-link.d.ts",
|
|
242
|
+
"commands/github-link.js",
|
|
243
|
+
"commands/github-link.js.map",
|
|
244
|
+
"commands/github-refresh-repos.d.ts",
|
|
245
|
+
"commands/github-refresh-repos.js",
|
|
246
|
+
"commands/github-refresh-repos.js.map",
|
|
247
|
+
"commands/github-status.d.ts",
|
|
248
|
+
"commands/github-status.js",
|
|
249
|
+
"commands/github-status.js.map",
|
|
250
|
+
"commands/graph-get.d.ts",
|
|
251
|
+
"commands/graph-get.js",
|
|
252
|
+
"commands/graph-get.js.map",
|
|
253
|
+
"commands/handler-factory.d.ts",
|
|
254
|
+
"commands/handler-factory.js",
|
|
255
|
+
"commands/handler-factory.js.map",
|
|
256
|
+
"commands/help.d.ts",
|
|
257
|
+
"commands/help.js",
|
|
258
|
+
"commands/help.js.map",
|
|
259
|
+
"commands/import-subgraph.d.ts",
|
|
260
|
+
"commands/import-subgraph.js",
|
|
261
|
+
"commands/import-subgraph.js.map",
|
|
262
|
+
"commands/index.d.ts",
|
|
263
|
+
"commands/index.js",
|
|
264
|
+
"commands/index.js.map",
|
|
265
|
+
"commands/integrations-huggingface-remove.d.ts",
|
|
266
|
+
"commands/integrations-huggingface-remove.js",
|
|
267
|
+
"commands/integrations-huggingface-remove.js.map",
|
|
268
|
+
"commands/integrations-huggingface-set.d.ts",
|
|
269
|
+
"commands/integrations-huggingface-set.js",
|
|
270
|
+
"commands/integrations-huggingface-set.js.map",
|
|
271
|
+
"commands/integrations-status.d.ts",
|
|
272
|
+
"commands/integrations-status.js",
|
|
273
|
+
"commands/integrations-status.js.map",
|
|
274
|
+
"commands/integrations-wandb-remove.d.ts",
|
|
275
|
+
"commands/integrations-wandb-remove.js",
|
|
276
|
+
"commands/integrations-wandb-remove.js.map",
|
|
277
|
+
"commands/integrations-wandb-set.d.ts",
|
|
278
|
+
"commands/integrations-wandb-set.js",
|
|
279
|
+
"commands/integrations-wandb-set.js.map",
|
|
280
|
+
"commands/machines-list.d.ts",
|
|
281
|
+
"commands/machines-list.js",
|
|
282
|
+
"commands/machines-list.js.map",
|
|
283
|
+
"commands/nodes-add-parent.d.ts",
|
|
284
|
+
"commands/nodes-add-parent.js",
|
|
285
|
+
"commands/nodes-add-parent.js.map",
|
|
286
|
+
"commands/nodes-audit-list.d.ts",
|
|
287
|
+
"commands/nodes-audit-list.js",
|
|
288
|
+
"commands/nodes-audit-list.js.map",
|
|
289
|
+
"commands/nodes-branch.d.ts",
|
|
290
|
+
"commands/nodes-branch.js",
|
|
291
|
+
"commands/nodes-branch.js.map",
|
|
292
|
+
"commands/nodes-commit-new.d.ts",
|
|
293
|
+
"commands/nodes-commit-new.js",
|
|
294
|
+
"commands/nodes-commit-new.js.map",
|
|
295
|
+
"commands/nodes-commit.d.ts",
|
|
296
|
+
"commands/nodes-commit.js",
|
|
297
|
+
"commands/nodes-commit.js.map",
|
|
298
|
+
"commands/nodes-create.d.ts",
|
|
299
|
+
"commands/nodes-create.js",
|
|
300
|
+
"commands/nodes-create.js.map",
|
|
301
|
+
"commands/nodes-delete-bulk.d.ts",
|
|
302
|
+
"commands/nodes-delete-bulk.js",
|
|
303
|
+
"commands/nodes-delete-bulk.js.map",
|
|
304
|
+
"commands/nodes-delete.d.ts",
|
|
305
|
+
"commands/nodes-delete.js",
|
|
306
|
+
"commands/nodes-delete.js.map",
|
|
307
|
+
"commands/nodes-files.d.ts",
|
|
308
|
+
"commands/nodes-files.js",
|
|
309
|
+
"commands/nodes-files.js.map",
|
|
310
|
+
"commands/nodes-get.d.ts",
|
|
311
|
+
"commands/nodes-get.js",
|
|
312
|
+
"commands/nodes-get.js.map",
|
|
313
|
+
"commands/nodes-list.d.ts",
|
|
314
|
+
"commands/nodes-list.js",
|
|
315
|
+
"commands/nodes-list.js.map",
|
|
316
|
+
"commands/nodes-merge.d.ts",
|
|
317
|
+
"commands/nodes-merge.js",
|
|
318
|
+
"commands/nodes-merge.js.map",
|
|
319
|
+
"commands/nodes-remove-parent.d.ts",
|
|
320
|
+
"commands/nodes-remove-parent.js",
|
|
321
|
+
"commands/nodes-remove-parent.js.map",
|
|
322
|
+
"commands/nodes-render-ancestry.d.ts",
|
|
323
|
+
"commands/nodes-render-ancestry.js",
|
|
324
|
+
"commands/nodes-render-ancestry.js.map",
|
|
325
|
+
"commands/nodes-render-summary.d.ts",
|
|
326
|
+
"commands/nodes-render-summary.js",
|
|
327
|
+
"commands/nodes-render-summary.js.map",
|
|
328
|
+
"commands/nodes-render-tree.d.ts",
|
|
329
|
+
"commands/nodes-render-tree.js",
|
|
330
|
+
"commands/nodes-render-tree.js.map",
|
|
331
|
+
"commands/nodes-resolve-slug.d.ts",
|
|
332
|
+
"commands/nodes-resolve-slug.js",
|
|
333
|
+
"commands/nodes-resolve-slug.js.map",
|
|
334
|
+
"commands/nodes-sharing-get.d.ts",
|
|
335
|
+
"commands/nodes-sharing-get.js",
|
|
336
|
+
"commands/nodes-sharing-get.js.map",
|
|
337
|
+
"commands/nodes-sharing-set-bulk.d.ts",
|
|
338
|
+
"commands/nodes-sharing-set-bulk.js",
|
|
339
|
+
"commands/nodes-sharing-set-bulk.js.map",
|
|
340
|
+
"commands/nodes-sharing-set.d.ts",
|
|
341
|
+
"commands/nodes-sharing-set.js",
|
|
342
|
+
"commands/nodes-sharing-set.js.map",
|
|
343
|
+
"commands/nodes-sharing-summaries.d.ts",
|
|
344
|
+
"commands/nodes-sharing-summaries.js",
|
|
345
|
+
"commands/nodes-sharing-summaries.js.map",
|
|
346
|
+
"commands/nodes-stage-backfill-hypothesis.d.ts",
|
|
347
|
+
"commands/nodes-stage-backfill-hypothesis.js",
|
|
348
|
+
"commands/nodes-stage-backfill-hypothesis.js.map",
|
|
349
|
+
"commands/nodes-stage-backfill-insights.d.ts",
|
|
350
|
+
"commands/nodes-stage-backfill-insights.js",
|
|
351
|
+
"commands/nodes-stage-backfill-insights.js.map",
|
|
352
|
+
"commands/nodes-stage-lease-acquire.d.ts",
|
|
353
|
+
"commands/nodes-stage-lease-acquire.js",
|
|
354
|
+
"commands/nodes-stage-lease-acquire.js.map",
|
|
355
|
+
"commands/nodes-stage-lease-heartbeat.d.ts",
|
|
356
|
+
"commands/nodes-stage-lease-heartbeat.js",
|
|
357
|
+
"commands/nodes-stage-lease-heartbeat.js.map",
|
|
358
|
+
"commands/nodes-stage-lease-release.d.ts",
|
|
359
|
+
"commands/nodes-stage-lease-release.js",
|
|
360
|
+
"commands/nodes-stage-lease-release.js.map",
|
|
361
|
+
"commands/profile-list.d.ts",
|
|
362
|
+
"commands/profile-list.js",
|
|
363
|
+
"commands/profile-list.js.map",
|
|
364
|
+
"commands/profile-set.d.ts",
|
|
365
|
+
"commands/profile-set.js",
|
|
366
|
+
"commands/profile-set.js.map",
|
|
367
|
+
"commands/profile-show.d.ts",
|
|
368
|
+
"commands/profile-show.js",
|
|
369
|
+
"commands/profile-show.js.map",
|
|
370
|
+
"commands/profile-unset.d.ts",
|
|
371
|
+
"commands/profile-unset.js",
|
|
372
|
+
"commands/profile-unset.js.map",
|
|
373
|
+
"commands/registry.d.ts",
|
|
374
|
+
"commands/registry.js",
|
|
375
|
+
"commands/registry.js.map",
|
|
376
|
+
"commands/registry/account.d.ts",
|
|
377
|
+
"commands/registry/account.js",
|
|
378
|
+
"commands/registry/account.js.map",
|
|
379
|
+
"commands/registry/api-keys.d.ts",
|
|
380
|
+
"commands/registry/api-keys.js",
|
|
381
|
+
"commands/registry/api-keys.js.map",
|
|
382
|
+
"commands/registry/approval.d.ts",
|
|
383
|
+
"commands/registry/approval.js",
|
|
384
|
+
"commands/registry/approval.js.map",
|
|
385
|
+
"commands/registry/artifacts.d.ts",
|
|
386
|
+
"commands/registry/artifacts.js",
|
|
387
|
+
"commands/registry/artifacts.js.map",
|
|
388
|
+
"commands/registry/auth.d.ts",
|
|
389
|
+
"commands/registry/auth.js",
|
|
390
|
+
"commands/registry/auth.js.map",
|
|
391
|
+
"commands/registry/budgets.d.ts",
|
|
392
|
+
"commands/registry/budgets.js",
|
|
393
|
+
"commands/registry/budgets.js.map",
|
|
394
|
+
"commands/registry/compute.d.ts",
|
|
395
|
+
"commands/registry/compute.js",
|
|
396
|
+
"commands/registry/compute.js.map",
|
|
397
|
+
"commands/registry/credits.d.ts",
|
|
398
|
+
"commands/registry/credits.js",
|
|
399
|
+
"commands/registry/credits.js.map",
|
|
400
|
+
"commands/registry/env.d.ts",
|
|
401
|
+
"commands/registry/env.js",
|
|
402
|
+
"commands/registry/env.js.map",
|
|
403
|
+
"commands/registry/executions.d.ts",
|
|
404
|
+
"commands/registry/executions.js",
|
|
405
|
+
"commands/registry/executions.js.map",
|
|
406
|
+
"commands/registry/export.d.ts",
|
|
407
|
+
"commands/registry/export.js",
|
|
408
|
+
"commands/registry/export.js.map",
|
|
409
|
+
"commands/registry/github.d.ts",
|
|
410
|
+
"commands/registry/github.js",
|
|
411
|
+
"commands/registry/github.js.map",
|
|
412
|
+
"commands/registry/graph.d.ts",
|
|
413
|
+
"commands/registry/graph.js",
|
|
414
|
+
"commands/registry/graph.js.map",
|
|
415
|
+
"commands/registry/integrations.d.ts",
|
|
416
|
+
"commands/registry/integrations.js",
|
|
417
|
+
"commands/registry/integrations.js.map",
|
|
418
|
+
"commands/registry/lifecycle.d.ts",
|
|
419
|
+
"commands/registry/lifecycle.js",
|
|
420
|
+
"commands/registry/lifecycle.js.map",
|
|
421
|
+
"commands/registry/profile.d.ts",
|
|
422
|
+
"commands/registry/profile.js",
|
|
423
|
+
"commands/registry/profile.js.map",
|
|
424
|
+
"commands/registry/resources.d.ts",
|
|
425
|
+
"commands/registry/resources.js",
|
|
426
|
+
"commands/registry/resources.js.map",
|
|
427
|
+
"commands/registry/sharing.d.ts",
|
|
428
|
+
"commands/registry/sharing.js",
|
|
429
|
+
"commands/registry/sharing.js.map",
|
|
430
|
+
"commands/registry/tagging.d.ts",
|
|
431
|
+
"commands/registry/tagging.js",
|
|
432
|
+
"commands/registry/tagging.js.map",
|
|
433
|
+
"commands/registry/updates.d.ts",
|
|
434
|
+
"commands/registry/updates.js",
|
|
435
|
+
"commands/registry/updates.js.map",
|
|
436
|
+
"commands/tags-assign.d.ts",
|
|
437
|
+
"commands/tags-assign.js",
|
|
438
|
+
"commands/tags-assign.js.map",
|
|
439
|
+
"commands/tags-create.d.ts",
|
|
440
|
+
"commands/tags-create.js",
|
|
441
|
+
"commands/tags-create.js.map",
|
|
442
|
+
"commands/tags-delete.d.ts",
|
|
443
|
+
"commands/tags-delete.js",
|
|
444
|
+
"commands/tags-delete.js.map",
|
|
445
|
+
"commands/tags-update.d.ts",
|
|
446
|
+
"commands/tags-update.js",
|
|
447
|
+
"commands/tags-update.js.map",
|
|
448
|
+
"commands/types.d.ts",
|
|
449
|
+
"commands/types.js",
|
|
450
|
+
"commands/types.js.map",
|
|
451
|
+
"commands/updates-hide-all-active.d.ts",
|
|
452
|
+
"commands/updates-hide-all-active.js",
|
|
453
|
+
"commands/updates-hide-all-active.js.map",
|
|
454
|
+
"commands/updates-hide.d.ts",
|
|
455
|
+
"commands/updates-hide.js",
|
|
456
|
+
"commands/updates-hide.js.map",
|
|
457
|
+
"commands/updates-list.d.ts",
|
|
458
|
+
"commands/updates-list.js",
|
|
459
|
+
"commands/updates-list.js.map",
|
|
460
|
+
"commands/utils.d.ts",
|
|
461
|
+
"commands/utils.js",
|
|
462
|
+
"commands/utils.js.map",
|
|
463
|
+
"errors.d.ts",
|
|
464
|
+
"errors.js",
|
|
465
|
+
"errors.js.map",
|
|
466
|
+
"exit-codes.d.ts",
|
|
467
|
+
"exit-codes.js",
|
|
468
|
+
"exit-codes.js.map",
|
|
469
|
+
"grammar/globals.d.ts",
|
|
470
|
+
"grammar/globals.js",
|
|
471
|
+
"grammar/globals.js.map",
|
|
472
|
+
"grammar/parse.d.ts",
|
|
473
|
+
"grammar/parse.js",
|
|
474
|
+
"grammar/parse.js.map",
|
|
475
|
+
"http/client.d.ts",
|
|
476
|
+
"http/client.js",
|
|
477
|
+
"http/client.js.map",
|
|
478
|
+
"http/debug.d.ts",
|
|
479
|
+
"http/debug.js",
|
|
480
|
+
"http/debug.js.map",
|
|
481
|
+
"http/poll.d.ts",
|
|
482
|
+
"http/poll.js",
|
|
483
|
+
"http/poll.js.map",
|
|
484
|
+
"http/retry.d.ts",
|
|
485
|
+
"http/retry.js",
|
|
486
|
+
"http/retry.js.map",
|
|
487
|
+
"main.d.ts",
|
|
488
|
+
"main.js",
|
|
489
|
+
"main.js.map",
|
|
490
|
+
"output/format.d.ts",
|
|
491
|
+
"output/format.js",
|
|
492
|
+
"output/format.js.map",
|
|
493
|
+
"runtime-entry.d.ts",
|
|
494
|
+
"runtime-entry.js",
|
|
495
|
+
"runtime-entry.js.map",
|
|
496
|
+
"version.d.ts",
|
|
497
|
+
"version.js",
|
|
498
|
+
"version.js.map"
|
|
499
|
+
]
|
|
500
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { resolveSetupMode } from "./mode.mjs";
|
|
2
|
+
|
|
3
|
+
export async function runSetupRouter(options = {}, deps = {}) {
|
|
4
|
+
const mode = await resolveSetupMode(options, {
|
|
5
|
+
isInteractive: deps.isInteractive,
|
|
6
|
+
promptMode: deps.promptMode,
|
|
7
|
+
});
|
|
8
|
+
const context = {
|
|
9
|
+
mode,
|
|
10
|
+
options,
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
if (mode === "mcp") {
|
|
14
|
+
if (typeof deps.runMcpMode !== "function") {
|
|
15
|
+
throw new Error("runMcpMode dependency is required for mcp mode.");
|
|
16
|
+
}
|
|
17
|
+
return await deps.runMcpMode(context);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
if (typeof deps.runCliMode !== "function") {
|
|
21
|
+
throw new Error("runCliMode dependency is required for cli mode.");
|
|
22
|
+
}
|
|
23
|
+
return await deps.runCliMode(context);
|
|
24
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import {
|
|
2
|
+
mergeServerEntry,
|
|
3
|
+
readJsonConfig,
|
|
4
|
+
writeJsonConfig,
|
|
5
|
+
} from "../../../mcp-writer.mjs";
|
|
6
|
+
|
|
7
|
+
export async function patchJsonServer({
|
|
8
|
+
filePath,
|
|
9
|
+
configKey,
|
|
10
|
+
serverName,
|
|
11
|
+
entry,
|
|
12
|
+
readJsonConfigFn = readJsonConfig,
|
|
13
|
+
writeJsonConfigFn = writeJsonConfig,
|
|
14
|
+
mergeServerEntryFn = mergeServerEntry,
|
|
15
|
+
}) {
|
|
16
|
+
const existing = await readJsonConfigFn(filePath);
|
|
17
|
+
const { config, alreadyExists } = mergeServerEntryFn(
|
|
18
|
+
existing,
|
|
19
|
+
configKey,
|
|
20
|
+
serverName,
|
|
21
|
+
entry,
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
if (!alreadyExists && config !== existing) {
|
|
25
|
+
await writeJsonConfigFn(filePath, config);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return {
|
|
29
|
+
alreadyExists,
|
|
30
|
+
changed: !alreadyExists,
|
|
31
|
+
touchedFiles: alreadyExists ? [] : [filePath],
|
|
32
|
+
};
|
|
33
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { appendTomlServer } from "../../../mcp-writer.mjs";
|
|
2
|
+
|
|
3
|
+
export async function patchTomlServer({
|
|
4
|
+
filePath,
|
|
5
|
+
serverName,
|
|
6
|
+
entry,
|
|
7
|
+
appendTomlServerFn = appendTomlServer,
|
|
8
|
+
}) {
|
|
9
|
+
const { alreadyExists } = await appendTomlServerFn(filePath, serverName, entry);
|
|
10
|
+
return {
|
|
11
|
+
alreadyExists,
|
|
12
|
+
changed: !alreadyExists,
|
|
13
|
+
touchedFiles: alreadyExists ? [] : [filePath],
|
|
14
|
+
};
|
|
15
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import {
|
|
2
|
+
mergeServerEntry,
|
|
3
|
+
readYamlConfig,
|
|
4
|
+
writeYamlConfig,
|
|
5
|
+
} from "../../../mcp-writer.mjs";
|
|
6
|
+
|
|
7
|
+
export async function patchYamlServer({
|
|
8
|
+
filePath,
|
|
9
|
+
configKey,
|
|
10
|
+
serverName,
|
|
11
|
+
entry,
|
|
12
|
+
readYamlConfigFn = readYamlConfig,
|
|
13
|
+
writeYamlConfigFn = writeYamlConfig,
|
|
14
|
+
mergeServerEntryFn = mergeServerEntry,
|
|
15
|
+
}) {
|
|
16
|
+
const existing = await readYamlConfigFn(filePath);
|
|
17
|
+
const { config, alreadyExists } = mergeServerEntryFn(
|
|
18
|
+
existing,
|
|
19
|
+
configKey,
|
|
20
|
+
serverName,
|
|
21
|
+
entry,
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
if (!alreadyExists && config !== existing) {
|
|
25
|
+
await writeYamlConfigFn(filePath, config);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
return {
|
|
29
|
+
alreadyExists,
|
|
30
|
+
changed: !alreadyExists,
|
|
31
|
+
touchedFiles: alreadyExists ? [] : [filePath],
|
|
32
|
+
};
|
|
33
|
+
}
|