neurocore.cli.run_cmd

neurocore run — execute a blueprint via FlowEngine.

Loads configuration, discovers skills, parses the blueprint, and executes through FlowEngine. Outputs the final context data.

Usage:

neurocore run blueprints/agent.flow.yaml neurocore run flow.yaml –data input=hello –data count=5 neurocore run flow.yaml –stream neurocore run flow.yaml –project-root /path/to/project

Attributes

Functions

run_blueprint(, data, stream, project_root, ...)

Execute a blueprint via FlowEngine.

Module Contents

neurocore.cli.run_cmd.console
neurocore.cli.run_cmd.output_console
neurocore.cli.run_cmd.run_blueprint(blueprint: pathlib.Path = typer.Argument(help='Path to the blueprint YAML file.', exists=True, dir_okay=False, readable=True), data: list[str] = typer.Option([], '--data', '-d', help='Initial context data as KEY=VALUE pairs.'), stream: bool = typer.Option(False, '--stream', help='Stream execution events as JSONL.'), project_root: pathlib.Path | None = typer.Option(None, '--project-root', '-p', help='Project root directory (auto-detected if not provided).'), output_json: bool = typer.Option(False, '--json', '-j', help='Output result as JSON.'), verbose: bool = typer.Option(False, '--verbose', '-v', help='Show detailed execution info.')) None[source]

Execute a blueprint via FlowEngine.