Skip to content
Merged
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
2 changes: 2 additions & 0 deletions packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { buildCmd } from './commands/build.js';
import { promoteCmd } from './commands/promote.js';
import { scaleCmd } from './commands/scale.js';
import { iterateCmd } from './commands/iterate.js';
import { shipCmd } from './commands/ship.js';
import { loginCmd, logoutCmd } from './commands/login.js';
import { secretsCmd } from './commands/secrets.js';
import { configCmd } from './commands/config.js';
Expand All @@ -31,6 +32,7 @@ program
// Entity-ops lives under `build` (see docs/prd/entityctl.md).
program.addCommand(buildCmd); // build · compile · entity-ops nested
program.addCommand(promoteCmd); // promote · publish (ship), ads, merch — anything that gets users
program.addCommand(shipCmd); // ship · publish built artifacts to stores and registries
program.addCommand(scaleCmd); // scale · provision (deploy), DNS, rollouts, cost
program.addCommand(iterateCmd); // iterate · observe + agent-propose + ship + measure (agents nested)

Expand Down
Loading