(_args: argparse.Namespace)
| 264 | |
| 265 | |
| 266 | def cmd_init(_args: argparse.Namespace) -> int: |
| 267 | state = build_state() |
| 268 | write_state(state) |
| 269 | print(f"Initialized docs loop state: {STATE_PATH}") |
| 270 | print(f"Prompt files: {PROMPTS_DIR}") |
| 271 | return 0 |
| 272 | |
| 273 | |
| 274 | def cmd_status(_args: argparse.Namespace) -> int: |
nothing calls this directly
no test coverage detected