Skip to main content

tftio_cli_agent/
lib.rs

1#![cfg_attr(
2    not(test),
3    deny(clippy::unwrap_used, clippy::panic, clippy::indexing_slicing)
4)]
5//! Agent-mode types and skill artifact generation for `tftio` CLI tools.
6//!
7//! Re-exports agent-mode types from `tftio_cli_common`. Agent skill
8//! artifact generation will move here once the test infrastructure
9//! dependencies on `tftio_cli_common::test_support` are resolved.
10
11pub use tftio_cli_common::ToolSpec;
12pub use tftio_cli_common::agent::{
13    AgentCapability, AgentDispatch, AgentModeContext, AgentSkillError, AgentSubcommand,
14    AgentSurfaceSpec, CommandSelector, DescribeFormat, EmitScope, EmitTarget, FlagSelector,
15    ListFormat,
16};