diff options
| author | soryu <soryu@soryu.co> | 2026-02-04 01:07:14 +0000 |
|---|---|---|
| committer | soryu <soryu@soryu.co> | 2026-02-04 01:07:14 +0000 |
| commit | a734bf1a472b19d63341769d26a66628575df7f4 (patch) | |
| tree | ec78f57e5721d157c620df0c99de5b5efe485231 /makima/src/daemon/cli/mod.rs | |
| parent | c732dd048128808cd9f67f6e1176a5b565df5678 (diff) | |
| download | soryu-a734bf1a472b19d63341769d26a66628575df7f4.tar.gz soryu-a734bf1a472b19d63341769d26a66628575df7f4.zip | |
Add chain checkpoint contracts
Diffstat (limited to 'makima/src/daemon/cli/mod.rs')
| -rw-r--r-- | makima/src/daemon/cli/mod.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/makima/src/daemon/cli/mod.rs b/makima/src/daemon/cli/mod.rs index 035a784..25163c2 100644 --- a/makima/src/daemon/cli/mod.rs +++ b/makima/src/daemon/cli/mod.rs @@ -170,6 +170,20 @@ pub enum SupervisorCommand { /// Mark a deliverable as complete MarkDeliverable(supervisor::MarkDeliverableArgs), + + // Chain supervisor commands (for chain-level orchestration) + + /// Get chain status with progress info + ChainStatus(supervisor::ChainStatusArgs), + + /// List contracts in the chain + ChainContracts(supervisor::ChainContractsArgs), + + /// Manually trigger chain progression + ChainProgress(supervisor::ChainProgressArgs), + + /// Get chain DAG visualization + ChainGraph(supervisor::ChainGraphArgs), } /// Contract subcommands for task-contract interaction. |
