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
38 lines • 1.69 kB
TypeScript
/**
* AIWG Smiths - Tool and Server Generation Framework
*
* The Smiths ecosystem provides:
* - Toolsmith: Tool specification generation for subagent scenarios
* - MCPsmith: MCP server generation from any command/API
* - AgentSmith: Custom agent generation with platform-aware deployment
* - SkillSmith: Skill generation with platform-aware deployment
* - CommandSmith: Platform-aware slash command generation
* - ContextPipeline: AIWG.md + AGENTS.md generator (cross-platform context bridge)
*
* @module smiths
*/
export * from './toolsmith/types.js';
export type { Platform as OSPlatform } from './toolsmith/types.js';
export * from './mcpsmith/index.js';
export * from './agentsmith/index.js';
export * from './skillsmith/index.js';
export * from './commandsmith/index.js';
export * as ContextPipeline from './context-pipeline/index.js';
export * as HookBridge from './hook-bridge/index.js';
export interface SmithConfig {
/** Base directory for smith artifacts */
baseDir: string;
/** Enable verbose logging */
verbose?: boolean;
/** Cache duration in milliseconds */
cacheDuration?: number;
}
export declare const SMITHS_DIR = ".aiwg/smiths";
export declare const TOOLSMITH_DIR = ".aiwg/smiths/toolsmith";
export declare const MCPSMITH_DIR = ".aiwg/smiths/mcpsmith";
export declare const AGENTSMITH_DIR = ".aiwg/smiths/agentsmith";
export declare const SKILLSMITH_DIR = ".aiwg/smiths/skillsmith";
export declare const COMMANDSMITH_DIR = ".aiwg/smiths/commandsmith";
export declare const CONTEXT_PIPELINE_DIR = ".aiwg/smiths/context-pipeline";
export declare const HOOK_BRIDGE_DIR = ".aiwg/smiths/hook-bridge";
//# sourceMappingURL=index.d.ts.map