//! `new tool --template <python|rust|node>` — scaffolds a starter tool repo.
//! Implementation lands in P2.T10 (after the tool SDKs are published).
use crate::cli::{GlobalArgs, NewKind};
use crate::error::{OlError, OL_4210_SCHEMA_MISMATCH};
pub async fn run(_g: &GlobalArgs, _kind: NewKind) -> Result<(), OlError> {
Err(OlError::new(
OL_4210_SCHEMA_MISMATCH,
"`new tool --template …` is implemented in P2.T10 (tool SDKs land first)",
))
}