MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / run_daemon_subcommand

Function run_daemon_subcommand

src/entrypoints/daemon.py:16–28  ·  view source on GitHub ↗

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])

Source from the content-addressed store, hash-verified

14
15
16def 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

Callers 1

mainFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected