import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; interface Output { slug?: string; path?: string; note?: string; } /** * Return the currently active workspace. Useful at session start so * Claude can say "you're in the onenomad workspace" before answering * project-scoped questions. */ export declare const currentWorkspaceTool: McpTool; export {}; //# sourceMappingURL=current-workspace.d.ts.map