Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cli/src/commands/cloud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { registerJourneysCommands } from "./journeys.js";
import { registerOrganizationsCommands } from "./organizations.js";
import { registerProjectsCommands } from "./projects.js";
import { registerScenariosCommands } from "./scenarios.js";
import { registerSecretsCommands } from "./secrets.js";
import { registerSessionsCommands } from "./sessions.js";
import { registerSwarmAuthoringCommands } from "./swarms.js";
import { registerTunnelCommands } from "./tunnel.js";
Expand Down Expand Up @@ -44,6 +45,9 @@ export function registerCloudCommands(program: Command): Command {
registerEvalCommands(cloud);
registerClientsCommands(cloud);
registerEnvironmentsCommands(cloud);
// Project secrets sit with environments because an environment is what grants
// one to a run — you create a secret here and then select it there.
registerSecretsCommands(cloud);
registerImagesCommands(cloud);
registerSkillsCommands(cloud);

Expand Down
Loading
Loading