Skip to content
Merged
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
3 changes: 2 additions & 1 deletion src/commands/catalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ function noIdp(): boolean {
export function registerCatalogCommands(program: Command): void {
const catalog = program
.command('catalog')
.description('Service catalog — browse, inspect, and validate services');
.description('Service catalog — browse, inspect, and validate services')
.action(() => { catalog.outputHelp(); });

// ── catalog list ──
catalog
Expand Down
3 changes: 2 additions & 1 deletion src/commands/observability.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import { colors, bold, RESET, writeLine } from '../lib/terminal.js';
export function registerObservabilityCommands(program: Command): void {
const obs = program
.command('obs')
.description('Observability — execution history, token costs, and trends');
.description('Observability — execution history, token costs, and trends')
.action(() => { obs.outputHelp(); });

obs
.command('history')
Expand Down
3 changes: 2 additions & 1 deletion src/commands/release-check.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ async function checkHealth(url: string, expect: number): Promise<{ ok: boolean;
export function registerReleaseCommands(program: Command): void {
const release = program
.command('release')
.description('Release management — pre-deploy checks and status');
.description('Release management — pre-deploy checks and status')
.action(() => { release.outputHelp(); });

release
.command('pre-check <service>')
Expand Down
3 changes: 2 additions & 1 deletion src/commands/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ function dockerComposeAvailable(): boolean {
export function registerServicesCommands(program: Command): void {
const services = program
.command('services')
.description('Manage Tier 2 local services (Postgres, Redis, API, Bridge)');
.description('Manage Tier 2 local services (Postgres, Redis, API, Bridge)')
.action(() => { services.outputHelp(); });

// ── services up ──
services
Expand Down
Loading