/** * Forgen v1 — Scope Resolver (simplified) * * v1에서는 scope = me only. 팀 팩 시스템 제거. * compound-loop, solution-injector 호환을 위해 유지. */ import type { ScopeInfo } from './types.js'; export declare function resolveScope(cwd: string, _philosophySource?: 'project' | 'global' | 'default'): ScopeInfo;