COA Describe
coa_describeRetrieve documentation for a specific COA topic, such as commands or schemas, with optional subtopic and cache refresh.
Instructions
Fetch a section of COA's self-describing documentation. Wraps coa describe <topic> [<subtopic>].
Well-known topics (also available as coalesce://coa/describe/* resources): overview, commands, selectors, schemas, workflow, structure, concepts, sql-format, node-types, config.
Use subtopic for the parameterized topics:
topic='command', subtopic='' — deep-dive on a specific command
topic='schema', subtopic='' — full JSON schema for a file type
Args:
topic (string, required)
subtopic (string, optional)
refresh (boolean, optional): bypass the on-disk cache and re-run COA
Returns: { topic, subtopic?, source (memory|disk|coa), content, coaVersion }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic | Yes | Describe topic. Well-known topics: overview, commands, selectors, schemas, workflow, structure, concepts, sql-format, node-types, config. You may also pass 'command' or 'schema' together with a subtopic. | |
| refresh | No | Force bypass of the on-disk cache and re-run `coa describe`. Defaults to false. | |
| subtopic | No | Optional subtopic (command name for topic='command', schema type for topic='schema'). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| topic | No | ||
| source | No | ||
| content | No | ||
| subtopic | No | ||
| coaVersion | No |