import { z } from "zod"; import type { McpTool } from "../tool.js"; import type { Person } from "@onenomad/przm-cortex-core"; declare const inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; interface Output { configured: boolean; identity?: Person; note?: string; } /** * Return the workspace's user identity — the person flagged `self: true` * in people.yaml. The MCP-client global instructions tell agents to call * this at session start so the assistant knows who they're talking to * (name, role, projects, timezone, working hours). * * Workspace-scoped. `configured: false` when no `self` person exists * yet — the caller can prompt the user for their details and then * invoke `update_user_identity` to persist them. */ export declare const getUserIdentityTool: McpTool; export {}; //# sourceMappingURL=get-user-identity.d.ts.map