@kovojs/cli
v0.2.0
Published
The `kovo` command and its programmatic verifier API. Use it to explain an app graph, run framework audits, update agent docs, add copy-in UI, and export static output.
Downloads
55
Readme
@kovojs/cli
The kovo command and its programmatic verifier API. Use it to explain an app
graph, run framework audits, update agent docs, add copy-in UI, and export static
output.
pnpm add -D @kovojs/cli
pnpm exec kovo explain graph.jsonimport { kovoCheck, kovoExplain } from '@kovojs/cli';
import { readFile } from 'node:fs/promises';
const graph = JSON.parse(await readFile('graph.json', 'utf8'));
const explain = kovoExplain(graph, { kind: 'page', target: '/' });
const check = kovoCheck(graph);Reference
- API:
/api/cli/ - Guides:
/guides/cli/,/guides/kovo-explain/
