export interface EvalTargetOptions { project?: string; manifest?: string; skillPath?: string; } export type EvalManifestSource = 'explicit' | 'auto-detected' | 'synthesized'; export interface ResolvedEvalContext { schema: 'comet.eval.context.v1'; skillRoot: string; manifestSource: EvalManifestSource; manifestPath?: string; artifactOwnerRoot: string; artifactRoot: string; baseManifest?: Record; } export declare function isPathWithin(root: string, candidate: string): boolean; export declare function canonicalPath(target: string): Promise; export declare function resolveEvalContext(options: EvalTargetOptions): Promise; //# sourceMappingURL=standalone-context.d.ts.map