@paradigma-inc/flywheel 0.1.35 → 0.1.52
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/getting-started/flywheel-tutorial-overview.md +2 -1
- package/skills/flywheel/references/INTERFACES.md +2 -0
- package/skills/flywheel/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel/references/flywheel-mcp-tool-map.md +39 -5
- 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/INTERFACES.md +2 -0
- package/skills/flywheel-auto/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-auto/references/flywheel-mcp-tool-map.md +6 -5
- package/skills/flywheel-lookahead/SKILL.md +22 -11
- package/skills/flywheel-lookahead/references/INTERFACES.md +2 -0
- package/skills/flywheel-lookahead/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-lookahead/references/flywheel-mcp-tool-map.md +6 -5
- package/skills/flywheel-prove/SKILL.md +9 -0
- package/skills/flywheel-reproduce/SKILL.md +23 -12
- package/skills/flywheel-reproduce/references/INTERFACES.md +2 -0
- package/skills/flywheel-reproduce/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-reproduce/references/flywheel-mcp-tool-map.md +6 -5
- package/skills/flywheel-to-graph/SKILL.md +20 -9
- package/skills/flywheel-to-graph/references/INTERFACES.md +2 -0
- package/skills/flywheel-to-graph/references/flywheel-cli-tool-map.md +244 -0
- package/skills/flywheel-to-graph/references/flywheel-mcp-tool-map.md +6 -5
- package/skills/flywheel-tree/SKILL.md +9 -0
- package/src/cli.mjs +284 -598
- 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,98 @@
|
|
|
1
|
+
export const TAGGING_COMMANDS = [
|
|
2
|
+
{
|
|
3
|
+
name: 'tags:create',
|
|
4
|
+
group: 'nodes-graph',
|
|
5
|
+
summary: 'Create a reusable tag on a graph root.',
|
|
6
|
+
endpoints: ['POST /nodes/{root_node_id}/tags'],
|
|
7
|
+
required: [
|
|
8
|
+
{ name: 'root_node_id', type: 'string', description: 'Root node (graph) identifier.' },
|
|
9
|
+
{ name: 'name', type: 'string', description: 'Tag display name.' },
|
|
10
|
+
{
|
|
11
|
+
name: 'expected_revision',
|
|
12
|
+
type: 'integer',
|
|
13
|
+
description: 'Root revision to optimistically lock against.',
|
|
14
|
+
},
|
|
15
|
+
{ name: 'bg_color', type: 'string', description: 'Background color (e.g. #ff0000).' },
|
|
16
|
+
{ name: 'text_color', type: 'string', description: 'Foreground text color (e.g. #ffffff).' },
|
|
17
|
+
],
|
|
18
|
+
optional: [
|
|
19
|
+
{ name: 'one_only', type: 'boolean', description: 'Enforce at most one assignment of this tag per node.' },
|
|
20
|
+
{ name: 'track_history', type: 'boolean', description: 'Keep a history record when this one_only tag is reassigned.' },
|
|
21
|
+
],
|
|
22
|
+
examples: [
|
|
23
|
+
{
|
|
24
|
+
description: 'Create a new tag with colors.',
|
|
25
|
+
invocation: 'flywheel tags:create --root_node_id r_root --name urgent --expected_revision 12 --bg_color "#ff0000" --text_color "#ffffff"',
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
related: ['tags:update', 'tags:delete', 'tags:assign'],
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
name: 'tags:update',
|
|
32
|
+
group: 'nodes-graph',
|
|
33
|
+
summary: 'Update a tag definition.',
|
|
34
|
+
endpoints: ['PATCH /nodes/{root_node_id}/tags/{tag_id}'],
|
|
35
|
+
required: [
|
|
36
|
+
{ name: 'root_node_id', type: 'string', description: 'Graph root identifier.' },
|
|
37
|
+
{ name: 'tag_id', type: 'string', description: 'Tag identifier.' },
|
|
38
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock revision.' },
|
|
39
|
+
],
|
|
40
|
+
optional: [
|
|
41
|
+
{ name: 'name', type: 'string', description: 'New tag name.' },
|
|
42
|
+
{ name: 'bg_color', type: 'string', description: 'New background color.' },
|
|
43
|
+
{ name: 'text_color', type: 'string', description: 'New foreground text color.' },
|
|
44
|
+
{ name: 'one_only', type: 'boolean', description: 'Toggle at-most-one-per-node constraint.' },
|
|
45
|
+
{ name: 'track_history', type: 'boolean', description: 'Toggle history tracking for one_only tags.' },
|
|
46
|
+
],
|
|
47
|
+
examples: [
|
|
48
|
+
{
|
|
49
|
+
description: 'Rename a tag.',
|
|
50
|
+
invocation: 'flywheel tags:update --root_node_id r_root --tag_id t_abc --expected_revision 13 --name urgent-v2',
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
related: ['tags:create', 'tags:delete'],
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
name: 'tags:delete',
|
|
57
|
+
group: 'nodes-graph',
|
|
58
|
+
summary: 'Delete a tag definition from the graph.',
|
|
59
|
+
endpoints: ['DELETE /nodes/{root_node_id}/tags/{tag_id}'],
|
|
60
|
+
required: [
|
|
61
|
+
{ name: 'root_node_id', type: 'string', description: 'Graph root identifier.' },
|
|
62
|
+
{ name: 'tag_id', type: 'string', description: 'Tag identifier.' },
|
|
63
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock revision.' },
|
|
64
|
+
],
|
|
65
|
+
optional: [],
|
|
66
|
+
examples: [
|
|
67
|
+
{
|
|
68
|
+
description: 'Delete a tag.',
|
|
69
|
+
invocation: 'flywheel tags:delete --root_node_id r_root --tag_id t_abc --expected_revision 14',
|
|
70
|
+
},
|
|
71
|
+
],
|
|
72
|
+
related: ['tags:create'],
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: 'tags:assign',
|
|
76
|
+
group: 'nodes-graph',
|
|
77
|
+
summary: 'Assign or clear tags on a node (atomic replace).',
|
|
78
|
+
endpoints: ['PUT /nodes/{node_id}/tags'],
|
|
79
|
+
required: [
|
|
80
|
+
{ name: 'node_id', type: 'string', description: 'Target node identifier.' },
|
|
81
|
+
{ name: 'tag_ids', type: 'string', description: 'Comma-separated list of tag IDs.' },
|
|
82
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock revision.' },
|
|
83
|
+
],
|
|
84
|
+
optional: [],
|
|
85
|
+
examples: [
|
|
86
|
+
{
|
|
87
|
+
description: 'Assign two tags to a node.',
|
|
88
|
+
invocation: 'flywheel tags:assign --node_id n_abc --tag_ids t1,t2 --expected_revision 22',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
description: 'Clear all tags.',
|
|
92
|
+
invocation: 'flywheel tags:assign --node_id n_abc --tag_ids "" --expected_revision 22',
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
related: ['tags:create'],
|
|
96
|
+
},
|
|
97
|
+
];
|
|
98
|
+
//# sourceMappingURL=tagging.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tagging.js","sourceRoot":"","sources":["../../../src/commands/registry/tagging.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
export const UPDATES_COMMANDS = [
|
|
2
|
+
{
|
|
3
|
+
name: 'updates:list',
|
|
4
|
+
group: 'updates-resources',
|
|
5
|
+
summary: 'List in-app announcements relevant to your account.',
|
|
6
|
+
endpoints: ['GET /updates'],
|
|
7
|
+
required: [],
|
|
8
|
+
optional: [
|
|
9
|
+
{ name: 'page', type: 'integer', description: 'Page number.' },
|
|
10
|
+
{ name: 'page_size', type: 'integer', description: 'Page size (canonical).' },
|
|
11
|
+
],
|
|
12
|
+
examples: [
|
|
13
|
+
{
|
|
14
|
+
description: 'List updates.',
|
|
15
|
+
invocation: 'flywheel updates:list --page 1 --page_size 20',
|
|
16
|
+
},
|
|
17
|
+
],
|
|
18
|
+
related: ['updates:hide'],
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
name: 'updates:hide',
|
|
22
|
+
group: 'updates-resources',
|
|
23
|
+
summary: 'Hide a specific announcement.',
|
|
24
|
+
endpoints: ['POST /updates/{announcement_id}/hide'],
|
|
25
|
+
required: [
|
|
26
|
+
{ name: 'announcement_id', type: 'string', description: 'Announcement ID.' },
|
|
27
|
+
],
|
|
28
|
+
optional: [],
|
|
29
|
+
examples: [
|
|
30
|
+
{
|
|
31
|
+
description: 'Hide.',
|
|
32
|
+
invocation: 'flywheel updates:hide --announcement_id a_abc',
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
related: ['updates:unhide'],
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: 'updates:hide-all-active',
|
|
39
|
+
group: 'updates-resources',
|
|
40
|
+
summary: 'Hide all currently active announcements.',
|
|
41
|
+
endpoints: ['POST /updates/hide-all-active'],
|
|
42
|
+
required: [],
|
|
43
|
+
optional: [],
|
|
44
|
+
examples: [
|
|
45
|
+
{
|
|
46
|
+
description: 'Hide all.',
|
|
47
|
+
invocation: 'flywheel updates:hide-all-active',
|
|
48
|
+
},
|
|
49
|
+
],
|
|
50
|
+
related: ['updates:hide'],
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'updates:unhide',
|
|
54
|
+
group: 'updates-resources',
|
|
55
|
+
summary: 'Restore a previously hidden announcement.',
|
|
56
|
+
endpoints: ['DELETE /updates/{announcement_id}/hide'],
|
|
57
|
+
required: [
|
|
58
|
+
{ name: 'announcement_id', type: 'string', description: 'Announcement ID.' },
|
|
59
|
+
],
|
|
60
|
+
optional: [],
|
|
61
|
+
examples: [
|
|
62
|
+
{
|
|
63
|
+
description: 'Unhide.',
|
|
64
|
+
invocation: 'flywheel updates:unhide --announcement_id a_abc',
|
|
65
|
+
},
|
|
66
|
+
],
|
|
67
|
+
related: ['updates:hide'],
|
|
68
|
+
},
|
|
69
|
+
];
|
|
70
|
+
//# sourceMappingURL=updates.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updates.js","sourceRoot":"","sources":["../../../src/commands/registry/updates.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,gBAAgB,GAAqC;IAChE;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,mBAAmB;QAC1B,OAAO,EAAE,qDAAqD;QAC9D,SAAS,EAAE,CAAC,cAAc,CAAC;QAC3B,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,cAAc,EAAE;YAC9D,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,SAAS,EAAE,WAAW,EAAE,wBAAwB,EAAE;SAC9E;QACD,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,eAAe;gBAC5B,UAAU,EAAE,+CAA+C;aAC5D;SACF;QACD,OAAO,EAAE,CAAC,cAAc,CAAC;KAC1B;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,mBAAmB;QAC1B,OAAO,EAAE,+BAA+B;QACxC,SAAS,EAAE,CAAC,sCAAsC,CAAC;QACnD,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,iBAAiB,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE;SAC7E;QACD,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,OAAO;gBACpB,UAAU,EAAE,+CAA+C;aAC5D;SACF;QACD,OAAO,EAAE,CAAC,gBAAgB,CAAC;KAC5B;IACD;QACE,IAAI,EAAE,yBAAyB;QAC/B,KAAK,EAAE,mBAAmB;QAC1B,OAAO,EAAE,0CAA0C;QACnD,SAAS,EAAE,CAAC,+BAA+B,CAAC;QAC5C,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,WAAW;gBACxB,UAAU,EAAE,kCAAkC;aAC/C;SACF;QACD,OAAO,EAAE,CAAC,cAAc,CAAC;KAC1B;IACD;QACE,IAAI,EAAE,gBAAgB;QACtB,KAAK,EAAE,mBAAmB;QAC1B,OAAO,EAAE,2CAA2C;QACpD,SAAS,EAAE,CAAC,wCAAwC,CAAC;QACrD,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,iBAAiB,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE;SAC7E;QACD,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,SAAS;gBACtB,UAAU,EAAE,iDAAiD;aAC9D;SACF;QACD,OAAO,EAAE,CAAC,cAAc,CAAC;KAC1B;CACF,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type CommandParamType = 'string' | 'integer' | 'json' | 'boolean';
|
|
2
|
+
export type CommandTopicId = 'setup-admin' | 'auth' | 'profile' | 'nodes-graph' | 'artifacts-files' | 'compute-executions' | 'approvals-budgets' | 'export-import' | 'updates-resources' | 'account-credits' | 'integrations' | 'api-keys' | 'developer-admin';
|
|
3
|
+
export interface CommandParam {
|
|
4
|
+
name: string;
|
|
5
|
+
type: CommandParamType;
|
|
6
|
+
description: string;
|
|
7
|
+
default?: string;
|
|
8
|
+
}
|
|
9
|
+
export interface CommandExample {
|
|
10
|
+
description: string;
|
|
11
|
+
invocation: string;
|
|
12
|
+
}
|
|
13
|
+
export interface CommandDefinition {
|
|
14
|
+
name: string;
|
|
15
|
+
group: CommandTopicId;
|
|
16
|
+
summary: string;
|
|
17
|
+
endpoints: string[];
|
|
18
|
+
required: CommandParam[];
|
|
19
|
+
optional: CommandParam[];
|
|
20
|
+
examples: CommandExample[];
|
|
21
|
+
related: string[];
|
|
22
|
+
schema?: string;
|
|
23
|
+
}
|
|
24
|
+
export declare const MVP_COMMANDS: ReadonlyArray<CommandDefinition>;
|
|
25
|
+
export declare function getCommandByName(name: string): CommandDefinition | undefined;
|
|
@@ -0,0 +1,441 @@
|
|
|
1
|
+
const COMMIT_NEW_SCHEMA = `{
|
|
2
|
+
"local_temp_node_id": "string",
|
|
3
|
+
"parent_ids": ["string"],
|
|
4
|
+
"staged_payload": {
|
|
5
|
+
"title": "string",
|
|
6
|
+
"kind": "string",
|
|
7
|
+
"content": "string",
|
|
8
|
+
"summary": "string",
|
|
9
|
+
"hypothesis": "string",
|
|
10
|
+
"insights": [],
|
|
11
|
+
"no_artifacts_reason": null,
|
|
12
|
+
"repo_context": {
|
|
13
|
+
"repo_url": null,
|
|
14
|
+
"branch_name": null,
|
|
15
|
+
"head_commit_sha": null,
|
|
16
|
+
"origin_host": null,
|
|
17
|
+
"updated_by": null,
|
|
18
|
+
"external_transcript_ref": null
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}`;
|
|
22
|
+
const COMMIT_SCHEMA = `{
|
|
23
|
+
"stage_session_id": "string",
|
|
24
|
+
"base_committed_revision": 0,
|
|
25
|
+
"staged_payload": {
|
|
26
|
+
"title": "string",
|
|
27
|
+
"kind": "string",
|
|
28
|
+
"content": "string",
|
|
29
|
+
"summary": "string",
|
|
30
|
+
"hypothesis": "string",
|
|
31
|
+
"insights": [],
|
|
32
|
+
"no_artifacts_reason": null,
|
|
33
|
+
"repo_context": {
|
|
34
|
+
"repo_url": null,
|
|
35
|
+
"branch_name": null,
|
|
36
|
+
"head_commit_sha": null,
|
|
37
|
+
"origin_host": null,
|
|
38
|
+
"updated_by": null,
|
|
39
|
+
"external_transcript_ref": null
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}`;
|
|
43
|
+
const CORE_MVP_COMMANDS = [
|
|
44
|
+
{
|
|
45
|
+
name: 'auth:status',
|
|
46
|
+
group: 'auth',
|
|
47
|
+
summary: 'Show authentication status for the current client context.',
|
|
48
|
+
endpoints: ['GET /auth/status'],
|
|
49
|
+
required: [],
|
|
50
|
+
optional: [],
|
|
51
|
+
examples: [
|
|
52
|
+
{
|
|
53
|
+
description: 'Check whether the current config is authenticated.',
|
|
54
|
+
invocation: 'flywheel auth:status --format=json',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
description: 'Produce tab-separated output for script consumption.',
|
|
58
|
+
invocation: 'flywheel auth:status --format=tsv',
|
|
59
|
+
},
|
|
60
|
+
],
|
|
61
|
+
related: ['auth:login'],
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
name: 'auth:login',
|
|
65
|
+
group: 'auth',
|
|
66
|
+
summary: 'Bootstrap API key auth through RFC 8628 device authorization flow.',
|
|
67
|
+
endpoints: [
|
|
68
|
+
'POST /auth/mcp-api-keys/setup-device/start',
|
|
69
|
+
'POST /auth/mcp-api-keys/setup-device/poll',
|
|
70
|
+
],
|
|
71
|
+
required: [],
|
|
72
|
+
optional: [
|
|
73
|
+
{ name: 'name', type: 'string', description: 'Human-readable label for the new key.' },
|
|
74
|
+
{
|
|
75
|
+
name: 'expiry_days',
|
|
76
|
+
type: 'integer',
|
|
77
|
+
description: 'Key lifetime in days (server default applies when omitted).',
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
name: 'no-browser',
|
|
81
|
+
type: 'boolean',
|
|
82
|
+
description: 'Print the verification URL instead of auto-opening the browser.',
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
examples: [
|
|
86
|
+
{
|
|
87
|
+
description: 'Interactive login against the active profile.',
|
|
88
|
+
invocation: 'flywheel auth:login',
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
description: 'Headless login (prints the verification URL instead of opening the browser).',
|
|
92
|
+
invocation: 'flywheel auth:login --no-browser',
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
related: ['auth:status', 'env:switch'],
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'nodes:list',
|
|
99
|
+
group: 'nodes-graph',
|
|
100
|
+
summary: 'List nodes with optional filters.',
|
|
101
|
+
endpoints: ['GET /nodes'],
|
|
102
|
+
required: [],
|
|
103
|
+
optional: [
|
|
104
|
+
{ name: 'page', type: 'integer', description: 'Page number (1-based).', default: '1' },
|
|
105
|
+
{
|
|
106
|
+
name: 'page_size',
|
|
107
|
+
type: 'integer',
|
|
108
|
+
description: 'Page size.',
|
|
109
|
+
default: 'server default',
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'status',
|
|
113
|
+
type: 'string',
|
|
114
|
+
description: 'Filter by node status.',
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
name: 'include_archived',
|
|
118
|
+
type: 'boolean',
|
|
119
|
+
description: 'Include archived nodes.',
|
|
120
|
+
},
|
|
121
|
+
],
|
|
122
|
+
examples: [
|
|
123
|
+
{
|
|
124
|
+
description: 'List the first page of active nodes.',
|
|
125
|
+
invocation: 'flywheel nodes:list --page 1 --page_size 20',
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
description: 'Include archived nodes in the output.',
|
|
129
|
+
invocation: 'flywheel nodes:list --include_archived',
|
|
130
|
+
},
|
|
131
|
+
],
|
|
132
|
+
related: ['nodes:get', 'nodes:render:tree'],
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
name: 'nodes:get',
|
|
136
|
+
group: 'nodes-graph',
|
|
137
|
+
summary: 'Fetch one node by identifier.',
|
|
138
|
+
endpoints: ['GET /nodes/{node_id}'],
|
|
139
|
+
required: [
|
|
140
|
+
{ name: 'node_id', type: 'string', description: 'Target node identifier.' },
|
|
141
|
+
],
|
|
142
|
+
optional: [
|
|
143
|
+
{
|
|
144
|
+
name: 'projection',
|
|
145
|
+
type: 'string',
|
|
146
|
+
description: 'Response projection (e.g. core, topology).',
|
|
147
|
+
},
|
|
148
|
+
],
|
|
149
|
+
examples: [
|
|
150
|
+
{
|
|
151
|
+
description: 'Fetch a node with the core projection.',
|
|
152
|
+
invocation: 'flywheel nodes:get --node_id n_abc --projection core',
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
description: 'Fetch the topology projection as TSV for scripting.',
|
|
156
|
+
invocation: 'flywheel nodes:get --node_id n_abc --projection topology --format=tsv',
|
|
157
|
+
},
|
|
158
|
+
],
|
|
159
|
+
related: ['nodes:list', 'nodes:render:tree'],
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
name: 'nodes:commit-new',
|
|
163
|
+
group: 'nodes-graph',
|
|
164
|
+
summary: 'Create and commit a new node in one request.',
|
|
165
|
+
endpoints: ['POST /nodes/commit-new'],
|
|
166
|
+
required: [
|
|
167
|
+
{
|
|
168
|
+
name: 'payload_json',
|
|
169
|
+
type: 'json',
|
|
170
|
+
description: 'Inline JSON or @file path for the full commit-new payload (see --schema for shape).',
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
optional: [],
|
|
174
|
+
examples: [
|
|
175
|
+
{
|
|
176
|
+
description: 'Commit a new node from a payload file.',
|
|
177
|
+
invocation: 'flywheel nodes:commit-new --payload_json=@commit-new.json',
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
description: 'See the minimal JSON payload shape.',
|
|
181
|
+
invocation: 'flywheel help nodes:commit-new --schema',
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
related: ['nodes:stage:lease:acquire', 'nodes:commit'],
|
|
185
|
+
schema: COMMIT_NEW_SCHEMA,
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
name: 'nodes:stage:lease:acquire',
|
|
189
|
+
group: 'nodes-graph',
|
|
190
|
+
summary: 'Acquire an edit lease for an existing node.',
|
|
191
|
+
endpoints: ['POST /nodes/{node_id}/stage/lease/acquire'],
|
|
192
|
+
required: [
|
|
193
|
+
{ name: 'node_id', type: 'string', description: 'Target node identifier.' },
|
|
194
|
+
{
|
|
195
|
+
name: 'stage_session_id',
|
|
196
|
+
type: 'string',
|
|
197
|
+
description: 'Client-provided session identifier for the lease.',
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
name: 'base_committed_revision',
|
|
201
|
+
type: 'integer',
|
|
202
|
+
description: 'Committed revision the edit is based on.',
|
|
203
|
+
},
|
|
204
|
+
],
|
|
205
|
+
optional: [],
|
|
206
|
+
examples: [
|
|
207
|
+
{
|
|
208
|
+
description: 'Acquire a lease before committing a staged edit.',
|
|
209
|
+
invocation: 'flywheel nodes:stage:lease:acquire --node_id n_abc --stage_session_id session-1 --base_committed_revision 7',
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
description: 'Acquire a lease using the --key=value long form.',
|
|
213
|
+
invocation: 'flywheel nodes:stage:lease:acquire --node_id=n_abc --stage_session_id=session-2 --base_committed_revision=12',
|
|
214
|
+
},
|
|
215
|
+
],
|
|
216
|
+
related: ['nodes:commit'],
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
name: 'nodes:commit',
|
|
220
|
+
group: 'nodes-graph',
|
|
221
|
+
summary: 'Commit staged changes to an existing node.',
|
|
222
|
+
endpoints: ['POST /nodes/{node_id}/commit'],
|
|
223
|
+
required: [
|
|
224
|
+
{ name: 'node_id', type: 'string', description: 'Target node identifier.' },
|
|
225
|
+
{
|
|
226
|
+
name: 'payload_json',
|
|
227
|
+
type: 'json',
|
|
228
|
+
description: 'Inline JSON or @file path for the commit payload (see --schema for shape).',
|
|
229
|
+
},
|
|
230
|
+
],
|
|
231
|
+
optional: [],
|
|
232
|
+
examples: [
|
|
233
|
+
{
|
|
234
|
+
description: 'Commit a staged payload from a file.',
|
|
235
|
+
invocation: 'flywheel nodes:commit --node_id n_abc --payload_json=@commit.json',
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
description: 'See the minimal JSON payload shape.',
|
|
239
|
+
invocation: 'flywheel help nodes:commit --schema',
|
|
240
|
+
},
|
|
241
|
+
],
|
|
242
|
+
related: ['nodes:stage:lease:acquire', 'nodes:commit-new'],
|
|
243
|
+
schema: COMMIT_SCHEMA,
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
name: 'nodes:delete',
|
|
247
|
+
group: 'nodes-graph',
|
|
248
|
+
summary: 'Delete a node by identifier.',
|
|
249
|
+
endpoints: ['DELETE /nodes/{node_id}'],
|
|
250
|
+
required: [
|
|
251
|
+
{ name: 'node_id', type: 'string', description: 'Target node identifier.' },
|
|
252
|
+
],
|
|
253
|
+
optional: [],
|
|
254
|
+
examples: [
|
|
255
|
+
{
|
|
256
|
+
description: 'Delete a node.',
|
|
257
|
+
invocation: 'flywheel nodes:delete --node_id n_abc',
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
description: 'Delete a node using the --key=value form with JSON output.',
|
|
261
|
+
invocation: 'flywheel nodes:delete --node_id=n_abc --format=json',
|
|
262
|
+
},
|
|
263
|
+
],
|
|
264
|
+
related: ['nodes:get'],
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
name: 'nodes:render:tree',
|
|
268
|
+
group: 'nodes-graph',
|
|
269
|
+
summary: 'Render a bounded tree projection for a node.',
|
|
270
|
+
endpoints: ['GET /nodes/{node_id}/tree'],
|
|
271
|
+
required: [
|
|
272
|
+
{ name: 'node_id', type: 'string', description: 'Root node identifier.' },
|
|
273
|
+
],
|
|
274
|
+
optional: [
|
|
275
|
+
{
|
|
276
|
+
name: 'projection',
|
|
277
|
+
type: 'string',
|
|
278
|
+
description: 'Response projection (e.g. topology, core).',
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
name: 'max_depth',
|
|
282
|
+
type: 'integer',
|
|
283
|
+
description: 'Maximum traversal depth.',
|
|
284
|
+
},
|
|
285
|
+
],
|
|
286
|
+
examples: [
|
|
287
|
+
{
|
|
288
|
+
description: 'Render a topology projection of the subtree.',
|
|
289
|
+
invocation: 'flywheel nodes:render:tree --node_id n_abc --projection topology',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
description: 'Render a bounded-depth core projection.',
|
|
293
|
+
invocation: 'flywheel nodes:render:tree --node_id n_abc --projection core --max_depth 2',
|
|
294
|
+
},
|
|
295
|
+
],
|
|
296
|
+
related: ['nodes:get', 'nodes:list'],
|
|
297
|
+
},
|
|
298
|
+
{
|
|
299
|
+
name: 'artifacts:list',
|
|
300
|
+
group: 'artifacts-files',
|
|
301
|
+
summary: 'List artifacts for a node.',
|
|
302
|
+
endpoints: ['GET /nodes/{node_id}/artifacts'],
|
|
303
|
+
required: [
|
|
304
|
+
{ name: 'node_id', type: 'string', description: 'Owning node identifier.' },
|
|
305
|
+
],
|
|
306
|
+
optional: [
|
|
307
|
+
{ name: 'limit', type: 'integer', description: 'Maximum artifacts to return.' },
|
|
308
|
+
],
|
|
309
|
+
examples: [
|
|
310
|
+
{
|
|
311
|
+
description: 'List up to 10 artifacts on a node.',
|
|
312
|
+
invocation: 'flywheel artifacts:list --node_id n_abc --limit 10',
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
description: 'List artifacts with TSV output for downstream tooling.',
|
|
316
|
+
invocation: 'flywheel artifacts:list --node_id=n_abc --format=tsv',
|
|
317
|
+
},
|
|
318
|
+
],
|
|
319
|
+
related: ['artifacts:get'],
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
name: 'artifacts:get',
|
|
323
|
+
group: 'artifacts-files',
|
|
324
|
+
summary: 'Fetch one artifact metadata record.',
|
|
325
|
+
endpoints: ['GET /nodes/{node_id}/artifacts/{artifact_id}'],
|
|
326
|
+
required: [
|
|
327
|
+
{ name: 'node_id', type: 'string', description: 'Owning node identifier.' },
|
|
328
|
+
{ name: 'artifact_id', type: 'string', description: 'Target artifact identifier.' },
|
|
329
|
+
],
|
|
330
|
+
optional: [],
|
|
331
|
+
examples: [
|
|
332
|
+
{
|
|
333
|
+
description: 'Fetch an artifact metadata record.',
|
|
334
|
+
invocation: 'flywheel artifacts:get --node_id n_abc --artifact_id art_42',
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
description: 'Fetch an artifact metadata record using --key=value form.',
|
|
338
|
+
invocation: 'flywheel artifacts:get --node_id=n_abc --artifact_id=art_42 --format=json',
|
|
339
|
+
},
|
|
340
|
+
],
|
|
341
|
+
related: ['artifacts:list'],
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
name: 'compute:status',
|
|
345
|
+
group: 'compute-executions',
|
|
346
|
+
summary: 'Return compute lease status.',
|
|
347
|
+
endpoints: ['GET /compute/status'],
|
|
348
|
+
required: [
|
|
349
|
+
{
|
|
350
|
+
name: 'lease_control_token',
|
|
351
|
+
type: 'string',
|
|
352
|
+
description: 'Lease control token issued by the compute subsystem.',
|
|
353
|
+
},
|
|
354
|
+
],
|
|
355
|
+
optional: [],
|
|
356
|
+
examples: [
|
|
357
|
+
{
|
|
358
|
+
description: 'Check the status of a lease by control token.',
|
|
359
|
+
invocation: 'flywheel compute:status --lease_control_token tok_42',
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
description: 'Emit compute status as TSV for scripted monitoring.',
|
|
363
|
+
invocation: 'flywheel compute:status --lease_control_token=tok_42 --format=tsv',
|
|
364
|
+
},
|
|
365
|
+
],
|
|
366
|
+
related: [],
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
name: 'export:subgraph',
|
|
370
|
+
group: 'export-import',
|
|
371
|
+
summary: 'Export a subgraph snapshot.',
|
|
372
|
+
endpoints: ['POST /export'],
|
|
373
|
+
required: [
|
|
374
|
+
{
|
|
375
|
+
name: 'node_ids',
|
|
376
|
+
type: 'string',
|
|
377
|
+
description: 'Comma-separated list of node identifiers to include in the snapshot.',
|
|
378
|
+
},
|
|
379
|
+
],
|
|
380
|
+
optional: [],
|
|
381
|
+
examples: [
|
|
382
|
+
{
|
|
383
|
+
description: 'Export a subgraph snapshot for two nodes.',
|
|
384
|
+
invocation: 'flywheel export:subgraph --node_ids n_abc,n_def',
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
description: 'Export a single-node subgraph snapshot as CSV.',
|
|
388
|
+
invocation: 'flywheel export:subgraph --node_ids=n_abc --format=csv',
|
|
389
|
+
},
|
|
390
|
+
],
|
|
391
|
+
related: ['nodes:render:tree'],
|
|
392
|
+
},
|
|
393
|
+
];
|
|
394
|
+
import { PROFILE_COMMANDS } from './registry/profile.js';
|
|
395
|
+
import { TAGGING_COMMANDS } from './registry/tagging.js';
|
|
396
|
+
import { SHARING_COMMANDS } from './registry/sharing.js';
|
|
397
|
+
import { LIFECYCLE_COMMANDS } from './registry/lifecycle.js';
|
|
398
|
+
import { ARTIFACTS_COMMANDS } from './registry/artifacts.js';
|
|
399
|
+
import { COMPUTE_COMMANDS } from './registry/compute.js';
|
|
400
|
+
import { EXECUTIONS_COMMANDS } from './registry/executions.js';
|
|
401
|
+
import { APPROVAL_COMMANDS } from './registry/approval.js';
|
|
402
|
+
import { BUDGETS_COMMANDS } from './registry/budgets.js';
|
|
403
|
+
import { EXPORT_COMMANDS } from './registry/export.js';
|
|
404
|
+
import { UPDATES_COMMANDS } from './registry/updates.js';
|
|
405
|
+
import { GRAPH_COMMANDS } from './registry/graph.js';
|
|
406
|
+
import { ACCOUNT_COMMANDS } from './registry/account.js';
|
|
407
|
+
import { CREDITS_COMMANDS } from './registry/credits.js';
|
|
408
|
+
import { GITHUB_COMMANDS } from './registry/github.js';
|
|
409
|
+
import { INTEGRATIONS_COMMANDS } from './registry/integrations.js';
|
|
410
|
+
import { APIKEYS_COMMANDS } from './registry/api-keys.js';
|
|
411
|
+
import { RESOURCES_COMMANDS } from './registry/resources.js';
|
|
412
|
+
import { AUTH_COMMANDS } from './registry/auth.js';
|
|
413
|
+
import { ENV_COMMANDS } from './registry/env.js';
|
|
414
|
+
export const MVP_COMMANDS = [
|
|
415
|
+
...CORE_MVP_COMMANDS,
|
|
416
|
+
...PROFILE_COMMANDS,
|
|
417
|
+
...TAGGING_COMMANDS,
|
|
418
|
+
...SHARING_COMMANDS,
|
|
419
|
+
...LIFECYCLE_COMMANDS,
|
|
420
|
+
...ARTIFACTS_COMMANDS,
|
|
421
|
+
...COMPUTE_COMMANDS,
|
|
422
|
+
...EXECUTIONS_COMMANDS,
|
|
423
|
+
...APPROVAL_COMMANDS,
|
|
424
|
+
...BUDGETS_COMMANDS,
|
|
425
|
+
...EXPORT_COMMANDS,
|
|
426
|
+
...UPDATES_COMMANDS,
|
|
427
|
+
...GRAPH_COMMANDS,
|
|
428
|
+
...ACCOUNT_COMMANDS,
|
|
429
|
+
...CREDITS_COMMANDS,
|
|
430
|
+
...GITHUB_COMMANDS,
|
|
431
|
+
...INTEGRATIONS_COMMANDS,
|
|
432
|
+
...APIKEYS_COMMANDS,
|
|
433
|
+
...RESOURCES_COMMANDS,
|
|
434
|
+
...AUTH_COMMANDS,
|
|
435
|
+
...ENV_COMMANDS,
|
|
436
|
+
];
|
|
437
|
+
const COMMAND_BY_NAME = new Map(MVP_COMMANDS.map((command) => [command.name, command]));
|
|
438
|
+
export function getCommandByName(name) {
|
|
439
|
+
return COMMAND_BY_NAME.get(name);
|
|
440
|
+
}
|
|
441
|
+
//# sourceMappingURL=registry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"registry.js","sourceRoot":"","sources":["../../src/commands/registry.ts"],"names":[],"mappings":"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"}
|