UNPKG

miyabi-agent-sdk

Version:

Miyabi Autonomous Agent SDK - 7 Agents based on Shikigaku Theory with 100% cost reduction mode

18 lines 833 B
/** * Miyabi Agent SDK - Agent Exports * * 7つの自律Agent(識学理論5原則適用) */ export { CoordinatorAgent } from "./CoordinatorAgent.js"; export type { CoordinatorInput, CoordinatorOutput } from "./CoordinatorAgent.js"; export { IssueAgent } from "./IssueAgent.js"; export type { IssueInput, IssueOutput } from "./IssueAgent.js"; export { CodeGenAgent } from "./CodeGenAgent.js"; export type { CodeGenInput, CodeGenOutput } from "./CodeGenAgent.js"; export { ReviewAgent } from "./ReviewAgent.js"; export type { ReviewInput, ReviewOutput } from "./ReviewAgent.js"; export { PRAgent } from "./PRAgent.js"; export type { PRInput, PROutput } from "./PRAgent.js"; export { TestAgent } from "./TestAgent.js"; export type { TestInput, TestOutput, TestFailure } from "./TestAgent.js"; //# sourceMappingURL=index.d.ts.map