UNPKG

@stackmemoryai/stackmemory

Version:

Project-scoped memory for AI coding tools. Durable context across sessions with MCP integration, frames, smart retrieval, Claude Code skills, and automatic hooks.

21 lines (20 loc) 536 B
import { fileURLToPath as __fileURLToPath } from 'url'; import { dirname as __pathDirname } from 'path'; const __filename = __fileURLToPath(import.meta.url); const __dirname = __pathDirname(__filename); class ClaudeCodeSubagentClient { async executeSubagent(request) { return { success: true, result: { message: `Stub execution of ${request.type} agent`, task: request.task }, tokens: 100 }; } } export { ClaudeCodeSubagentClient }; //# sourceMappingURL=subagent-client-stub.js.map