tftio-cli-agent 2.5.1

Agent-mode surface filtering and rendering for tftio CLI tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(
    not(test),
    deny(clippy::unwrap_used, clippy::panic, clippy::indexing_slicing)
)]
//! Agent-mode types and skill artifact generation for `tftio` CLI tools.
//!
//! Re-exports agent-mode types from `tftio_cli_common`. Agent skill
//! artifact generation will move here once the test infrastructure
//! dependencies on `tftio_cli_common::test_support` are resolved.

pub use tftio_cli_common::ToolSpec;
pub use tftio_cli_common::agent::{
    AgentCapability, AgentDispatch, AgentModeContext, AgentSkillError, AgentSubcommand,
    AgentSurfaceSpec, CommandSelector, DescribeFormat, EmitScope, EmitTarget, FlagSelector,
    ListFormat,
};