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
30 lines (25 loc) • 506 B
text/typescript
/**
* Testing mocks module
* Provides mock implementations for isolated testing
*/
export {
MockAgentOrchestrator,
type MockAgentBehavior,
type AgentRequest,
type AgentResponse,
type AgentExecution
} from './agent-orchestrator';
export {
GitHubAPIStub,
type GitHubResponse,
type Issue,
type PullRequest,
type Label,
type Request,
type IssueListOptions
} from './github-stub';
export {
FilesystemSandbox,
type WriteOptions,
type FileStats
} from './filesystem-sandbox';