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
13 lines • 741 B
TypeScript
/**
* Copilot hook translator — emits dual-format JSON: a workflow file at
* `.github/hooks/<id>.json` plus an inline `hooks:` block embedded in the
* agent .agent.md frontmatter when the hook targets a specific agent.
*
* Per the parity research, Copilot hook discovery is partially documented;
* the emission here is conservative — produces the shape Copilot Chat is
* known to consume, marks AIWG provenance, and stages behind the feature
* flag handled by the orchestrator.
*/
import type { HookSource, TranslateOptions, TranslateResult } from './types.js';
export declare function translateForCopilot(source: HookSource, options: TranslateOptions): Promise<TranslateResult>;
//# sourceMappingURL=copilot-translator.d.ts.map