@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,284 @@
|
|
|
1
|
+
export const LIFECYCLE_COMMANDS = [
|
|
2
|
+
{
|
|
3
|
+
name: 'nodes:resolve-slug',
|
|
4
|
+
group: 'developer-admin',
|
|
5
|
+
summary: 'Resolve a slug to a node ID.',
|
|
6
|
+
endpoints: ['GET /nodes/resolve-by-slug'],
|
|
7
|
+
required: [{ name: 'slug_name', type: 'string', description: 'Slug text.' }],
|
|
8
|
+
optional: [
|
|
9
|
+
{
|
|
10
|
+
name: 'context_node_id',
|
|
11
|
+
type: 'string',
|
|
12
|
+
description: 'Disambiguating context node.',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
examples: [
|
|
16
|
+
{
|
|
17
|
+
description: 'Resolve a slug.',
|
|
18
|
+
invocation: 'flywheel nodes:resolve-slug --slug_name my-experiment',
|
|
19
|
+
},
|
|
20
|
+
],
|
|
21
|
+
related: ['nodes:get'],
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
name: 'nodes:audit:list',
|
|
25
|
+
group: 'developer-admin',
|
|
26
|
+
summary: 'List audit events for node-level actions.',
|
|
27
|
+
endpoints: ['GET /nodes/{node_id}/audit'],
|
|
28
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node ID.' }],
|
|
29
|
+
optional: [{ name: 'limit', type: 'integer', description: 'Max events.' }],
|
|
30
|
+
examples: [
|
|
31
|
+
{
|
|
32
|
+
description: 'Read audit events.',
|
|
33
|
+
invocation: 'flywheel nodes:audit:list --node_id n_abc --limit 50',
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
|
+
related: ['nodes:get'],
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
name: 'nodes:render:ancestry',
|
|
40
|
+
group: 'nodes-graph',
|
|
41
|
+
summary: 'Render ancestry (roots-ward lineage) for a node.',
|
|
42
|
+
endpoints: ['GET /nodes/{node_id}/ancestry'],
|
|
43
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node ID.' }],
|
|
44
|
+
optional: [{ name: 'max_depth', type: 'integer', description: 'Max depth.' }],
|
|
45
|
+
examples: [
|
|
46
|
+
{
|
|
47
|
+
description: 'Render ancestry.',
|
|
48
|
+
invocation: 'flywheel nodes:render:ancestry --node_id n_abc --max_depth 5',
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
related: ['nodes:render:tree', 'nodes:render:summary'],
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'nodes:render:summary',
|
|
55
|
+
group: 'nodes-graph',
|
|
56
|
+
summary: 'Render a compact summary of a node subtree.',
|
|
57
|
+
endpoints: ['GET /nodes/{node_id}/summary'],
|
|
58
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node ID.' }],
|
|
59
|
+
optional: [{ name: 'max_nodes', type: 'integer', description: 'Max nodes in summary.' }],
|
|
60
|
+
examples: [
|
|
61
|
+
{
|
|
62
|
+
description: 'Render summary.',
|
|
63
|
+
invocation: 'flywheel nodes:render:summary --node_id n_abc',
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
related: ['nodes:render:tree', 'nodes:render:ancestry'],
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
name: 'nodes:add-parent',
|
|
70
|
+
group: 'nodes-graph',
|
|
71
|
+
summary: 'Add a parent-child edge (mirrors POST /nodes/{node_id}/parents/add).',
|
|
72
|
+
endpoints: ['POST /nodes/{node_id}/parents/add'],
|
|
73
|
+
required: [
|
|
74
|
+
{ name: 'node_id', type: 'string', description: 'Child node receiving the edge.' },
|
|
75
|
+
{ name: 'parent_id', type: 'string', description: 'Parent node to attach.' },
|
|
76
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock.' },
|
|
77
|
+
],
|
|
78
|
+
optional: [],
|
|
79
|
+
examples: [
|
|
80
|
+
{
|
|
81
|
+
description: 'Attach a parent.',
|
|
82
|
+
invocation: 'flywheel nodes:add-parent --node_id n_child --parent_id n_parent --expected_revision 5',
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
related: ['nodes:remove-parent'],
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
name: 'nodes:remove-parent',
|
|
89
|
+
group: 'nodes-graph',
|
|
90
|
+
summary: 'Remove a parent-child edge.',
|
|
91
|
+
endpoints: ['POST /nodes/{node_id}/parents/remove'],
|
|
92
|
+
required: [
|
|
93
|
+
{ name: 'node_id', type: 'string', description: 'Child node identifier.' },
|
|
94
|
+
{ name: 'parent_id', type: 'string', description: 'Parent node identifier.' },
|
|
95
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock.' },
|
|
96
|
+
],
|
|
97
|
+
optional: [],
|
|
98
|
+
examples: [
|
|
99
|
+
{
|
|
100
|
+
description: 'Detach a parent.',
|
|
101
|
+
invocation: 'flywheel nodes:remove-parent --node_id n_child --parent_id n_parent --expected_revision 5',
|
|
102
|
+
},
|
|
103
|
+
],
|
|
104
|
+
related: ['nodes:add-parent'],
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
name: 'nodes:branch',
|
|
108
|
+
group: 'nodes-graph',
|
|
109
|
+
summary: 'Create a child branch from a node.',
|
|
110
|
+
endpoints: ['POST /nodes/{node_id}/branch'],
|
|
111
|
+
required: [{ name: 'node_id', type: 'string', description: 'Source node.' }],
|
|
112
|
+
optional: [
|
|
113
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock.' },
|
|
114
|
+
],
|
|
115
|
+
examples: [
|
|
116
|
+
{
|
|
117
|
+
description: 'Branch from a node.',
|
|
118
|
+
invocation: 'flywheel nodes:branch --node_id n_abc',
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
related: ['nodes:merge'],
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
name: 'nodes:merge',
|
|
125
|
+
group: 'nodes-graph',
|
|
126
|
+
summary: 'Merge multiple nodes into one resolved node.',
|
|
127
|
+
endpoints: ['POST /nodes/merge'],
|
|
128
|
+
required: [
|
|
129
|
+
{ name: 'node_ids', type: 'string', description: 'Comma-separated node IDs.' },
|
|
130
|
+
{
|
|
131
|
+
name: 'expected_revision_by_node',
|
|
132
|
+
type: 'json',
|
|
133
|
+
description: 'JSON object mapping node_id to revision.',
|
|
134
|
+
},
|
|
135
|
+
],
|
|
136
|
+
optional: [
|
|
137
|
+
{ name: 'title', type: 'string', description: 'Resolved node title.' },
|
|
138
|
+
{ name: 'resolved_node', type: 'json', description: 'Resolved node JSON blob.' },
|
|
139
|
+
],
|
|
140
|
+
examples: [
|
|
141
|
+
{
|
|
142
|
+
description: 'Merge two branches.',
|
|
143
|
+
invocation: `flywheel nodes:merge --node_ids n1,n2 --expected_revision_by_node '{"n1":5,"n2":3}'`,
|
|
144
|
+
},
|
|
145
|
+
],
|
|
146
|
+
related: ['nodes:branch'],
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
name: 'nodes:delete-bulk',
|
|
150
|
+
group: 'nodes-graph',
|
|
151
|
+
summary: 'Delete multiple node subtrees.',
|
|
152
|
+
endpoints: ['POST /nodes/bulk-delete'],
|
|
153
|
+
required: [{ name: 'node_ids', type: 'string', description: 'Comma-separated node IDs.' }],
|
|
154
|
+
optional: [
|
|
155
|
+
{
|
|
156
|
+
name: 'delete_mode',
|
|
157
|
+
type: 'string',
|
|
158
|
+
description: 'cascade | detach_shared (default cascade).',
|
|
159
|
+
},
|
|
160
|
+
],
|
|
161
|
+
examples: [
|
|
162
|
+
{
|
|
163
|
+
description: 'Bulk delete.',
|
|
164
|
+
invocation: 'flywheel nodes:delete-bulk --node_ids n1,n2 --delete_mode cascade',
|
|
165
|
+
},
|
|
166
|
+
],
|
|
167
|
+
related: ['nodes:delete'],
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
name: 'nodes:files',
|
|
171
|
+
group: 'nodes-graph',
|
|
172
|
+
summary: 'List files attached to a node.',
|
|
173
|
+
endpoints: ['GET /nodes/{node_id}/files'],
|
|
174
|
+
required: [{ name: 'node_id', type: 'string', description: 'Owning node.' }],
|
|
175
|
+
optional: [],
|
|
176
|
+
examples: [
|
|
177
|
+
{ description: 'List files.', invocation: 'flywheel nodes:files --node_id n_abc' },
|
|
178
|
+
],
|
|
179
|
+
related: ['artifacts:list'],
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
name: 'nodes:stage:lease:heartbeat',
|
|
183
|
+
group: 'nodes-graph',
|
|
184
|
+
summary: 'Heartbeat an active node stage lease.',
|
|
185
|
+
endpoints: ['POST /nodes/{node_id}/stage/lease/heartbeat'],
|
|
186
|
+
required: [
|
|
187
|
+
{ name: 'node_id', type: 'string', description: 'Node ID.' },
|
|
188
|
+
{ name: 'stage_session_id', type: 'string', description: 'Stage session ID.' },
|
|
189
|
+
],
|
|
190
|
+
optional: [],
|
|
191
|
+
examples: [
|
|
192
|
+
{
|
|
193
|
+
description: 'Heartbeat.',
|
|
194
|
+
invocation: 'flywheel nodes:stage:lease:heartbeat --node_id n_abc --stage_session_id s1',
|
|
195
|
+
},
|
|
196
|
+
],
|
|
197
|
+
related: ['nodes:stage:lease:acquire', 'nodes:stage:lease:release'],
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
name: 'nodes:stage:lease:release',
|
|
201
|
+
group: 'nodes-graph',
|
|
202
|
+
summary: 'Release a node stage lease.',
|
|
203
|
+
endpoints: ['POST /nodes/{node_id}/stage/lease/release'],
|
|
204
|
+
required: [
|
|
205
|
+
{ name: 'node_id', type: 'string', description: 'Node ID.' },
|
|
206
|
+
{ name: 'stage_session_id', type: 'string', description: 'Stage session ID.' },
|
|
207
|
+
],
|
|
208
|
+
optional: [],
|
|
209
|
+
examples: [
|
|
210
|
+
{
|
|
211
|
+
description: 'Release.',
|
|
212
|
+
invocation: 'flywheel nodes:stage:lease:release --node_id n_abc --stage_session_id s1',
|
|
213
|
+
},
|
|
214
|
+
],
|
|
215
|
+
related: ['nodes:stage:lease:acquire', 'nodes:stage:lease:heartbeat'],
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
name: 'campaign:snapshot',
|
|
219
|
+
group: 'nodes-graph',
|
|
220
|
+
summary: 'Resolve campaign root snapshot for a node.',
|
|
221
|
+
endpoints: ['GET /nodes/{node_id}/campaign/snapshot'],
|
|
222
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node ID.' }],
|
|
223
|
+
optional: [],
|
|
224
|
+
examples: [
|
|
225
|
+
{
|
|
226
|
+
description: 'Read campaign snapshot.',
|
|
227
|
+
invocation: 'flywheel campaign:snapshot --node_id n_abc',
|
|
228
|
+
},
|
|
229
|
+
],
|
|
230
|
+
related: [],
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
name: 'nodes:create',
|
|
234
|
+
group: 'nodes-graph',
|
|
235
|
+
summary: 'Create a minimal node (title only) and emit graph-change event.',
|
|
236
|
+
endpoints: ['POST /nodes'],
|
|
237
|
+
required: [{ name: 'title', type: 'string', description: 'Node title.' }],
|
|
238
|
+
optional: [],
|
|
239
|
+
examples: [
|
|
240
|
+
{
|
|
241
|
+
description: 'Create a node.',
|
|
242
|
+
invocation: `flywheel nodes:create --title "my new node"`,
|
|
243
|
+
},
|
|
244
|
+
],
|
|
245
|
+
related: ['nodes:commit-new'],
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
name: 'nodes:stage:backfill:hypothesis',
|
|
249
|
+
group: 'nodes-graph',
|
|
250
|
+
summary: 'Derive hypothesis from staged node content.',
|
|
251
|
+
endpoints: ['POST /nodes/{node_id}/stage/backfill/hypothesis'],
|
|
252
|
+
required: [
|
|
253
|
+
{ name: 'node_id', type: 'string', description: 'Node ID.' },
|
|
254
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock.' },
|
|
255
|
+
],
|
|
256
|
+
optional: [],
|
|
257
|
+
examples: [
|
|
258
|
+
{
|
|
259
|
+
description: 'Backfill hypothesis.',
|
|
260
|
+
invocation: 'flywheel nodes:stage:backfill:hypothesis --node_id n_abc --expected_revision 7',
|
|
261
|
+
},
|
|
262
|
+
],
|
|
263
|
+
related: ['nodes:stage:backfill:insights'],
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
name: 'nodes:stage:backfill:insights',
|
|
267
|
+
group: 'nodes-graph',
|
|
268
|
+
summary: 'Extract structured insights from staged node content.',
|
|
269
|
+
endpoints: ['POST /nodes/{node_id}/stage/backfill/insights'],
|
|
270
|
+
required: [
|
|
271
|
+
{ name: 'node_id', type: 'string', description: 'Node ID.' },
|
|
272
|
+
{ name: 'expected_revision', type: 'integer', description: 'Optimistic lock.' },
|
|
273
|
+
],
|
|
274
|
+
optional: [],
|
|
275
|
+
examples: [
|
|
276
|
+
{
|
|
277
|
+
description: 'Backfill insights.',
|
|
278
|
+
invocation: 'flywheel nodes:stage:backfill:insights --node_id n_abc --expected_revision 7',
|
|
279
|
+
},
|
|
280
|
+
],
|
|
281
|
+
related: ['nodes:stage:backfill:hypothesis'],
|
|
282
|
+
},
|
|
283
|
+
];
|
|
284
|
+
//# sourceMappingURL=lifecycle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lifecycle.js","sourceRoot":"","sources":["../../../src/commands/registry/lifecycle.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
export const PROFILE_COMMANDS = [
|
|
2
|
+
{
|
|
3
|
+
name: 'profile:list',
|
|
4
|
+
group: 'profile',
|
|
5
|
+
summary: 'List configured CLI profiles (local only).',
|
|
6
|
+
endpoints: [],
|
|
7
|
+
required: [],
|
|
8
|
+
optional: [],
|
|
9
|
+
examples: [{ description: 'List profiles.', invocation: 'flywheel profile:list' }],
|
|
10
|
+
related: ['profile:show', 'profile:set'],
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'profile:show',
|
|
14
|
+
group: 'profile',
|
|
15
|
+
summary: 'Show a profile definition (local only).',
|
|
16
|
+
endpoints: [],
|
|
17
|
+
required: [{ name: 'name', type: 'string', description: 'Profile name.' }],
|
|
18
|
+
optional: [],
|
|
19
|
+
examples: [
|
|
20
|
+
{
|
|
21
|
+
description: 'Show prod profile.',
|
|
22
|
+
invocation: 'flywheel profile:show --name prod',
|
|
23
|
+
},
|
|
24
|
+
],
|
|
25
|
+
related: ['profile:list'],
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: 'profile:set',
|
|
29
|
+
group: 'profile',
|
|
30
|
+
summary: 'Create or update a CLI profile (local only; never stores plaintext keys).',
|
|
31
|
+
endpoints: [],
|
|
32
|
+
required: [
|
|
33
|
+
{ name: 'name', type: 'string', description: 'Profile name.' },
|
|
34
|
+
{ name: 'base_url', type: 'string', description: 'Base URL for the server.' },
|
|
35
|
+
],
|
|
36
|
+
optional: [
|
|
37
|
+
{
|
|
38
|
+
name: 'api_key_env',
|
|
39
|
+
type: 'string',
|
|
40
|
+
description: 'Name of env var that holds the API key at runtime.',
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
name: 'api_key_keychain',
|
|
44
|
+
type: 'boolean',
|
|
45
|
+
description: 'If set, the CLI reads the API key from the OS keychain.',
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'default_format',
|
|
49
|
+
type: 'string',
|
|
50
|
+
description: 'Output format default (json|tsv|csv).',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
name: 'default_timeout_s',
|
|
54
|
+
type: 'integer',
|
|
55
|
+
description: 'Default request timeout in seconds.',
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
examples: [
|
|
59
|
+
{
|
|
60
|
+
description: 'Create prod profile pointing at FLYWHEEL_PROD_API_KEY.',
|
|
61
|
+
invocation: 'flywheel profile:set --name prod --base_url=https://api.example --api_key_env=FLYWHEEL_PROD_API_KEY',
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
related: ['profile:show', 'profile:unset'],
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
name: 'profile:unset',
|
|
68
|
+
group: 'profile',
|
|
69
|
+
summary: 'Delete a CLI profile (local only).',
|
|
70
|
+
endpoints: [],
|
|
71
|
+
required: [{ name: 'name', type: 'string', description: 'Profile name.' }],
|
|
72
|
+
optional: [],
|
|
73
|
+
examples: [
|
|
74
|
+
{
|
|
75
|
+
description: 'Remove staging profile.',
|
|
76
|
+
invocation: 'flywheel profile:unset --name staging',
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
related: ['profile:list'],
|
|
80
|
+
},
|
|
81
|
+
];
|
|
82
|
+
//# sourceMappingURL=profile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profile.js","sourceRoot":"","sources":["../../../src/commands/registry/profile.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,gBAAgB,GAAqC;IAChE;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,SAAS;QAChB,OAAO,EAAE,4CAA4C;QACrD,SAAS,EAAE,EAAE;QACb,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE,CAAC,EAAE,WAAW,EAAE,gBAAgB,EAAE,UAAU,EAAE,uBAAuB,EAAE,CAAC;QAClF,OAAO,EAAE,CAAC,cAAc,EAAE,aAAa,CAAC;KACzC;IACD;QACE,IAAI,EAAE,cAAc;QACpB,KAAK,EAAE,SAAS;QAChB,OAAO,EAAE,yCAAyC;QAClD,SAAS,EAAE,EAAE;QACb,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,eAAe,EAAE,CAAC;QAC1E,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,oBAAoB;gBACjC,UAAU,EAAE,mCAAmC;aAChD;SACF;QACD,OAAO,EAAE,CAAC,cAAc,CAAC;KAC1B;IACD;QACE,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,SAAS;QAChB,OAAO,EAAE,2EAA2E;QACpF,SAAS,EAAE,EAAE;QACb,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,eAAe,EAAE;YAC9D,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,0BAA0B,EAAE;SAC9E;QACD,QAAQ,EAAE;YACR;gBACE,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,oDAAoD;aAClE;YACD;gBACE,IAAI,EAAE,kBAAkB;gBACxB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,yDAAyD;aACvE;YACD;gBACE,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,uCAAuC;aACrD;YACD;gBACE,IAAI,EAAE,mBAAmB;gBACzB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,qCAAqC;aACnD;SACF;QACD,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,wDAAwD;gBACrE,UAAU,EACR,qGAAqG;aACxG;SACF;QACD,OAAO,EAAE,CAAC,cAAc,EAAE,eAAe,CAAC;KAC3C;IACD;QACE,IAAI,EAAE,eAAe;QACrB,KAAK,EAAE,SAAS;QAChB,OAAO,EAAE,oCAAoC;QAC7C,SAAS,EAAE,EAAE;QACb,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,eAAe,EAAE,CAAC;QAC1E,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,yBAAyB;gBACtC,UAAU,EAAE,uCAAuC;aACpD;SACF;QACD,OAAO,EAAE,CAAC,cAAc,CAAC;KAC1B;CACF,CAAC"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
export const RESOURCES_COMMANDS = [
|
|
2
|
+
{
|
|
3
|
+
name: 'blobs:get',
|
|
4
|
+
group: 'updates-resources',
|
|
5
|
+
summary: 'Download a raw blob by storage key.',
|
|
6
|
+
endpoints: ['GET /blobs/{key}'],
|
|
7
|
+
required: [{ name: 'key', type: 'string', description: 'Storage key.' }],
|
|
8
|
+
optional: [],
|
|
9
|
+
examples: [
|
|
10
|
+
{
|
|
11
|
+
description: 'Fetch a blob.',
|
|
12
|
+
invocation: 'flywheel blobs:get --key blob_abc --out=./out.bin',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
related: [],
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'files:list',
|
|
19
|
+
group: 'updates-resources',
|
|
20
|
+
summary: 'List all your files across nodes.',
|
|
21
|
+
endpoints: ['GET /users/me/files'],
|
|
22
|
+
required: [],
|
|
23
|
+
optional: [
|
|
24
|
+
{ name: 'page', type: 'integer', description: 'Page number.' },
|
|
25
|
+
{ name: 'page_size', type: 'integer', description: 'Page size (canonical).' },
|
|
26
|
+
],
|
|
27
|
+
examples: [
|
|
28
|
+
{
|
|
29
|
+
description: 'List files.',
|
|
30
|
+
invocation: 'flywheel files:list --page 1 --page_size 50',
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
related: ['nodes:files'],
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'export:history',
|
|
37
|
+
group: 'updates-resources',
|
|
38
|
+
summary: 'Export node history as JSONL.',
|
|
39
|
+
endpoints: ['GET /legacy/history/export.jsonl'],
|
|
40
|
+
required: [],
|
|
41
|
+
optional: [],
|
|
42
|
+
examples: [
|
|
43
|
+
{ description: 'Export.', invocation: 'flywheel export:history --out=./history.jsonl' },
|
|
44
|
+
],
|
|
45
|
+
related: ['export:subgraph'],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'compute:policy:get',
|
|
49
|
+
group: 'developer-admin',
|
|
50
|
+
summary: 'Read compute budget policy for a node.',
|
|
51
|
+
endpoints: ['GET /nodes/{node_id}/compute/policy'],
|
|
52
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node ID.' }],
|
|
53
|
+
optional: [],
|
|
54
|
+
examples: [
|
|
55
|
+
{
|
|
56
|
+
description: 'Read policy.',
|
|
57
|
+
invocation: 'flywheel compute:policy:get --node_id n_abc',
|
|
58
|
+
},
|
|
59
|
+
],
|
|
60
|
+
related: ['compute:policy:set'],
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
name: 'compute:policy:set',
|
|
64
|
+
group: 'developer-admin',
|
|
65
|
+
summary: 'Update compute budget policy for a node (partial).',
|
|
66
|
+
endpoints: ['PATCH /nodes/{node_id}/compute/policy'],
|
|
67
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node ID.' }],
|
|
68
|
+
optional: [],
|
|
69
|
+
examples: [
|
|
70
|
+
{
|
|
71
|
+
description: 'Bump hard cap.',
|
|
72
|
+
invocation: 'flywheel compute:policy:set --node_id n_abc --hard_cap_cents 5000',
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
related: ['compute:policy:get'],
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
name: 'compute:budgets',
|
|
79
|
+
group: 'updates-resources',
|
|
80
|
+
summary: 'List budget grants visible for a node context.',
|
|
81
|
+
endpoints: ['GET /nodes/{node_id}/budgets'],
|
|
82
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node ID.' }],
|
|
83
|
+
optional: [
|
|
84
|
+
{ name: 'budget_source', type: 'string', description: 'Filter by source: user | root.' },
|
|
85
|
+
{ name: 'status', type: 'string', description: 'Filter by status.' },
|
|
86
|
+
],
|
|
87
|
+
examples: [
|
|
88
|
+
{
|
|
89
|
+
description: 'List budgets.',
|
|
90
|
+
invocation: 'flywheel compute:budgets --node_id n_abc',
|
|
91
|
+
},
|
|
92
|
+
],
|
|
93
|
+
related: ['compute:policy:get'],
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
name: 'machines:list',
|
|
97
|
+
group: 'updates-resources',
|
|
98
|
+
summary: 'List your managed compute leases.',
|
|
99
|
+
endpoints: ['GET /users/me/machines'],
|
|
100
|
+
required: [],
|
|
101
|
+
optional: [],
|
|
102
|
+
examples: [
|
|
103
|
+
{ description: 'List machines.', invocation: 'flywheel machines:list' },
|
|
104
|
+
],
|
|
105
|
+
related: ['compute:status'],
|
|
106
|
+
},
|
|
107
|
+
];
|
|
108
|
+
//# sourceMappingURL=resources.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resources.js","sourceRoot":"","sources":["../../../src/commands/registry/resources.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
export const SHARING_COMMANDS = [
|
|
2
|
+
{
|
|
3
|
+
name: 'nodes:sharing:get',
|
|
4
|
+
group: 'nodes-graph',
|
|
5
|
+
summary: 'Get sharing (access policy) for a node.',
|
|
6
|
+
endpoints: ['GET /nodes/{node_id}/access-policy'],
|
|
7
|
+
required: [{ name: 'node_id', type: 'string', description: 'Node identifier.' }],
|
|
8
|
+
optional: [],
|
|
9
|
+
examples: [
|
|
10
|
+
{
|
|
11
|
+
description: 'Read sharing for a node.',
|
|
12
|
+
invocation: 'flywheel nodes:sharing:get --node_id n_abc',
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
related: ['nodes:sharing:set'],
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'nodes:sharing:set',
|
|
19
|
+
group: 'nodes-graph',
|
|
20
|
+
summary: 'Replace sharing (access policy) for a node.',
|
|
21
|
+
endpoints: ['PUT /nodes/{node_id}/access-policy'],
|
|
22
|
+
required: [
|
|
23
|
+
{ name: 'node_id', type: 'string', description: 'Node identifier.' },
|
|
24
|
+
{ name: 'sharing_mode', type: 'string', description: 'One of private|account|public|link.' },
|
|
25
|
+
],
|
|
26
|
+
optional: [],
|
|
27
|
+
examples: [
|
|
28
|
+
{
|
|
29
|
+
description: 'Set a node public.',
|
|
30
|
+
invocation: 'flywheel nodes:sharing:set --node_id n_abc --sharing_mode public',
|
|
31
|
+
},
|
|
32
|
+
],
|
|
33
|
+
related: ['nodes:sharing:get', 'nodes:sharing:set-bulk'],
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
name: 'nodes:sharing:set-bulk',
|
|
37
|
+
group: 'nodes-graph',
|
|
38
|
+
summary: 'Apply one sharing policy to multiple nodes.',
|
|
39
|
+
endpoints: ['POST /nodes/access-policy/bulk'],
|
|
40
|
+
required: [
|
|
41
|
+
{ name: 'node_ids', type: 'string', description: 'Comma-separated node IDs.' },
|
|
42
|
+
{ name: 'sharing_mode', type: 'string', description: 'private|account|public|link.' },
|
|
43
|
+
],
|
|
44
|
+
optional: [],
|
|
45
|
+
examples: [
|
|
46
|
+
{
|
|
47
|
+
description: 'Share two nodes to the account.',
|
|
48
|
+
invocation: 'flywheel nodes:sharing:set-bulk --node_ids n1,n2 --sharing_mode account',
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
related: ['nodes:sharing:set'],
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'nodes:sharing:summaries',
|
|
55
|
+
group: 'nodes-graph',
|
|
56
|
+
summary: 'Read access summaries for multiple nodes in one batch.',
|
|
57
|
+
endpoints: ['POST /nodes/access-policy/summaries'],
|
|
58
|
+
required: [{ name: 'node_ids', type: 'string', description: 'Comma-separated node IDs.' }],
|
|
59
|
+
optional: [],
|
|
60
|
+
examples: [
|
|
61
|
+
{
|
|
62
|
+
description: 'Batch-read summaries.',
|
|
63
|
+
invocation: 'flywheel nodes:sharing:summaries --node_ids n1,n2,n3',
|
|
64
|
+
},
|
|
65
|
+
],
|
|
66
|
+
related: ['nodes:sharing:get'],
|
|
67
|
+
},
|
|
68
|
+
];
|
|
69
|
+
//# sourceMappingURL=sharing.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sharing.js","sourceRoot":"","sources":["../../../src/commands/registry/sharing.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,gBAAgB,GAAqC;IAChE;QACE,IAAI,EAAE,mBAAmB;QACzB,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,yCAAyC;QAClD,SAAS,EAAE,CAAC,oCAAoC,CAAC;QACjD,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE,CAAC;QAChF,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,0BAA0B;gBACvC,UAAU,EAAE,4CAA4C;aACzD;SACF;QACD,OAAO,EAAE,CAAC,mBAAmB,CAAC;KAC/B;IACD;QACE,IAAI,EAAE,mBAAmB;QACzB,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,6CAA6C;QACtD,SAAS,EAAE,CAAC,oCAAoC,CAAC;QACjD,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE;YACpE,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qCAAqC,EAAE;SAC7F;QACD,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,oBAAoB;gBACjC,UAAU,EAAE,kEAAkE;aAC/E;SACF;QACD,OAAO,EAAE,CAAC,mBAAmB,EAAE,wBAAwB,CAAC;KACzD;IACD;QACE,IAAI,EAAE,wBAAwB;QAC9B,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,6CAA6C;QACtD,SAAS,EAAE,CAAC,gCAAgC,CAAC;QAC7C,QAAQ,EAAE;YACR,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,2BAA2B,EAAE;YAC9E,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,8BAA8B,EAAE;SACtF;QACD,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,iCAAiC;gBAC9C,UAAU,EACR,yEAAyE;aAC5E;SACF;QACD,OAAO,EAAE,CAAC,mBAAmB,CAAC;KAC/B;IACD;QACE,IAAI,EAAE,yBAAyB;QAC/B,KAAK,EAAE,aAAa;QACpB,OAAO,EAAE,wDAAwD;QACjE,SAAS,EAAE,CAAC,qCAAqC,CAAC;QAClD,QAAQ,EAAE,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,2BAA2B,EAAE,CAAC;QAC1F,QAAQ,EAAE,EAAE;QACZ,QAAQ,EAAE;YACR;gBACE,WAAW,EAAE,uBAAuB;gBACpC,UAAU,EAAE,sDAAsD;aACnE;SACF;QACD,OAAO,EAAE,CAAC,mBAAmB,CAAC;KAC/B;CACF,CAAC"}
|