Print a "not yet implemented" message and exit cleanly. The handler exists primarily so ``clawcodex daemon`` doesn't fall through to the interactive REPL bootstrap (which would load Textual and the full tool registry — wasteful for a non-interactive command).
(rest: list[str])
| 14 | |
| 15 | |
| 16 | def run_daemon_subcommand(rest: list[str]) -> int: |
| 17 | """Print a "not yet implemented" message and exit cleanly. |
| 18 | |
| 19 | The handler exists primarily so ``clawcodex daemon`` doesn't fall |
| 20 | through to the interactive REPL bootstrap (which would load Textual |
| 21 | and the full tool registry — wasteful for a non-interactive command). |
| 22 | """ |
| 23 | print( |
| 24 | "clawcodex daemon: not yet implemented in this Python port. " |
| 25 | "See the TypeScript reference at typescript/src/coordinator/.", |
| 26 | file=sys.stderr, |
| 27 | ) |
| 28 | return 1 |