neurocore.cli.runs_cmd¶
neurocore runs — inspect, replay, resume, and approve execution history.
- Usage:
neurocore runs list [–status suspended] [–blueprint research] [–limit 20] neurocore runs inspect <run_id> [–full] [–json] neurocore runs replay <run_id> neurocore runs resume <run_id> [–data key=value …] neurocore runs approve <run_id> [–reject] [–note “…”] [–by you@example.com]
Attributes¶
Functions¶
|
List recorded runs (newest first). |
|
Show a run's details and step history. |
|
Re-execute a stored run from its original inputs (creates a new run). |
|
Resume a suspended or failed run. |
|
Approve (or --reject) a suspended approval gate and resume the run. |
Module Contents¶
- neurocore.cli.runs_cmd.console¶
- neurocore.cli.runs_cmd.output_console¶
- neurocore.cli.runs_cmd.runs_app¶
- neurocore.cli.runs_cmd.runs_list(status: str | None = typer.Option(None, '--status', '-s', help='Filter by status.'), blueprint: str | None = typer.Option(None, '--blueprint', '-b', help='Filter by blueprint name.'), limit: int = typer.Option(50, '--limit', '-n', help='Max rows.'), project_root: pathlib.Path | None = typer.Option(None, '--project-root', '-p')) None[source]¶
List recorded runs (newest first).
- neurocore.cli.runs_cmd.runs_inspect(run_id: str = typer.Argument(help='Run id (full or unique prefix).'), full: bool = typer.Option(False, '--full', help='Show the final context data.'), output_json: bool = typer.Option(False, '--json', '-j', help='Emit JSON.'), project_root: pathlib.Path | None = typer.Option(None, '--project-root', '-p')) None[source]¶
Show a run’s details and step history.
- neurocore.cli.runs_cmd.runs_replay(run_id: str = typer.Argument(help='Run id (full or unique prefix).'), project_root: pathlib.Path | None = typer.Option(None, '--project-root', '-p')) None[source]¶
Re-execute a stored run from its original inputs (creates a new run).
- neurocore.cli.runs_cmd.runs_resume(run_id: str = typer.Argument(help='Run id (full or unique prefix).'), data: list[str] = typer.Option([], '--data', '-d', help='resume_data as KEY=VALUE pairs.'), project_root: pathlib.Path | None = typer.Option(None, '--project-root', '-p')) None[source]¶
Resume a suspended or failed run.
- neurocore.cli.runs_cmd.runs_approve(run_id: str = typer.Argument(help='Run id (full or unique prefix).'), reject: bool = typer.Option(False, '--reject', help='Reject instead of approve.'), note: str = typer.Option('', '--note', help='Optional decision note.'), by: str = typer.Option('', '--by', help='Who made the decision.'), project_root: pathlib.Path | None = typer.Option(None, '--project-root', '-p')) None[source]¶
Approve (or –reject) a suspended approval gate and resume the run.