openlatch-provider 0.1.0

Self-service onboarding CLI + runtime daemon for OpenLatch Editors and Providers
1
2
3
4
5
6
7
8
9
10
11
12
//! `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)",
    ))
}