aiwg
Version:
Cognitive architecture for AI-augmented software development with structured memory, ensemble validation, and closed-loop correction. FAIR-aligned artifacts, 84% cost reduction via human-in-the-loop, standards adopted by 100+ organizations.
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';