cargo-adk 0.9.0

CLI scaffolding tool for ADK-Rust — generate agent projects from templates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # cargo-adk library
//!
//! Core types and modules for the composable template scaffolding engine.
//! This library provides the Template Registry, Capability Addons, Enterprise Patterns,
//! Composition Pipeline, and Interactive Wizard for `cargo adk new`.

pub mod addon;
pub mod cli;
pub mod codegen;
pub mod composition;
pub mod interactive;
pub mod pattern;
pub mod provider;
pub mod registry;
pub mod template;