import { z } from "zod"; import type { McpTool } from "../tool.js"; import type { JobProfile } from "@onenomad/przm-cortex-core"; declare const inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; interface Output { configured: boolean; profile?: JobProfile; note?: string; } /** * Return the workspace's job profile — what the user does for work. * * The MCP client's session-start protocol is to call this *after* * `get_user_identity`. When it returns `configured: false`, the * assistant should NOT interrogate the user up front — wait until * something work-relevant comes up, then mention it once. * * Workspace-scoped. Profile lives at `config/job-profile.yaml`. */ export declare const getJobProfileTool: McpTool; export {}; //# sourceMappingURL=get-job-profile.d.ts.map