import type { ResolvedSkillSource, ResolveSkillSourceContext } from '../types.js'; export interface WorkspaceResolveOptions { /** Absolute path to the workspace skill's SKILL.md (caller maps name -> path). */ skillPath: string; } /** * Resolve a `{ workspace }` skill source: build the named monorepo skill via the * existing packageSkill build graph (the same path `vat skills build` drives) into * a fresh temp dir, then stage the BUILT bundle. Staging the build output is what * makes the packaged form the thing evaluated (spec §5). * * Identity is the content hash of the built bundle — the build-input fingerprint * of record for §11b reconciliation (a source edit changes the built bundle, which * changes the hash, which forces a re-stage). */ export declare function resolveWorkspaceSource(skillName: string, ctx: ResolveSkillSourceContext, opts: WorkspaceResolveOptions): Promise; //# sourceMappingURL=workspace-source.d.ts.map