Expand description
ACI (Agent-Computer Interface) schema types.
These types define the machine-readable contract that CmdHub returns to AI Agents for CLI command discovery and execution.
Structs§
- AciCommand
Contract - The core ACI command contract returned by CmdHub search.
- DbAci
Record - Flattened database record representing the JOIN of
argumentsandapps. - DbApp
- Database record representing the
appstable row. - DbArgument
- Database record representing the
argumentstable row. - DbMetadata
- Metadata about the local offline database.
- Install
Instructions - Cross-platform installation instructions.
- Update
Manifest - Update check response from the cloud sync endpoint.
Enums§
Constants§
- CREATE_
APPS_ FTS_ TABLE - SQL statement to create the FTS5 virtual table
apps_fts. - CREATE_
APPS_ TABLE - SQL statement to create the physical table
apps. - CREATE_
ARGUMENTS_ TABLE - SQL statement to create the physical table
arguments. - CREATE_
COMMANDS_ VEC_ TABLE - SQL statement to create the sqlite-vec virtual table
commands_vec. - RRF_
QUERY - The Reciprocal Rank Fusion (RRF) hybrid search query combining FTS5 and sqlite-vec.