aiwg
Version:
Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo
12 lines • 662 B
TypeScript
/**
* Hermes hook translator — emits a Python plugin stub at
* ~/.hermes/plugins/<id>.py that registers itself with Hermes' Python
* plugin system and shells out to the AIWG hook command.
*
* Hermes' hook surface per the parity assessment is Python-plugin-based;
* shelling out from Python is a common pattern, so the emitted plugin is
* a thin wrapper that subprocess.run()s the canonical AIWG command.
*/
import type { HookSource, TranslateOptions, TranslateResult } from './types.js';
export declare function translateForHermes(source: HookSource, options: TranslateOptions): Promise<TranslateResult>;
//# sourceMappingURL=hermes-translator.d.ts.map