arcp 2.0.0

Reference implementation of the Agent Runtime Control Protocol (ARCP) v1.1 — umbrella crate that re-exports arcp-core, arcp-client, and arcp-runtime.
Documentation
//! Per-step LLM calls. plan / gather / synthesize / critique / finalize.

#![allow(
    unreachable_pub,
    clippy::todo,
    clippy::unimplemented,
    dead_code,
    unused_variables
)]

use serde_json::Value;

pub async fn run_step(
    _client: &(),
    _job_id: &str,
    _step: &str,
    _inputs: Value,
) -> Result<Value, std::io::Error> {
    todo!()
}