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
24 lines • 1.02 kB
TypeScript
/**
* Regenerate Context Files Handler (#1266)
*
* `aiwg regenerate` — regenerates the cross-provider context files
* (AIWG.md + AGENTS.md) without redeploying frameworks, agents, skills, or
* commands. Use when context drifts (e.g., editing CLAUDE.md, adding a
* framework manifest entry) and you want a fast, focused refresh.
*
* Scope: context-only. For full redeploy use `aiwg refresh` or `aiwg use`.
*
* Flags:
* --dry-run Print what would change without writing
* --provider <name> Target provider (default: auto-detect)
* --force Overwrite operator-modified context files (backs up first)
* --no-aiwg-md Skip AIWG.md emission
* --no-agents-md Skip AGENTS.md emission
*
* @source @src/cli/router.ts
* @issue #1266
*/
import type { CommandHandler } from './types.js';
export declare const regenerateHandler: CommandHandler;
export declare const regenerateHandlers: CommandHandler[];
//# sourceMappingURL=regenerate.d.ts.map