pi2dsh 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +122 -0
- package/README.zh.md +122 -0
- package/dist/cli.d.mts +2 -0
- package/dist/cli.mjs +128 -0
- package/dist/cli.mjs.map +1 -0
- package/dist/compat/pi-ai.d.mts +2597 -0
- package/dist/compat/pi-ai.d.mts.map +1 -0
- package/dist/compat/pi-ai.mjs +4669 -0
- package/dist/compat/pi-ai.mjs.map +1 -0
- package/dist/compat/pi-coding-agent.d.mts +745 -0
- package/dist/compat/pi-coding-agent.d.mts.map +1 -0
- package/dist/compat/pi-coding-agent.mjs +4 -0
- package/dist/compat/pi-tui.d.mts +3 -0
- package/dist/compat/pi-tui.mjs +3622 -0
- package/dist/compat/pi-tui.mjs.map +1 -0
- package/dist/host.d.mts +35 -0
- package/dist/host.d.mts.map +1 -0
- package/dist/host.mjs +197 -0
- package/dist/host.mjs.map +1 -0
- package/dist/index.d.mts +69 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +5 -0
- package/dist/mcp-config-jL9w70It.mjs +1535 -0
- package/dist/mcp-config-jL9w70It.mjs.map +1 -0
- package/dist/pi-coding-agent-Dsg6_0ua.mjs +2060 -0
- package/dist/pi-coding-agent-Dsg6_0ua.mjs.map +1 -0
- package/dist/pi-config-shim-CZ1wFzqM.mjs +27 -0
- package/dist/pi-config-shim-CZ1wFzqM.mjs.map +1 -0
- package/dist/pi-tui-iHoF2tFc.d.mts +1043 -0
- package/dist/pi-tui-iHoF2tFc.d.mts.map +1 -0
- package/dist/pi-tui-utils-CcaVtm-3.mjs +895 -0
- package/dist/pi-tui-utils-CcaVtm-3.mjs.map +1 -0
- package/dist/pi-types-KazmR2O5.d.mts +62 -0
- package/dist/pi-types-KazmR2O5.d.mts.map +1 -0
- package/dist/pi-uuid-Db8ShZsK.mjs +47 -0
- package/dist/pi-uuid-Db8ShZsK.mjs.map +1 -0
- package/dist/rolldown-runtime-C2Q2p085.mjs +15 -0
- package/dist/runtime-D84Hv_3m.mjs +1499 -0
- package/dist/runtime-D84Hv_3m.mjs.map +1 -0
- package/dist/runtime.d.mts +31 -0
- package/dist/runtime.d.mts.map +1 -0
- package/dist/runtime.mjs +3 -0
- package/dist/source-D7Ir-rPT.mjs +154 -0
- package/dist/source-D7Ir-rPT.mjs.map +1 -0
- package/dist/types-7IWJPPvS.d.mts +59 -0
- package/dist/types-7IWJPPvS.d.mts.map +1 -0
- package/package.json +135 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mcp-config-jL9w70It.mjs","names":["stringRecord","parseYaml"],"sources":["../src/compatibility.ts","../src/module-graph.ts","../src/analyzer.ts","../src/generator.ts","../src/mcp-config.ts"],"sourcesContent":["import type { CompatibilityLevel } from './types.js'\n\ninterface Rule {\n level: CompatibilityLevel\n detail: string\n}\n\nconst rule = (level: CompatibilityLevel, detail: string): Rule => ({ level, detail })\n\nexport const PI_CODING_AGENT_PACKAGES = Object.freeze([\n '@earendil-works/pi-coding-agent',\n '@mariozechner/pi-coding-agent',\n] as const)\n\nexport const PI_TUI_PACKAGES = Object.freeze([\n '@earendil-works/pi-tui',\n '@mariozechner/pi-tui',\n] as const)\n\nexport const PI_AI_PACKAGES = Object.freeze([\n '@earendil-works/pi-ai',\n '@mariozechner/pi-ai',\n] as const)\n\nconst VENDORED = 'Vendored byte-identical from Pi, so semantics match Pi exactly.'\nconst HEADLESS_COMPONENT = 'Constructible headless component with Pi-exact signatures; renders plain text, never a terminal.'\nconst RUNTIME_STUB = 'Importable, but calling it fails explicitly: it belongs to Pi\\'s internal agent runtime and needs a native DSH port.'\n\nexport const HOST_IMPORT_RULES: Readonly<Record<string, Readonly<Record<string, Rule>>>> = Object.freeze({\n 'pi-coding-agent': Object.freeze({\n defineTool: rule('full', 'Identity helper, preserved.'),\n CONFIG_DIR_NAME: rule('partial', 'The conventional config directory name is preserved, while DSH owns the actual profile layout.'),\n DEFAULT_MAX_LINES: rule('full', VENDORED),\n DEFAULT_MAX_BYTES: rule('full', VENDORED),\n VERSION: rule('partial', 'Reports a pi2dsh compatibility marker instead of a Pi release version.'),\n CURRENT_SESSION_VERSION: rule('full', VENDORED),\n getAgentDir: rule('partial', 'Redirected to an isolated DSH-owned pi2dsh directory instead of Pi global state.'),\n getPackageDir: rule('partial', 'Resolves inside the DSH-owned pi2dsh agent directory.'),\n formatSize: rule('full', VENDORED),\n truncateHead: rule('full', VENDORED),\n truncateTail: rule('full', VENDORED),\n truncateLine: rule('full', VENDORED),\n withFileMutationQueue: rule('full', VENDORED),\n SessionManager: rule('full', `${VENDORED} Sessions live under the DSH-owned pi2dsh agent directory.`),\n parseSessionEntries: rule('full', VENDORED),\n migrateSessionEntries: rule('full', VENDORED),\n getLatestCompactionEntry: rule('full', VENDORED),\n sessionEntryToContextMessages: rule('full', VENDORED),\n buildContextEntries: rule('full', VENDORED),\n buildSessionContext: rule('full', VENDORED),\n loadEntriesFromFile: rule('full', VENDORED),\n findMostRecentSession: rule('full', VENDORED),\n getDefaultSessionDir: rule('full', VENDORED),\n assertValidSessionId: rule('full', VENDORED),\n convertToLlm: rule('full', VENDORED),\n createCustomMessage: rule('full', VENDORED),\n createBranchSummaryMessage: rule('full', VENDORED),\n createCompactionSummaryMessage: rule('full', VENDORED),\n bashExecutionToText: rule('full', VENDORED),\n estimateTokens: rule('full', 'Reimplements Pi\\'s chars/4 heuristic over the same message roles.'),\n calculateContextTokens: rule('full', 'Sums the Pi chars/4 heuristic across messages.'),\n DEFAULT_COMPACTION_SETTINGS: rule('full', 'Pi\\'s default compaction thresholds, preserved as constants.'),\n serializeConversation: rule('partial', 'JSON serialization without Pi\\'s prompt-oriented formatting.'),\n shouldCompact: rule('partial', 'Always reports false: DSH owns compaction scheduling.'),\n compact: rule('unsupported', 'Pi compaction execution belongs to DSH\\'s native compaction plugin; calling fails explicitly.'),\n findCutPoint: rule('unsupported', RUNTIME_STUB),\n generateSummary: rule('unsupported', RUNTIME_STUB),\n generateSummaryWithUsage: rule('unsupported', RUNTIME_STUB),\n generateBranchSummary: rule('unsupported', RUNTIME_STUB),\n parseFrontmatter: rule('full', 'Frontmatter parsing with Pi-compatible semantics.'),\n stripFrontmatter: rule('full', 'Frontmatter stripping with Pi-compatible semantics.'),\n copyToClipboard: rule('partial', 'Attempts the platform clipboard command (pbcopy/clip/wl-copy/xclip); resolves false when none succeeds.'),\n resizeImage: rule('partial', 'Passes images through un-resized; Pi resizes only to save tokens, so content is preserved.'),\n convertToPng: rule('partial', 'PNG input passes through; other formats fail explicitly without Pi\\'s wasm codec.'),\n getShellConfig: rule('partial', 'Standard shell detection without Pi\\'s managed-bin PATH handling.'),\n getBinDir: rule('partial', 'Reports the first PATH segment instead of Pi\\'s managed bin directory.'),\n Theme: rule('partial', 'Headless theme: styling calls return their input text unstyled.'),\n theme: rule('partial', 'A headless theme singleton; jiti-loaded Pi extensions must not rely on Pi global theme state anyway.'),\n initTheme: rule('partial', 'Accepted as a no-op; DSH surfaces own presentation.'),\n getSettingsListTheme: rule('partial', 'Returns an unstyled theme with Pi\\'s exact field shape.'),\n getSelectListTheme: rule('partial', 'Returns an unstyled theme with Pi\\'s exact field shape.'),\n getMarkdownTheme: rule('partial', 'Returns a plain-text headless theme; Pi terminal styling is intentionally discarded.'),\n getLanguageFromPath: rule('partial', 'Extension-based language detection covering common languages.'),\n highlightCode: rule('partial', 'Splits lines without terminal syntax colors.'),\n DynamicBorder: rule('full', 'Headless implementation of Pi\\'s one-line border component; pass an explicit color function as Pi itself recommends.'),\n SettingsManager: rule('partial', 'In-memory settings with Pi\\'s getter/setter surface; DSH owns real persisted configuration.'),\n InMemorySettingsStorage: rule('partial', 'In-memory storage stub honoring the withLock contract.'),\n FileSettingsStorage: rule('partial', 'Alias of the in-memory storage; DSH owns persisted settings.'),\n ModelRegistry: rule('partial', 'A local registry container; DSH llm adapters own real model routing.'),\n createEventBus: rule('full', 'Pi event-bus semantics: async handler isolation and unsubscribe functions.'),\n readStoredCredential: rule('partial', 'Reads Pi-style auth.json from the pi2dsh-owned agent directory; DSH credentials stay authoritative for DSH model calls.'),\n parseSkillBlock: rule('full', 'Pi\\'s skill_content block parser, reimplemented over the same wire shape.'),\n wrapRegisteredTool: rule('unsupported', RUNTIME_STUB),\n ProjectTrustStore: rule('unsupported', RUNTIME_STUB),\n DefaultResourceLoader: rule('unsupported', RUNTIME_STUB),\n DefaultPackageManager: rule('unsupported', RUNTIME_STUB),\n ModelRuntime: rule('unsupported', RUNTIME_STUB),\n createAgentSession: rule('unsupported', RUNTIME_STUB),\n createCodingTools: rule('unsupported', RUNTIME_STUB),\n createReadOnlyTools: rule('unsupported', RUNTIME_STUB),\n createBashTool: rule('unsupported', RUNTIME_STUB),\n createReadTool: rule('unsupported', RUNTIME_STUB),\n createEditTool: rule('unsupported', RUNTIME_STUB),\n createWriteTool: rule('unsupported', RUNTIME_STUB),\n createGrepTool: rule('unsupported', RUNTIME_STUB),\n createFindTool: rule('unsupported', RUNTIME_STUB),\n createLsTool: rule('unsupported', RUNTIME_STUB),\n loadSkills: rule('unsupported', RUNTIME_STUB),\n loadSkillsFromDir: rule('unsupported', RUNTIME_STUB),\n formatSkillsForPrompt: rule('unsupported', RUNTIME_STUB),\n CustomEditor: rule('partial', HEADLESS_COMPONENT),\n ToolExecutionComponent: rule('partial', HEADLESS_COMPONENT),\n FooterComponent: rule('partial', HEADLESS_COMPONENT),\n BorderedLoader: rule('partial', HEADLESS_COMPONENT),\n CustomMessageComponent: rule('partial', HEADLESS_COMPONENT),\n AssistantMessageComponent: rule('partial', HEADLESS_COMPONENT),\n UserMessageComponent: rule('partial', HEADLESS_COMPONENT),\n ExtensionSelectorComponent: rule('partial', HEADLESS_COMPONENT),\n ExtensionInputComponent: rule('partial', HEADLESS_COMPONENT),\n ExtensionEditorComponent: rule('partial', HEADLESS_COMPONENT),\n SettingsSelectorComponent: rule('partial', HEADLESS_COMPONENT),\n renderDiff: rule('partial', 'Plain unified-style diff lines without terminal colors.'),\n truncateToVisualLines: rule('partial', 'Visual-line truncation backed by Pi\\'s vendored width math.'),\n keyHint: rule('partial', 'Plain-text key hint without theme styling.'),\n keyText: rule('partial', 'Plain-text key name without theme styling.'),\n rawKeyHint: rule('partial', 'Plain-text key hint without theme styling.'),\n }),\n 'pi-tui': Object.freeze({\n visibleWidth: rule('full', VENDORED),\n truncateToWidth: rule('full', VENDORED),\n wrapTextWithAnsi: rule('full', VENDORED),\n sliceByColumn: rule('full', VENDORED),\n sliceWithWidth: rule('full', VENDORED),\n stripTerminalSequences: rule('full', VENDORED),\n getOsc8LinkAtColumn: rule('full', VENDORED),\n normalizeTerminalOutput: rule('full', VENDORED),\n extractAnsiCode: rule('full', VENDORED),\n getGraphemeCellRange: rule('full', VENDORED),\n getGraphemeSegmenter: rule('full', VENDORED),\n getWordSegmenter: rule('full', VENDORED),\n applyBackgroundToLine: rule('full', VENDORED),\n isWhitespaceChar: rule('full', VENDORED),\n isPunctuationChar: rule('full', VENDORED),\n cjkBreakRegex: rule('full', VENDORED),\n PUNCTUATION_REGEX: rule('full', VENDORED),\n fuzzyMatch: rule('full', VENDORED),\n fuzzyFilter: rule('full', VENDORED),\n parseKey: rule('full', VENDORED),\n matchesKey: rule('full', VENDORED),\n isKeyRelease: rule('full', VENDORED),\n isKeyRepeat: rule('full', VENDORED),\n decodeKittyPrintable: rule('full', VENDORED),\n isKittyProtocolActive: rule('full', VENDORED),\n setKittyProtocolActive: rule('full', VENDORED),\n Key: rule('full', VENDORED),\n getKeybindings: rule('full', `${VENDORED} Bindings only match when a surface feeds terminal input, which DSH does not.`),\n setKeybindings: rule('full', VENDORED),\n KeybindingsManager: rule('full', VENDORED),\n TUI_KEYBINDINGS: rule('full', VENDORED),\n parseOsc11BackgroundColor: rule('full', VENDORED),\n parseTerminalColorSchemeReport: rule('full', VENDORED),\n renderLatex: rule('full', VENDORED),\n getPngDimensions: rule('full', VENDORED),\n getJpegDimensions: rule('full', VENDORED),\n getGifDimensions: rule('full', VENDORED),\n getWebpDimensions: rule('full', VENDORED),\n getImageDimensions: rule('full', VENDORED),\n calculateImageRows: rule('full', VENDORED),\n allocateImageId: rule('full', VENDORED),\n encodeKitty: rule('partial', `${VENDORED} No DSH surface consumes the escape sequences.`),\n encodeITerm2: rule('partial', `${VENDORED} No DSH surface consumes the escape sequences.`),\n deleteKittyImage: rule('partial', `${VENDORED} No DSH surface consumes the escape sequences.`),\n deleteAllKittyImages: rule('partial', `${VENDORED} No DSH surface consumes the escape sequences.`),\n detectCapabilities: rule('partial', `${VENDORED} Headless environments report no image protocol.`),\n getCapabilities: rule('partial', VENDORED),\n setCapabilities: rule('partial', VENDORED),\n resetCapabilitiesCache: rule('partial', VENDORED),\n getCellDimensions: rule('partial', VENDORED),\n setCellDimensions: rule('partial', VENDORED),\n hyperlink: rule('full', VENDORED),\n imageFallback: rule('full', VENDORED),\n CombinedAutocompleteProvider: rule('partial', `${VENDORED} Suggestions surface only if a DSH UI asks for them.`),\n Marked: rule('full', 'Re-exported from the same marked dependency Pi uses.'),\n CURSOR_MARKER: rule('full', 'Pi\\'s exact APC marker; vendored width math treats it as zero-width.'),\n Text: rule('partial', HEADLESS_COMPONENT),\n Spacer: rule('partial', HEADLESS_COMPONENT),\n Container: rule('partial', HEADLESS_COMPONENT),\n Box: rule('partial', HEADLESS_COMPONENT),\n Markdown: rule('partial', HEADLESS_COMPONENT),\n TruncatedText: rule('partial', HEADLESS_COMPONENT),\n Editor: rule('partial', `${HEADLESS_COMPONENT} Text editing state works; interactive keyboard flows do not.`),\n Input: rule('partial', `${HEADLESS_COMPONENT} Value state and submit/escape callbacks work; kill-ring editing does not.`),\n SelectList: rule('partial', `${HEADLESS_COMPONENT} Filtering and selection state work; keyboard interaction does not.`),\n SettingsList: rule('partial', `${HEADLESS_COMPONENT} Value updates work; keyboard interaction does not.`),\n ScrollView: rule('partial', HEADLESS_COMPONENT),\n VStack: rule('partial', HEADLESS_COMPONENT),\n HStack: rule('partial', HEADLESS_COMPONENT),\n Loader: rule('partial', HEADLESS_COMPONENT),\n CancellableLoader: rule('partial', HEADLESS_COMPONENT),\n Image: rule('partial', `${HEADLESS_COMPONENT} Renders a text placeholder; image bytes flow through DSH attachments instead.`),\n isFocusable: rule('full', 'Structural check preserved.'),\n isViewportTUI: rule('partial', 'Always false: no viewport TUI exists in DSH surfaces.'),\n }),\n 'pi-ai': Object.freeze({\n StringEnum: rule('full', 'Preserves Pi flat string-enum JSON Schema generation without loading provider SDKs.'),\n registerProvider: rule('partial', 'Recorded in a bridge-local registry; DSH llm adapters own real routing.'),\n getProviders: rule('partial', 'Returns the bridge-local registry contents.'),\n getProvider: rule('partial', 'Reads the bridge-local registry.'),\n getModel: rule('partial', 'Resolves no Pi model objects; DSH owns model routing.'),\n getModels: rule('partial', 'Returns an empty list; DSH owns model routing.'),\n complete: rule('unsupported', 'Pi provider SDK calls have no DSH mapping; calling fails explicitly.'),\n stream: rule('unsupported', 'Pi provider SDK calls have no DSH mapping; calling fails explicitly.'),\n Type: rule('full', 'Re-exported from the same typebox dependency Pi resolves for extensions.'),\n uuidv7: rule('full', VENDORED),\n isContextOverflow: rule('full', VENDORED),\n isRecoverableLength: rule('full', VENDORED),\n isRetryableAssistantError: rule('full', VENDORED),\n contentText: rule('full', 'Pi\\'s text-block joiner, reimplemented with identical semantics.'),\n clampThinkingLevel: rule('full', 'Pi\\'s clamping walk over the extended thinking-level ladder.'),\n getSupportedThinkingLevels: rule('full', 'Pi\\'s thinkingLevelMap filter, preserved.'),\n modelsAreEqual: rule('full', 'Id+provider equality, preserved.'),\n }),\n})\n\nexport const CONTEXT_RULES: Readonly<Record<string, Rule>> = Object.freeze({\n cwd: rule('full', 'Mapped to the active DSH agent session working directory.'),\n signal: rule('full', 'Mapped to the active DSH cancellation signal when one is available.'),\n hasUI: rule('full', 'Reports whether the native DSH userQuestions service is available to back Pi dialogs.'),\n mode: rule('partial', 'Reports rpc mode so Pi extensions can choose their documented headless fallback.'),\n isIdle: rule('partial', 'Command contexts report idle; tool/lifecycle contexts conservatively report non-idle.'),\n isProjectTrusted: rule('partial', 'Fails closed as untrusted because DSH does not expose Pi project-trust state.'),\n hasPendingMessages: rule('partial', 'Conservatively reports no Pi-specific pending-message queue.'),\n getContextUsage: rule('partial', 'Returns no Pi token-usage projection.'),\n getSystemPrompt: rule('full', 'Returns the system prompt currently assembled by the bridge.'),\n getSystemPromptOptions: rule('partial', 'Returns an empty Pi option projection in command contexts.'),\n waitForIdle: rule('partial', 'Mapped to the DSH agent idle boundary when available.'),\n sessionManager: rule('partial', 'A real read-only projection: DSH durable messages plus pi2dsh sidecar entries, exposed through Pi\\'s exact 14-method surface as a single-branch tree.'),\n modelRegistry: rule('partial', 'Exposes no Pi provider registry because DSH owns model adapters.'),\n model: rule('partial', 'Reflects the model override recorded by setModel(); DSH configuration remains authoritative.'),\n scopedModels: rule('partial', 'No Pi scoped-model list is projected from DSH configuration.'),\n thinkingLevel: rule('partial', 'Reflects the level recorded by setThinkingLevel(); applied as reasoningEffort on the next request.'),\n abort: rule('partial', 'Mapped to agent.cancel({ kind: \"hook\" }) on the live DSH agent.'),\n shutdown: rule('unsupported', 'A migrated package may not shut down the DSH host; calling fails explicitly.'),\n compact: rule('unsupported', 'Pi compaction control requires a native DSH compaction integration; calling fails explicitly.'),\n newSession: rule('unsupported', 'Session replacement belongs to the DSH host; calling fails explicitly.'),\n fork: rule('unsupported', 'Pi entry-tree forking has no DSH equivalent (DSH fork is boundary-based); calling fails explicitly.'),\n navigateTree: rule('unsupported', 'Pi tree navigation has no DSH equivalent; calling fails explicitly.'),\n switchSession: rule('unsupported', 'Session switching belongs to the DSH host; calling fails explicitly.'),\n reload: rule('unsupported', 'Extension reload belongs to the DSH host (HMR); calling fails explicitly.'),\n})\n\nexport const UI_CONTEXT_RULES: Readonly<Record<string, Rule>> = Object.freeze({\n notify: rule('full', 'Captured as a command result when applicable and emitted through DSH logging.'),\n setStatus: rule('partial', 'Accepted as a no-op because DSH owns status presentation.'),\n setWidget: rule('partial', 'Accepted as a no-op because Pi terminal widgets cannot render in DSH.'),\n select: rule('full', 'Mapped to one native DSH userQuestions single-select request.'),\n confirm: rule('full', 'Mapped to one native DSH userQuestions Yes/No request.'),\n input: rule('full', 'Mapped to one native DSH userQuestions free-text request.'),\n editor: rule('partial', 'Mapped to one DSH userQuestions free-text request; multi-line editing UX is not emulated.'),\n custom: rule('partial', 'Resolves undefined, exactly like Pi\\'s own rpc mode; guarded fallbacks keep working.'),\n onTerminalInput: rule('partial', 'Raw terminal input is absent; feature-detected listeners remain disabled.'),\n setWorkingMessage: rule('partial', 'Accepted as a no-op; DSH owns progress presentation.'),\n setWorkingVisible: rule('partial', 'Accepted as a no-op; DSH owns progress presentation.'),\n setWorkingIndicator: rule('partial', 'Accepted as a no-op; DSH owns progress presentation.'),\n setHiddenThinkingLabel: rule('partial', 'Accepted as a no-op; DSH owns thinking presentation.'),\n setFooter: rule('partial', 'Accepted as a no-op; DSH owns footer presentation.'),\n setHeader: rule('partial', 'Accepted as a no-op; DSH owns header presentation.'),\n setTitle: rule('partial', 'Accepted as a no-op; DSH owns window titles.'),\n pasteToEditor: rule('partial', 'Appends to a per-agent editor buffer readable through getEditorText().'),\n setEditorText: rule('partial', 'Stored in a per-agent editor buffer readable through getEditorText().'),\n getEditorText: rule('partial', 'Reads the per-agent editor buffer maintained by the bridge.'),\n addAutocompleteProvider: rule('partial', 'Registration is recorded; no DSH surface requests suggestions.'),\n setEditorComponent: rule('partial', 'Registration is recorded; no DSH surface mounts a Pi editor component.'),\n getEditorComponent: rule('partial', 'Returns the recorded factory.'),\n theme: rule('partial', 'A headless theme whose styling calls return unstyled text.'),\n getAllThemes: rule('partial', 'Lists the single headless theme.'),\n getTheme: rule('partial', 'Resolves only the headless theme.'),\n setTheme: rule('partial', 'Accepts the headless theme; other names report an explicit error result.'),\n getToolsExpanded: rule('partial', 'A bridge-local presentation flag.'),\n setToolsExpanded: rule('partial', 'A bridge-local presentation flag.'),\n})\n\nexport const API_RULES: Readonly<Record<string, Rule>> = Object.freeze({\n registerTool: {\n level: 'partial',\n detail: 'Registered as a native DSH tool. Text and image results use native DSH content/attachments; unsupported JSON Schema constraints and Pi-only error details are explicitly degraded.',\n },\n unregisterTool: {\n level: 'full',\n detail: 'Disposes the exact native DSH tool registration and removes it from the migrated package registry.',\n },\n registerCommand: {\n level: 'partial',\n detail: 'Registered in ctx.commands; ui.notify becomes the result, while interactive Pi TUI methods fail explicitly in headless DSH.',\n },\n registerShortcut: {\n level: 'partial',\n detail: 'Registration is recorded and introspectable; DSH surfaces feed no terminal key input, so handlers never fire — the same as Pi\\'s non-TUI modes.',\n },\n registerFlag: {\n level: 'partial',\n detail: 'The declared default is available through getFlag; Pi process flags cannot be added to the DSH launcher.',\n },\n getFlag: {\n level: 'partial',\n detail: 'Returns the migrated flag default because DSH cannot register the original Pi CLI flag.',\n },\n registerProvider: {\n level: 'partial',\n detail: 'The provider declaration is recorded and introspectable; model calls stay on native DSH llm adapters and credentials, which own transports and secrets.',\n },\n unregisterProvider: {\n level: 'partial',\n detail: 'Removes the recorded provider declaration.',\n },\n registerMessageRenderer: {\n level: 'partial',\n detail: 'Registration is accepted; DSH owns presentation, so the renderer is never invoked — matching Pi\\'s non-TUI surfaces.',\n },\n registerEntryRenderer: {\n level: 'partial',\n detail: 'Registration is accepted; DSH owns presentation, so the renderer is never invoked — matching Pi\\'s non-TUI surfaces.',\n },\n registerMarkdownTransformer: {\n level: 'partial',\n detail: 'Registration is accepted; DSH owns presentation, so the transformer is never invoked — matching Pi\\'s non-TUI surfaces.',\n },\n sendMessage: {\n level: 'partial',\n detail: 'Mapped to native DSH inject/steer/followup delivery with honest plugin provenance; Pi display/details metadata awaits the custom session-entry seam.',\n },\n sendUserMessage: {\n level: 'full',\n detail: 'Mapped to native DSH steer/followup delivery with text and attachment-backed image content.',\n },\n appendEntry: {\n level: 'partial',\n detail: 'Persisted in a pi2dsh sidecar next to the DSH session and replayed on session start; DSH\\'s main log stays untouched because it has no out-of-repo plugin-event channel yet.',\n },\n setSessionName: {\n level: 'partial',\n detail: 'Persisted in the pi2dsh sidecar and announced through session_info_changed; DSH\\'s own title events are also projected when present.',\n },\n getSessionName: {\n level: 'partial',\n detail: 'Reads the sidecar-persisted session name.',\n },\n setLabel: {\n level: 'partial',\n detail: 'Persisted in the pi2dsh sidecar and reflected by the sessionManager projection.',\n },\n exec: {\n level: 'partial',\n detail: 'Mapped to ctx.subprocess, so the selected local/E2B provider owns execution, isolation, cancellation, and tree cleanup; output is bounded to 64 MiB per stream.',\n },\n getActiveTools: {\n level: 'partial',\n detail: 'Returns every tool visible in the current DSH agent scope, including native and migrated tools; scope-local tools follow DSH composition rules.',\n },\n getAllTools: {\n level: 'partial',\n detail: 'Returns metadata for all tools visible in the current DSH scope, without Pi-specific prompt guidelines unavailable from DSH schemas.',\n },\n setActiveTools: {\n level: 'partial',\n detail: 'Mapped to the active DSH agent scope through tools.restrict({ allow }), preserving per-agent global-tool visibility without mutating other agents; DSH scope-local tools remain visible by design.',\n },\n getCommands: {\n level: 'partial',\n detail: 'Returns commands registered by this migrated Pi package, not every command visible in the DSH scope.',\n },\n setModel: {\n level: 'partial',\n detail: 'Recorded as a per-agent override applied through the agent/request waterfall on the next model call; DSH remains authoritative for provider routing.',\n },\n getThinkingLevel: {\n level: 'partial',\n detail: 'Returns the level recorded by setThinkingLevel (default off).',\n },\n setThinkingLevel: {\n level: 'partial',\n detail: 'Recorded per agent and applied as reasoningEffort through the agent/request waterfall; DSH validates the effort id at the request boundary.',\n },\n events: {\n level: 'full',\n detail: 'Package-local Pi extension event-bus emit/on semantics are preserved for migrated extensions in the same bundle.',\n },\n})\n\nconst OBSERVED_NEVER_FIRES = (moment: string): Rule => ({\n level: 'partial',\n detail: `Registration is accepted; ${moment} never occurs on DSH surfaces, so the handler never fires. Loading is unaffected.`,\n})\n\nexport const EVENT_RULES: Readonly<Record<string, Rule>> = Object.freeze({\n session_start: { level: 'full', detail: 'Mapped to agent/session-start.' },\n session_shutdown: { level: 'full', detail: 'Mapped to agent disposal and plugin teardown with duplicate suppression.' },\n session_info_changed: { level: 'partial', detail: 'Fired by setSessionName() and projected from DSH session/title events.' },\n agent_start: { level: 'full', detail: 'Mapped to the DSH turn/start boundary.' },\n agent_settled: { level: 'full', detail: 'Mapped to the DSH turn/end boundary.' },\n turn_start: { level: 'full', detail: 'Mapped from durable turn/start events.' },\n tool_execution_start: { level: 'full', detail: 'Mapped from durable tool/call events.' },\n tool_execution_end: { level: 'full', detail: 'Mapped from finalized tools/result events.' },\n tool_execution_update: {\n level: 'partial',\n detail: 'Fired from migrated Pi tools\\' own onUpdate callbacks; DSH-native tools expose no partial-result stream.',\n },\n tool_call: {\n level: 'partial',\n detail: 'Blocking is supported, and in-place argument mutation reaches migrated Pi tools; mutating a DSH-native tool\\'s arguments is rejected because DSH logs arguments before policy.',\n },\n tool_result: {\n level: 'partial',\n detail: 'Text replacement and success-to-error blocking are supported; arbitrary details and error recovery are not.',\n },\n before_agent_start: {\n level: 'partial',\n detail: 'System-prompt replacement is supported; Pi raw prompt and custom-message injection are unavailable at DSH assembly time.',\n },\n agent_end: {\n level: 'partial',\n detail: 'The lifecycle boundary is mapped, but the reconstructed Pi message history is intentionally minimal.',\n },\n turn_end: {\n level: 'partial',\n detail: 'The lifecycle boundary and tool results are mapped; the exact Pi final-message shape is not guaranteed.',\n },\n message_start: {\n level: 'partial',\n detail: 'Durable user, assistant, and tool-result messages are mapped without Pi-specific provider metadata.',\n },\n message_end: {\n level: 'partial',\n detail: 'Durable messages are observed, but message replacement is not supported.',\n },\n message_update: {\n level: 'partial',\n detail: 'Projected from DSH assistant/chunk events with accumulated text; Pi\\'s full AgentMessage accumulation state is approximated.',\n },\n session_before_compact: {\n level: 'partial',\n detail: 'Projected from DSH compaction/start as a notification; cancel/replace cannot reach DSH\\'s compactor.',\n },\n session_compact: {\n level: 'partial',\n detail: 'Projected from DSH compaction summary/end events.',\n },\n model_select: {\n level: 'partial',\n detail: 'Fired by setModel() and projected from request/header model changes in the durable log.',\n },\n thinking_level_select: {\n level: 'partial',\n detail: 'Fired by setThinkingLevel(); DSH-side reasoning changes surface through request/header projection.',\n },\n context: {\n level: 'unsupported',\n detail: 'Pi context-list replacement conflicts with DSH append-only request reconstruction; the handler is accepted but never fires.',\n },\n before_provider_request: {\n level: 'unsupported',\n detail: 'Provider payload mutation belongs in a native DSH LLM adapter; the handler is accepted but never fires.',\n },\n before_provider_headers: {\n level: 'unsupported',\n detail: 'Provider header mutation belongs in a native DSH LLM adapter; the handler is accepted but never fires.',\n },\n after_provider_response: {\n level: 'unsupported',\n detail: 'Provider response interception belongs in a native DSH LLM adapter; the handler is accepted but never fires.',\n },\n user_bash: OBSERVED_NEVER_FIRES('Pi\\'s ! command surface'),\n input: OBSERVED_NEVER_FIRES('raw Pi terminal input'),\n project_trust: {\n level: 'unsupported',\n detail: 'Project trust must remain owned by the DSH host; the handler is accepted but never consulted.',\n },\n resources_discover: {\n level: 'unsupported',\n detail: 'Dynamic resource discovery must be converted into DSH providers; the handler is accepted but never fires.',\n },\n session_before_switch: OBSERVED_NEVER_FIRES('Pi session switching'),\n session_before_fork: OBSERVED_NEVER_FIRES('Pi tree forking'),\n session_before_tree: OBSERVED_NEVER_FIRES('Pi session-tree navigation'),\n session_tree: OBSERVED_NEVER_FIRES('Pi session-tree navigation'),\n})\n\nexport function ruleForApi(method: string): Rule | undefined {\n return API_RULES[method]\n}\n\nexport function ruleForEvent(event: string): Rule {\n return EVENT_RULES[event] ?? {\n level: 'unsupported',\n detail: `Unknown Pi event ${JSON.stringify(event)} has no verified DSH mapping.`,\n }\n}\n\nexport function ruleForHostImport(packageName: string, importedName: string): Rule | undefined {\n const family = (PI_CODING_AGENT_PACKAGES as readonly string[]).includes(packageName)\n ? 'pi-coding-agent'\n : (PI_TUI_PACKAGES as readonly string[]).includes(packageName)\n ? 'pi-tui'\n : (PI_AI_PACKAGES as readonly string[]).includes(packageName) ? 'pi-ai' : undefined\n return family === undefined ? undefined : HOST_IMPORT_RULES[family]?.[importedName]\n}\n\nexport function ruleForContextProperty(property: string): Rule | undefined {\n return CONTEXT_RULES[property]\n}\n\nexport function ruleForUiContextProperty(property: string): Rule | undefined {\n return UI_CONTEXT_RULES[property]\n}\n","import { builtinModules } from 'node:module'\nimport { lstat, readFile, readdir, stat } from 'node:fs/promises'\nimport { dirname, extname, join, relative, resolve } from 'node:path'\nimport ts from 'typescript'\n\nexport const SCRIPT_EXTENSIONS = new Set(['.ts', '.tsx', '.mts', '.cts', '.js', '.jsx', '.mjs', '.cjs'])\nconst MODULE_EXTENSIONS = ['.ts', '.tsx', '.mts', '.cts', '.js', '.jsx', '.mjs', '.cjs', '.json']\n\ninterface LocalReference {\n kind: 'module' | 'asset'\n specifier: string\n}\n\nexport interface LocalClosureIssue {\n file: string\n kind: LocalReference['kind']\n specifier: string\n detail: string\n}\n\nexport interface LocalClosure {\n files: string[]\n issues: LocalClosureIssue[]\n}\n\nexport function sourceKind(path: string): ts.ScriptKind {\n if (path.endsWith('.js') || path.endsWith('.mjs') || path.endsWith('.cjs')) return ts.ScriptKind.JS\n if (path.endsWith('.jsx')) return ts.ScriptKind.JSX\n if (path.endsWith('.tsx')) return ts.ScriptKind.TSX\n return ts.ScriptKind.TS\n}\n\nfunction literalModule(node: ts.Expression | undefined): string | undefined {\n return node !== undefined && (ts.isStringLiteral(node) || ts.isNoSubstitutionTemplateLiteral(node)) ? node.text : undefined\n}\n\nfunction isImportMetaUrl(node: ts.Expression | undefined): boolean {\n return node !== undefined && ts.isPropertyAccessExpression(node) && node.name.text === 'url'\n && ts.isMetaProperty(node.expression) && node.expression.keywordToken === ts.SyntaxKind.ImportKeyword\n}\n\nfunction localReferences(path: string, text: string): LocalReference[] {\n const source = ts.createSourceFile(path, text, ts.ScriptTarget.Latest, true, sourceKind(path))\n const values = new Map<string, LocalReference>()\n const createRequireNames = new Set<string>(['createRequire'])\n const requireNames = new Set<string>(['require'])\n const add = (kind: LocalReference['kind'], specifier: string): void => {\n // '#'-prefixed specifiers are Node subpath imports resolved through the\n // package's own `imports` map — package-local, not external dependencies.\n if (specifier.startsWith('.') || specifier.startsWith('#')) {\n values.set(`${kind}:${specifier}`, { kind, specifier })\n }\n }\n function collectRequireAliases(node: ts.Node): void {\n if (ts.isImportDeclaration(node) && ts.isStringLiteral(node.moduleSpecifier)\n && (node.moduleSpecifier.text === 'node:module' || node.moduleSpecifier.text === 'module')\n && node.importClause?.namedBindings !== undefined && ts.isNamedImports(node.importClause.namedBindings)) {\n for (const element of node.importClause.namedBindings.elements) {\n if ((element.propertyName?.text ?? element.name.text) === 'createRequire') createRequireNames.add(element.name.text)\n }\n } else if (ts.isVariableDeclaration(node) && ts.isIdentifier(node.name)\n && node.initializer !== undefined && ts.isCallExpression(node.initializer)\n && ts.isIdentifier(node.initializer.expression) && createRequireNames.has(node.initializer.expression.text)) {\n requireNames.add(node.name.text)\n }\n ts.forEachChild(node, collectRequireAliases)\n }\n collectRequireAliases(source)\n function visit(node: ts.Node): void {\n if ((ts.isImportDeclaration(node) || ts.isExportDeclaration(node)) && node.moduleSpecifier !== undefined\n && ts.isStringLiteral(node.moduleSpecifier)) {\n add('module', node.moduleSpecifier.text)\n } else if (ts.isImportEqualsDeclaration(node) && ts.isExternalModuleReference(node.moduleReference)\n && ts.isStringLiteral(node.moduleReference.expression)) {\n add('module', node.moduleReference.expression.text)\n } else if (ts.isCallExpression(node) && node.arguments.length > 0\n && ((node.expression.kind === ts.SyntaxKind.ImportKeyword)\n || (ts.isIdentifier(node.expression) && requireNames.has(node.expression.text)))) {\n const specifier = literalModule(node.arguments[0])\n if (specifier !== undefined) add('module', specifier)\n } else if (ts.isNewExpression(node) && ts.isIdentifier(node.expression) && node.expression.text === 'URL'\n && isImportMetaUrl(node.arguments?.[1])) {\n const specifier = literalModule(node.arguments?.[0])\n if (specifier !== undefined) add('asset', specifier)\n }\n ts.forEachChild(node, visit)\n }\n visit(source)\n return [...values.values()]\n}\n\nfunction externalPackage(specifier: string): string | undefined {\n if (specifier.startsWith('.') || specifier.startsWith('/') || specifier.startsWith('#')\n || specifier.startsWith('node:') || builtinModules.includes(specifier)) return undefined\n const parts = specifier.split('/')\n return specifier.startsWith('@') ? parts.slice(0, 2).join('/') : parts[0]\n}\n\nexport function runtimeExternalPackages(path: string, text: string): string[] {\n const source = ts.createSourceFile(path, text, ts.ScriptTarget.Latest, true, sourceKind(path))\n const packages = new Set<string>()\n const createRequireNames = new Set<string>(['createRequire'])\n const requireNames = new Set<string>(['require'])\n const add = (specifier: string): void => {\n const name = externalPackage(specifier)\n if (name !== undefined && name.length > 0) packages.add(name)\n }\n function collectRequireAliases(node: ts.Node): void {\n if (ts.isImportDeclaration(node) && ts.isStringLiteral(node.moduleSpecifier)\n && (node.moduleSpecifier.text === 'node:module' || node.moduleSpecifier.text === 'module')\n && node.importClause?.namedBindings !== undefined && ts.isNamedImports(node.importClause.namedBindings)) {\n for (const element of node.importClause.namedBindings.elements) {\n if ((element.propertyName?.text ?? element.name.text) === 'createRequire') createRequireNames.add(element.name.text)\n }\n } else if (ts.isVariableDeclaration(node) && ts.isIdentifier(node.name)\n && node.initializer !== undefined && ts.isCallExpression(node.initializer)\n && ts.isIdentifier(node.initializer.expression) && createRequireNames.has(node.initializer.expression.text)) {\n requireNames.add(node.name.text)\n }\n ts.forEachChild(node, collectRequireAliases)\n }\n collectRequireAliases(source)\n function visit(node: ts.Node): void {\n if (ts.isImportDeclaration(node) && ts.isStringLiteral(node.moduleSpecifier)) {\n const clause = node.importClause\n const named = clause?.namedBindings\n const namedImportsAreTypeOnly = named !== undefined && ts.isNamedImports(named)\n && named.elements.length > 0 && named.elements.every(element => element.isTypeOnly)\n if (clause === undefined || (!clause.isTypeOnly && (clause.name !== undefined || !namedImportsAreTypeOnly))) {\n add(node.moduleSpecifier.text)\n }\n } else if (ts.isExportDeclaration(node) && !node.isTypeOnly\n && node.moduleSpecifier !== undefined && ts.isStringLiteral(node.moduleSpecifier)) {\n add(node.moduleSpecifier.text)\n } else if (ts.isImportEqualsDeclaration(node) && !node.isTypeOnly\n && ts.isExternalModuleReference(node.moduleReference) && ts.isStringLiteral(node.moduleReference.expression)) {\n add(node.moduleReference.expression.text)\n } else if (ts.isCallExpression(node) && node.arguments.length > 0\n && ((node.expression.kind === ts.SyntaxKind.ImportKeyword)\n || (ts.isIdentifier(node.expression) && requireNames.has(node.expression.text)))) {\n const specifier = literalModule(node.arguments[0])\n if (specifier !== undefined) add(specifier)\n }\n ts.forEachChild(node, visit)\n }\n visit(source)\n return [...packages]\n}\n\nfunction inside(rootDir: string, path: string): boolean {\n const pathRelative = relative(rootDir, path)\n return pathRelative === '' || (pathRelative !== '..' && !pathRelative.startsWith(`..${process.platform === 'win32' ? '\\\\' : '/'}`))\n}\n\nfunction sourceAlternates(base: string): string[] {\n const extension = extname(base)\n const stem = extension.length > 0 ? base.slice(0, -extension.length) : base\n if (extension === '.js') return [`${stem}.ts`, `${stem}.tsx`]\n if (extension === '.mjs') return [`${stem}.mts`, `${stem}.ts`]\n if (extension === '.cjs') return [`${stem}.cts`, `${stem}.ts`]\n if (extension === '.jsx') return [`${stem}.tsx`, `${stem}.ts`]\n return []\n}\n\nasync function isFile(path: string): Promise<boolean> {\n try {\n return (await stat(path)).isFile()\n } catch (error) {\n if ((error as NodeJS.ErrnoException).code === 'ENOENT') return false\n throw error\n }\n}\n\nfunction subpathImportTarget(rootDir: string, specifier: string, importsMap: Record<string, unknown>): string | undefined {\n const conditionValue = (value: unknown): string | undefined => {\n if (typeof value === 'string') return value\n if (typeof value !== 'object' || value === null) return undefined\n const record = value as Record<string, unknown>\n for (const condition of ['import', 'node', 'default']) {\n const candidate = conditionValue(record[condition])\n if (candidate !== undefined) return candidate\n }\n return undefined\n }\n const direct = conditionValue(importsMap[specifier])\n if (direct !== undefined) return resolve(rootDir, direct)\n for (const [pattern, value] of Object.entries(importsMap)) {\n const star = pattern.indexOf('*')\n if (star === -1) continue\n const prefix = pattern.slice(0, star)\n const suffix = pattern.slice(star + 1)\n if (!specifier.startsWith(prefix) || !specifier.endsWith(suffix)) continue\n const wildcard = specifier.slice(prefix.length, specifier.length - suffix.length)\n const target = conditionValue(value)\n if (target !== undefined) return resolve(rootDir, target.replace('*', wildcard))\n }\n return undefined\n}\n\nasync function packageImportsMap(rootDir: string): Promise<Record<string, unknown>> {\n try {\n const parsed = JSON.parse(await readFile(join(rootDir, 'package.json'), 'utf8')) as { imports?: unknown }\n return typeof parsed.imports === 'object' && parsed.imports !== null ? parsed.imports as Record<string, unknown> : {}\n } catch {\n return {}\n }\n}\n\nasync function resolveModule(fromFile: string, specifier: string, rootDir: string, importsMap: Record<string, unknown>): Promise<string> {\n if (specifier.startsWith('#')) {\n const target = subpathImportTarget(rootDir, specifier, importsMap)\n if (target === undefined) {\n throw new Error(`cannot resolve subpath import ${JSON.stringify(specifier)} through the package \"imports\" map`)\n }\n return resolveModule(fromFile, relative(dirname(fromFile), target).startsWith('.')\n ? relative(dirname(fromFile), target)\n : `./${relative(dirname(fromFile), target)}`, rootDir, importsMap)\n }\n const base = resolve(dirname(fromFile), specifier)\n const candidates = [\n base,\n ...sourceAlternates(base),\n ...(extname(base) === '' ? MODULE_EXTENSIONS.map(extension => `${base}${extension}`) : []),\n ...MODULE_EXTENSIONS.map(extension => join(base, `index${extension}`)),\n ]\n for (const candidate of [...new Set(candidates)]) {\n if (!inside(rootDir, candidate)) throw new Error(`extension import escapes the Pi package: ${specifier} from ${fromFile}`)\n if (await isFile(candidate)) return candidate\n }\n throw new Error(`cannot resolve local extension import ${JSON.stringify(specifier)} from ${fromFile}`)\n}\n\nasync function expandAsset(path: string, rootDir: string): Promise<string[]> {\n if (!inside(rootDir, path)) throw new Error(`extension asset escapes the Pi package: ${path}`)\n let info\n try {\n info = await lstat(path)\n } catch (error) {\n if ((error as NodeJS.ErrnoException).code !== 'ENOENT') throw error\n // A `new URL('./worker.js', import.meta.url)` asset may only exist in its\n // TypeScript source form before the package builds; track the source.\n for (const alternate of sourceAlternates(path)) {\n if (await isFile(alternate)) return [alternate]\n }\n throw error\n }\n if (info.isSymbolicLink()) throw new Error(`refusing to copy symbolic link from Pi package: ${path}`)\n if (info.isFile()) return [path]\n if (!info.isDirectory()) return []\n const output: string[] = []\n for (const entry of await readdir(path)) output.push(...await expandAsset(join(path, entry), rootDir))\n return output\n}\n\nexport async function collectLocalClosure(rootDir: string, entries: readonly string[]): Promise<LocalClosure> {\n const queue = entries.map(path => resolve(path))\n const closure = new Set<string>()\n const issues: LocalClosureIssue[] = []\n const importsMap = await packageImportsMap(rootDir)\n while (queue.length > 0) {\n const source = queue.shift() as string\n if (closure.has(source)) continue\n if (!inside(rootDir, source)) throw new Error(`extension source escapes the Pi package: ${source}`)\n const info = await lstat(source)\n if (info.isSymbolicLink()) throw new Error(`refusing to copy symbolic link from Pi package: ${source}`)\n if (!info.isFile()) throw new Error(`extension closure contains a non-file path: ${source}`)\n closure.add(source)\n if (!SCRIPT_EXTENSIONS.has(extname(source))) continue\n const text = await readFile(source, 'utf8')\n for (const reference of localReferences(source, text)) {\n try {\n if (reference.kind === 'module') queue.push(await resolveModule(source, reference.specifier, rootDir, importsMap))\n else queue.push(...await expandAsset(resolve(dirname(source), reference.specifier), rootDir))\n } catch (error) {\n issues.push({\n file: source,\n kind: reference.kind,\n specifier: reference.specifier,\n detail: error instanceof Error ? error.message : String(error),\n })\n }\n }\n }\n return { files: [...closure].sort(), issues }\n}\n","import { readFile } from 'node:fs/promises'\nimport { basename, extname, relative } from 'node:path'\nimport ts from 'typescript'\nimport {\n PI_CODING_AGENT_PACKAGES,\n PI_AI_PACKAGES,\n PI_TUI_PACKAGES,\n ruleForApi,\n ruleForContextProperty,\n ruleForEvent,\n ruleForHostImport,\n ruleForUiContextProperty,\n} from './compatibility.js'\nimport { collectLocalClosure, runtimeExternalPackages, SCRIPT_EXTENSIONS, sourceKind } from './module-graph.js'\nimport type {\n CompatibilityFinding,\n CompatibilityLevel,\n CompatibilityReport,\n ResolvedPiPackage,\n} from './types.js'\n\nfunction literalText(node: ts.Node | undefined): string | undefined {\n return node !== undefined && (ts.isStringLiteral(node) || ts.isNoSubstitutionTemplateLiteral(node))\n ? node.text\n : undefined\n}\n\nfunction hasModifier(node: ts.Node, kind: ts.SyntaxKind): boolean {\n return ts.canHaveModifiers(node) && ts.getModifiers(node)?.some(modifier => modifier.kind === kind) === true\n}\n\nfunction parameterIdentifier(node: ts.SignatureDeclarationBase): string | undefined {\n const parameter = node.parameters[0]\n return parameter !== undefined && ts.isIdentifier(parameter.name) ? parameter.name.text : undefined\n}\n\nfunction extensionApiReceivers(source: ts.SourceFile): Set<string> {\n const receivers = new Set<string>()\n const functions = new Map<string, ts.FunctionLikeDeclarationBase>()\n\n function index(node: ts.Node): void {\n if (ts.isFunctionDeclaration(node) && node.name !== undefined) functions.set(node.name.text, node)\n if (ts.isVariableDeclaration(node) && ts.isIdentifier(node.name)\n && node.initializer !== undefined\n && (ts.isArrowFunction(node.initializer) || ts.isFunctionExpression(node.initializer))) {\n functions.set(node.name.text, node.initializer)\n }\n if (ts.isParameter(node) && node.type !== undefined\n && /(?:^|\\.)ExtensionAPI\\b/u.test(node.type.getText(source)) && ts.isIdentifier(node.name)) {\n receivers.add(node.name.text)\n }\n // Published Pi packages commonly ship JavaScript with type annotations\n // erased. `pi` is the documented ExtensionAPI parameter name throughout\n // the ecosystem, including helper functions reached from the entry point.\n if (ts.isParameter(node) && ts.isIdentifier(node.name)\n && /^(?:pi|extensionApi)$/iu.test(node.name.text)) {\n receivers.add(node.name.text)\n }\n ts.forEachChild(node, index)\n }\n index(source)\n\n for (const statement of source.statements) {\n if (ts.isFunctionDeclaration(statement)\n && hasModifier(statement, ts.SyntaxKind.ExportKeyword)\n && hasModifier(statement, ts.SyntaxKind.DefaultKeyword)) {\n const name = parameterIdentifier(statement)\n if (name !== undefined) receivers.add(name)\n }\n if (ts.isExportAssignment(statement)) {\n const expression = statement.expression\n if (ts.isArrowFunction(expression) || ts.isFunctionExpression(expression)) {\n const name = parameterIdentifier(expression)\n if (name !== undefined) receivers.add(name)\n } else if (ts.isIdentifier(expression)) {\n const candidate = functions.get(expression.text)\n if (candidate !== undefined) {\n const name = parameterIdentifier(candidate)\n if (name !== undefined) receivers.add(name)\n }\n }\n }\n if (ts.isExportDeclaration(statement) && statement.moduleSpecifier === undefined\n && statement.exportClause !== undefined && ts.isNamedExports(statement.exportClause)) {\n for (const element of statement.exportClause.elements) {\n if (element.name.text !== 'default' || element.propertyName === undefined || !ts.isIdentifier(element.propertyName)) continue\n const candidate = functions.get(element.propertyName.text)\n if (candidate !== undefined) {\n const name = parameterIdentifier(candidate)\n if (name !== undefined) receivers.add(name)\n }\n }\n }\n }\n return receivers\n}\n\nfunction extensionApiProperties(source: ts.SourceFile, receivers: ReadonlySet<string>): Set<string> {\n const properties = new Set<string>()\n function visit(node: ts.Node): void {\n if ((ts.isPropertyDeclaration(node) || ts.isParameter(node)) && ts.isIdentifier(node.name)) {\n const typed = node.type !== undefined && /(?:^|\\.)(?:Pi)?ExtensionAPI\\b/u.test(node.type.getText(source))\n if (typed || /^(?:pi|extensionApi)$/iu.test(node.name.text)) properties.add(node.name.text)\n } else if (ts.isBinaryExpression(node) && node.operatorToken.kind === ts.SyntaxKind.EqualsToken\n && ts.isPropertyAccessExpression(node.left) && node.left.expression.kind === ts.SyntaxKind.ThisKeyword\n && ts.isIdentifier(node.right) && receivers.has(node.right.text)) {\n properties.add(node.left.name.text)\n }\n ts.forEachChild(node, visit)\n }\n visit(source)\n return properties\n}\n\nfunction enclosingFunctionName(node: ts.ParameterDeclaration): string | undefined {\n const parent = node.parent\n if (ts.isMethodDeclaration(parent) && parent.name !== undefined) return parent.name.getText()\n if ((ts.isArrowFunction(parent) || ts.isFunctionExpression(parent)) && ts.isPropertyAssignment(parent.parent)) {\n return parent.parent.name.getText()\n }\n return undefined\n}\n\nfunction extensionContextReceivers(source: ts.SourceFile): Set<string> {\n const receivers = new Set<string>()\n function visit(node: ts.Node): void {\n if (ts.isParameter(node) && ts.isIdentifier(node.name)) {\n const typedContext = node.type !== undefined\n && /(?:^|\\.)(?:Extension|ExtensionCommand|ToolExecution)Context\\b/u.test(node.type.getText(source))\n const conventionalHandlerContext = /^(?:ctx|context)$/iu.test(node.name.text)\n && /^(?:execute|handler)$/u.test(enclosingFunctionName(node) ?? '')\n if (typedContext || conventionalHandlerContext) receivers.add(node.name.text)\n }\n ts.forEachChild(node, visit)\n }\n visit(source)\n return receivers\n}\n\n// The three Pi packages whose named exports the shim audit tracks.\nconst PI_SHIMMED_PACKAGES = new Set<string>([\n ...PI_CODING_AGENT_PACKAGES,\n ...PI_TUI_PACKAGES,\n ...PI_AI_PACKAGES,\n])\n\n// Everything Pi's loader provides to extensions without a declaration —\n// exempt from the undeclared-runtime-dependency fatal, and (for typebox) not\n// subject to per-symbol shim auditing.\nconst PI_HOST_PACKAGES = new Set<string>([\n ...PI_SHIMMED_PACKAGES,\n 'typebox',\n '@sinclair/typebox',\n])\n\nfunction dependencyNames(packageJson: Record<string, unknown>): Set<string> {\n const names = new Set<string>()\n for (const field of ['dependencies', 'optionalDependencies', 'peerDependencies']) {\n const value = packageJson[field]\n if (typeof value !== 'object' || value === null || Array.isArray(value)) continue\n for (const [name, specifier] of Object.entries(value)) {\n if (typeof specifier === 'string') names.add(name)\n }\n }\n return names\n}\n\nfunction pushFinding(\n findings: CompatibilityFinding[],\n rootDir: string,\n file: string,\n source: ts.SourceFile,\n node: ts.Node,\n capability: string,\n level: CompatibilityLevel,\n detail: string,\n): void {\n const position = source.getLineAndCharacterOfPosition(node.getStart(source))\n findings.push({\n capability,\n level,\n file: relative(rootDir, file).replaceAll('\\\\', '/'),\n line: position.line + 1,\n detail,\n })\n}\n\nasync function analyzeExtension(rootDir: string, file: string): Promise<CompatibilityFinding[]> {\n const text = await readFile(file, 'utf8')\n const source = ts.createSourceFile(file, text, ts.ScriptTarget.Latest, true, sourceKind(file))\n const findings: CompatibilityFinding[] = []\n const receivers = extensionApiReceivers(source)\n const apiProperties = extensionApiProperties(source, receivers)\n const contextReceivers = extensionContextReceivers(source)\n const methodAliases = new Map<string, string>()\n const eventBusAliases = new Set<string>()\n const uiAliases = new Set<string>()\n\n function reportHostImport(packageName: string, importedName: string, node: ts.Node): void {\n const matched = ruleForHostImport(packageName, importedName)\n if (matched === undefined) {\n pushFinding(\n findings, rootDir, file, source, node, `host-import(${packageName}:${importedName})`, 'unsupported',\n `The pi2dsh host shim does not export ${JSON.stringify(importedName)} from ${JSON.stringify(packageName)}.`,\n )\n return\n }\n pushFinding(\n findings, rootDir, file, source, node, `host-import(${packageName}:${importedName})`, matched.level, matched.detail,\n )\n }\n\n for (const statement of source.statements) {\n if (ts.isImportDeclaration(statement) && ts.isStringLiteral(statement.moduleSpecifier)\n && PI_SHIMMED_PACKAGES.has(statement.moduleSpecifier.text)) {\n const packageName = statement.moduleSpecifier.text\n const clause = statement.importClause\n if (clause === undefined) {\n reportHostImport(packageName, '<side-effect>', statement)\n continue\n }\n if (clause.isTypeOnly) continue\n if (clause.name !== undefined) reportHostImport(packageName, 'default', clause.name)\n if (clause.namedBindings !== undefined && ts.isNamespaceImport(clause.namedBindings)) {\n reportHostImport(packageName, '*', clause.namedBindings)\n } else if (clause.namedBindings !== undefined) {\n for (const element of clause.namedBindings.elements) {\n if (!element.isTypeOnly) reportHostImport(packageName, element.propertyName?.text ?? element.name.text, element)\n }\n }\n } else if (ts.isExportDeclaration(statement) && !statement.isTypeOnly\n && statement.moduleSpecifier !== undefined && ts.isStringLiteral(statement.moduleSpecifier)\n && PI_HOST_PACKAGES.has(statement.moduleSpecifier.text)) {\n const packageName = statement.moduleSpecifier.text\n if (statement.exportClause === undefined || ts.isNamespaceExport(statement.exportClause)) {\n reportHostImport(packageName, '*', statement)\n } else {\n for (const element of statement.exportClause.elements) {\n if (!element.isTypeOnly) reportHostImport(packageName, element.propertyName?.text ?? element.name.text, element)\n }\n }\n } else if (ts.isImportEqualsDeclaration(statement) && !statement.isTypeOnly\n && ts.isExternalModuleReference(statement.moduleReference)\n && ts.isStringLiteral(statement.moduleReference.expression)\n && PI_HOST_PACKAGES.has(statement.moduleReference.expression.text)) {\n reportHostImport(statement.moduleReference.expression.text, '*', statement)\n }\n }\n\n const declarations: ts.VariableDeclaration[] = []\n const isApiReceiver = (node: ts.Expression): boolean => ts.isIdentifier(node) && receivers.has(node.text)\n || (ts.isPropertyAccessExpression(node) && node.expression.kind === ts.SyntaxKind.ThisKeyword\n && apiProperties.has(node.name.text))\n function collectDeclarations(node: ts.Node): void {\n if (ts.isVariableDeclaration(node)) declarations.push(node)\n ts.forEachChild(node, collectDeclarations)\n }\n collectDeclarations(source)\n\n for (let pass = 0; pass < declarations.length + 1; pass += 1) {\n let changed = false\n for (const declaration of declarations) {\n const initializer = declaration.initializer\n if (initializer === undefined) continue\n if (ts.isIdentifier(declaration.name) && isApiReceiver(initializer)) {\n if (!receivers.has(declaration.name.text)) {\n receivers.add(declaration.name.text)\n changed = true\n }\n }\n if (ts.isIdentifier(declaration.name) && ts.isIdentifier(initializer) && contextReceivers.has(initializer.text)) {\n if (!contextReceivers.has(declaration.name.text)) {\n contextReceivers.add(declaration.name.text)\n changed = true\n }\n }\n if (ts.isIdentifier(declaration.name) && ts.isPropertyAccessExpression(initializer)\n && initializer.name.text === 'ui' && ts.isIdentifier(initializer.expression)\n && contextReceivers.has(initializer.expression.text) && !uiAliases.has(declaration.name.text)) {\n uiAliases.add(declaration.name.text)\n changed = true\n }\n if (ts.isIdentifier(declaration.name) && ts.isPropertyAccessExpression(initializer)\n && isApiReceiver(initializer.expression)) {\n if (initializer.name.text === 'events') {\n if (!eventBusAliases.has(declaration.name.text)) {\n eventBusAliases.add(declaration.name.text)\n changed = true\n }\n } else if (!methodAliases.has(declaration.name.text)) {\n methodAliases.set(declaration.name.text, initializer.name.text)\n changed = true\n }\n }\n if (ts.isObjectBindingPattern(declaration.name) && isApiReceiver(initializer)) {\n for (const element of declaration.name.elements) {\n if (!ts.isIdentifier(element.name)) continue\n const method = element.propertyName !== undefined && ts.isIdentifier(element.propertyName)\n ? element.propertyName.text\n : element.name.text\n if (method === 'events') {\n if (!eventBusAliases.has(element.name.text)) {\n eventBusAliases.add(element.name.text)\n changed = true\n }\n } else if (!methodAliases.has(element.name.text)) {\n methodAliases.set(element.name.text, method)\n changed = true\n }\n }\n }\n }\n if (!changed) break\n }\n\n function reportMethod(method: string, args: ts.NodeArray<ts.Expression>, node: ts.Node): void {\n if (method === 'on') {\n const event = literalText(args[0])\n if (event === undefined) {\n pushFinding(\n findings, rootDir, file, source, node, 'on(<dynamic>)', 'unsupported',\n 'Dynamic event names cannot be audited or mapped safely.',\n )\n } else {\n const rule = ruleForEvent(event)\n pushFinding(findings, rootDir, file, source, node, `on(${event})`, rule.level, rule.detail)\n }\n return\n }\n const rule = ruleForApi(method)\n if (rule === undefined) {\n pushFinding(\n findings, rootDir, file, source, node, method, 'unsupported',\n `Unknown ExtensionAPI method ${JSON.stringify(method)} cannot be audited or mapped safely.`,\n )\n return\n }\n pushFinding(findings, rootDir, file, source, node, method, rule.level, rule.detail)\n }\n\n function reportEventBus(method: string, node: ts.Node): void {\n const rule = ruleForApi('events')\n if ((method === 'on' || method === 'emit') && rule !== undefined) {\n pushFinding(findings, rootDir, file, source, node, `events.${method}`, rule.level, rule.detail)\n } else {\n pushFinding(\n findings, rootDir, file, source, node, `events.${method}`, 'unsupported',\n `Unknown Pi event-bus method ${JSON.stringify(method)} cannot be mapped safely.`,\n )\n }\n }\n\n function reportContext(property: string, node: ts.Node): void {\n const matched = ruleForContextProperty(property)\n if (matched === undefined) {\n pushFinding(\n findings, rootDir, file, source, node, `ctx.${property}`, 'unsupported',\n `Unknown Pi extension-context property ${JSON.stringify(property)} cannot be audited or mapped safely.`,\n )\n } else {\n pushFinding(findings, rootDir, file, source, node, `ctx.${property}`, matched.level, matched.detail)\n }\n }\n\n function reportUiContext(property: string, node: ts.Node): void {\n const matched = ruleForUiContextProperty(property)\n if (matched === undefined) {\n pushFinding(\n findings, rootDir, file, source, node, `ctx.ui.${property}`, 'unsupported',\n `Unknown Pi UI-context property ${JSON.stringify(property)} cannot be audited or mapped safely.`,\n )\n } else {\n pushFinding(findings, rootDir, file, source, node, `ctx.ui.${property}`, matched.level, matched.detail)\n }\n }\n\n function visit(node: ts.Node): void {\n if (ts.isCallExpression(node) && ts.isIdentifier(node.expression)) {\n const method = methodAliases.get(node.expression.text)\n if (method !== undefined) reportMethod(method, node.arguments, node)\n } else if (ts.isCallExpression(node) && ts.isPropertyAccessExpression(node.expression)) {\n const target = node.expression.expression\n if (isApiReceiver(target)) {\n reportMethod(node.expression.name.text, node.arguments, node)\n } else if (ts.isIdentifier(target) && eventBusAliases.has(target.text)) {\n reportEventBus(node.expression.name.text, node)\n } else if (ts.isPropertyAccessExpression(target)\n && target.name.text === 'events'\n && isApiReceiver(target.expression)) {\n reportEventBus(node.expression.name.text, node)\n }\n } else if (ts.isCallExpression(node) && ts.isElementAccessExpression(node.expression)\n && isApiReceiver(node.expression.expression)) {\n const method = literalText(node.expression.argumentExpression)\n if (method === undefined) {\n pushFinding(\n findings, rootDir, file, source, node, '<dynamic-api-method>', 'unsupported',\n 'Dynamic ExtensionAPI method access cannot be audited or mapped safely.',\n )\n } else {\n reportMethod(method, node.arguments, node)\n }\n }\n if (ts.isPropertyAccessExpression(node)) {\n const target = node.expression\n if (ts.isPropertyAccessExpression(target) && target.name.text === 'ui'\n && ts.isIdentifier(target.expression) && contextReceivers.has(target.expression.text)) {\n reportUiContext(node.name.text, node)\n } else if (ts.isIdentifier(target) && uiAliases.has(target.text)) {\n reportUiContext(node.name.text, node)\n } else if (ts.isIdentifier(target) && contextReceivers.has(target.text) && node.name.text !== 'ui') {\n reportContext(node.name.text, node)\n }\n } else if (ts.isElementAccessExpression(node) && ts.isIdentifier(node.expression)\n && contextReceivers.has(node.expression.text)) {\n const property = literalText(node.argumentExpression)\n if (property === undefined) {\n pushFinding(\n findings, rootDir, file, source, node, 'ctx.<dynamic>', 'unsupported',\n 'Dynamic Pi extension-context access cannot be audited or mapped safely.',\n )\n } else if (property !== 'ui') {\n reportContext(property, node)\n }\n }\n ts.forEachChild(node, visit)\n }\n\n visit(source)\n return findings\n}\n\nexport async function analyzePackage(pkg: ResolvedPiPackage): Promise<CompatibilityReport> {\n const extensionClosure = await collectLocalClosure(pkg.rootDir, pkg.resources.extensions)\n const findings = (await Promise.all(\n extensionClosure.files.filter(file => SCRIPT_EXTENSIONS.has(extname(file)))\n .map(file => analyzeExtension(pkg.rootDir, file)),\n )).flat()\n\n if (pkg.resources.extensions.length > 0 && findings.length === 0) {\n findings.push({\n capability: 'static-audit',\n level: 'unsupported',\n file: pkg.resources.extensions.map(file => relative(pkg.rootDir, file).replaceAll('\\\\', '/')).join(', '),\n line: 1,\n detail: 'No ExtensionAPI use was statically proven across the local module closure; conversion fails closed instead of claiming compatibility.',\n })\n }\n for (const issue of extensionClosure.issues) {\n findings.push({\n capability: `${issue.kind}(${issue.specifier})`,\n level: 'fatal',\n file: relative(pkg.rootDir, issue.file).replaceAll('\\\\', '/'),\n line: 1,\n detail: `The local extension closure is incomplete: ${issue.detail}`,\n })\n }\n\n const declaredDependencies = dependencyNames(pkg.packageJson)\n for (const file of extensionClosure.files.filter(candidate => SCRIPT_EXTENSIONS.has(extname(candidate)))) {\n const text = await readFile(file, 'utf8')\n for (const packageName of runtimeExternalPackages(file, text)) {\n if (PI_HOST_PACKAGES.has(packageName) || declaredDependencies.has(packageName)) continue\n findings.push({\n capability: `undeclared-runtime-dependency(${packageName})`,\n level: 'fatal',\n file: relative(pkg.rootDir, file).replaceAll('\\\\', '/'),\n line: 1,\n detail: `The extension imports ${JSON.stringify(packageName)} at runtime, but the Pi package does not declare it as a dependency.`,\n })\n }\n }\n\n const resourceFinding = (file: string, capability: string, level: CompatibilityLevel, detail: string): CompatibilityFinding => ({\n capability,\n level,\n file: relative(pkg.rootDir, file).replaceAll('\\\\', '/'),\n line: 1,\n detail,\n })\n for (const file of pkg.resources.skills.filter(path => basename(path) === 'SKILL.md' || path.endsWith('.md'))) {\n findings.push(resourceFinding(file, 'skill', 'full', 'Copied as a DSH filesystem skill with its resource directory intact.'))\n }\n for (const file of pkg.resources.prompts) {\n findings.push(resourceFinding(file, 'prompt', 'full', 'Registered as a DSH slash command with Pi-compatible argument expansion.'))\n }\n for (const file of pkg.resources.themes) {\n findings.push(resourceFinding(file, 'theme', 'unsupported', 'Pi terminal themes have no effect in DSH Web or headless surfaces.'))\n }\n findings.sort((left, right) => left.file.localeCompare(right.file) || left.line - right.line || left.capability.localeCompare(right.capability))\n\n const summary: Record<CompatibilityLevel, number> = { full: 0, partial: 0, unsupported: 0, fatal: 0 }\n for (const finding of findings) summary[finding.level] += 1\n // Static analysis screens; it does not certify. Only fatal findings block a\n // bundle (it cannot be built or trusted). Everything else installs: verify\n // real behavior with the black-box run instead of trusting this verdict.\n const verdict = summary.fatal > 0 ? 'blocked' : summary.partial > 0 || summary.unsupported > 0 ? 'review' : 'ready'\n\n return {\n schemaVersion: 1,\n package: pkg.identity,\n verdict,\n summary,\n resources: {\n extensions: pkg.resources.extensions.map(file => relative(pkg.rootDir, file).replaceAll('\\\\', '/')),\n skills: pkg.resources.skills.map(file => relative(pkg.rootDir, file).replaceAll('\\\\', '/')),\n prompts: pkg.resources.prompts.map(file => relative(pkg.rootDir, file).replaceAll('\\\\', '/')),\n themes: pkg.resources.themes.map(file => relative(pkg.rootDir, file).replaceAll('\\\\', '/')),\n },\n findings,\n }\n}\n","import { cp, lstat, mkdir, readFile, readdir, stat, writeFile } from 'node:fs/promises'\nimport { basename, dirname, extname, join, relative, resolve } from 'node:path'\nimport { fileURLToPath } from 'node:url'\nimport { parse as parseYaml } from 'yaml'\nimport { analyzePackage } from './analyzer.js'\nimport { collectLocalClosure, runtimeExternalPackages, SCRIPT_EXTENSIONS } from './module-graph.js'\nimport type {\n CompatibilityReport,\n GenerateOptions,\n GeneratedRuntimeManifest,\n ResolvedPiPackage,\n} from './types.js'\n\ninterface PromptMetadata {\n name: string\n description: string\n argumentHint?: string\n path: string\n}\n\nconst SHIMMED_PI_HOST_PACKAGES = new Set([\n '@earendil-works/pi-coding-agent',\n '@mariozechner/pi-coding-agent',\n '@earendil-works/pi-tui',\n '@mariozechner/pi-tui',\n '@earendil-works/pi-ai',\n '@mariozechner/pi-ai',\n // Host-provided in Pi's loader whitelist; the runtime aliases them too.\n 'typebox',\n '@sinclair/typebox',\n])\n\nfunction packageSlug(name: string): string {\n const slug = name.replace(/^@/u, '').replaceAll('/', '-').replace(/[^a-zA-Z0-9._-]+/gu, '-').toLowerCase()\n return slug.replace(/^-+|-+$/gu, '') || 'package'\n}\n\nfunction stringRecord(value: unknown): Record<string, string> {\n if (typeof value !== 'object' || value === null || Array.isArray(value)) return {}\n return Object.fromEntries(Object.entries(value).filter((entry): entry is [string, string] => typeof entry[1] === 'string'))\n}\n\nasync function assertEmptyOrMissing(path: string): Promise<void> {\n try {\n const info = await stat(path)\n if (!info.isDirectory()) throw new Error(`output exists and is not a directory: ${path}`)\n const entries = await readdir(path)\n if (entries.length > 0) throw new Error(`output directory is not empty: ${path}`)\n } catch (error) {\n if ((error as NodeJS.ErrnoException).code !== 'ENOENT') throw error\n }\n}\n\nfunction parseFrontmatter(text: string): { attributes: Record<string, string>; body: string } {\n const normalized = text.replace(/\\r\\n?/gu, '\\n')\n if (!normalized.startsWith('---')) return { attributes: {}, body: normalized }\n const endIndex = normalized.indexOf('\\n---', 3)\n if (endIndex === -1) return { attributes: {}, body: normalized }\n const raw: unknown = parseYaml(normalized.slice(4, endIndex))\n const attributes = typeof raw === 'object' && raw !== null && !Array.isArray(raw)\n ? stringRecord(raw)\n : {}\n return { attributes, body: normalized.slice(endIndex + 4).trim() }\n}\n\nasync function assertNoSymlinks(path: string): Promise<void> {\n const info = await lstat(path)\n if (info.isSymbolicLink()) throw new Error(`refusing to copy symbolic link from Pi package: ${path}`)\n if (!info.isDirectory()) return\n for (const entry of await readdir(path)) await assertNoSymlinks(join(path, entry))\n}\n\nasync function copyExtensions(pkg: ResolvedPiPackage, outDir: string): Promise<{ entries: string[]; runtimePackages: Set<string> }> {\n const copied: string[] = []\n const runtimePackages = new Set<string>()\n const closure = await collectLocalClosure(pkg.rootDir, pkg.resources.extensions)\n if (closure.issues.length > 0) {\n throw new Error(`cannot snapshot extension closure:\\n${closure.issues.map(issue => `- ${issue.file}: ${issue.detail}`).join('\\n')}`)\n }\n for (const source of closure.files) {\n if (SCRIPT_EXTENSIONS.has(extname(source))) {\n const text = await readFile(source, 'utf8')\n for (const packageName of runtimeExternalPackages(source, text)) runtimePackages.add(packageName)\n }\n const sourceRelative = relative(pkg.rootDir, source).replaceAll('\\\\', '/')\n const targetRelative = `vendor/${sourceRelative}`\n const target = join(outDir, targetRelative)\n await mkdir(dirname(target), { recursive: true })\n await cp(source, target, { dereference: false })\n if (pkg.resources.extensions.map(entry => resolve(entry)).includes(source)) copied.push(targetRelative)\n }\n for (const source of pkg.resources.skills) {\n if (!SCRIPT_EXTENSIONS.has(extname(source))) continue\n const text = await readFile(source, 'utf8')\n for (const packageName of runtimeExternalPackages(source, text)) runtimePackages.add(packageName)\n }\n return { entries: copied, runtimePackages }\n}\n\nasync function copySkills(pkg: ResolvedPiPackage, outDir: string): Promise<string[]> {\n const entryFiles = pkg.resources.skills.filter(file => basename(file) === 'SKILL.md' || file.endsWith('.md'))\n if (entryFiles.length === 0) return []\n const names = new Set<string>()\n for (const entry of entryFiles) {\n const isBundle = basename(entry) === 'SKILL.md'\n let name = isBundle ? basename(dirname(entry)) : basename(entry, '.md')\n if (names.has(name)) {\n // Same-named skills under different parents (piolium ships several):\n // disambiguate with the parent directory instead of refusing the package.\n const parent = basename(dirname(isBundle ? dirname(entry) : entry))\n const candidate = `${parent}-${name}`.replace(/[^a-zA-Z0-9._-]+/gu, '-')\n name = names.has(candidate) ? `${candidate}-${names.size}` : candidate\n }\n names.add(name)\n const target = join(outDir, 'skills', isBundle ? name : `${name}.md`)\n await mkdir(dirname(target), { recursive: true })\n const source = isBundle ? dirname(entry) : entry\n await assertNoSymlinks(source)\n await cp(source, target, { recursive: isBundle, dereference: false })\n }\n return ['skills']\n}\n\nasync function copyPrompts(pkg: ResolvedPiPackage, outDir: string): Promise<PromptMetadata[]> {\n const prompts: PromptMetadata[] = []\n const names = new Set<string>()\n for (const source of pkg.resources.prompts) {\n const name = basename(source, '.md').toLowerCase().replace(/[^a-z0-9_-]+/gu, '-')\n if (names.has(name)) throw new Error(`prompt command name collision while flattening Pi package: ${name}`)\n names.add(name)\n const targetRelative = `prompts/${name}.md`\n const target = join(outDir, targetRelative)\n await mkdir(dirname(target), { recursive: true })\n await assertNoSymlinks(source)\n await cp(source, target, { dereference: false })\n const { attributes, body } = parseFrontmatter(await readFile(source, 'utf8'))\n const firstLine = body.split(/\\r?\\n/u).map(line => line.trim()).find(Boolean)\n prompts.push({\n name,\n description: attributes.description ?? firstLine ?? `Run migrated Pi prompt ${name}`,\n ...(attributes['argument-hint'] !== undefined ? { argumentHint: attributes['argument-hint'] } : {}),\n path: targetRelative,\n })\n }\n return prompts\n}\n\nasync function copyNotices(pkg: ResolvedPiPackage, outDir: string): Promise<string[]> {\n const copied: string[] = []\n for (const entry of await readdir(pkg.rootDir)) {\n if (!/^(?:licen[cs]e|notice|copying)(?:[._-].*)?$/iu.test(entry)) continue\n const source = join(pkg.rootDir, entry)\n const info = await lstat(source)\n if (info.isSymbolicLink()) throw new Error(`refusing to copy symbolic link from Pi package: ${source}`)\n if (!info.isFile()) continue\n await cp(source, join(outDir, entry), { dereference: false })\n copied.push(entry)\n }\n return copied.sort()\n}\n\nfunction generatedPackageJson(\n pkg: ResolvedPiPackage,\n generatedName: string,\n runtimeSpec: string | undefined,\n runtimePackages: ReadonlySet<string>,\n hasSkills: boolean,\n): Record<string, unknown> {\n const declaredDependencies = {\n ...stringRecord(pkg.packageJson.dependencies),\n ...stringRecord(pkg.packageJson.optionalDependencies),\n ...stringRecord(pkg.packageJson.peerDependencies),\n }\n const externalRuntimePackages = [...runtimePackages].filter(name => !SHIMMED_PI_HOST_PACKAGES.has(name))\n const missing = externalRuntimePackages.filter(name => declaredDependencies[name] === undefined)\n if (missing.length > 0) {\n throw new Error(`runtime dependencies are imported but not declared by the Pi package: ${missing.join(', ')}`)\n }\n // Carry EVERY declared runtime dependency, not only statically detected\n // imports: packages load their own deps dynamically (computed require,\n // optional native backends) and the original manifest is the authority on\n // what they need.\n const declaredRuntime = {\n ...stringRecord(pkg.packageJson.dependencies),\n ...stringRecord(pkg.packageJson.optionalDependencies),\n }\n const dependencies = {\n ...Object.fromEntries(Object.entries(declaredRuntime).filter(([name]) => !SHIMMED_PI_HOST_PACKAGES.has(name))),\n ...Object.fromEntries(externalRuntimePackages.sort().map(name => [name, declaredDependencies[name]])),\n // The embedded runtime's own runtime dependencies (vendored Pi width math\n // uses get-east-asian-width; the pi-tui shim re-exports marked; typebox is\n // the host-provided schema library Pi's loader gives every extension).\n ...(runtimeSpec === undefined\n ? { jiti: '^2.7.0', 'get-east-asian-width': '^1.6.0', marked: '^16.4.1', typebox: '^1.0.4' }\n : {}),\n ...(hasSkills ? { '@deepseek-ai/dsh-skill-filesystem': '^0.1.0-rc.6' } : {}),\n ...(runtimeSpec !== undefined ? { pi2dsh: runtimeSpec } : {}),\n }\n // Re-point the package's Node subpath-imports map (\"#x\": \"./src/x.js\") at\n // the vendored snapshot so '#'-imports keep resolving inside the bundle.\n const remapImports = (value: unknown): unknown => {\n if (typeof value === 'string') return value.startsWith('./') ? `./vendor/${value.slice(2)}` : value\n if (typeof value === 'object' && value !== null && !Array.isArray(value)) {\n return Object.fromEntries(Object.entries(value).map(([key, entry]) => [key, remapImports(entry)]))\n }\n return value\n }\n const sourceImports = pkg.packageJson.imports\n return {\n name: generatedName,\n version: pkg.identity.version,\n description: `DeepSeek Harness adapter generated from ${pkg.identity.name}`,\n type: 'module',\n main: './index.js',\n ...(typeof sourceImports === 'object' && sourceImports !== null\n ? { imports: remapImports(sourceImports) as Record<string, unknown> }\n : {}),\n files: ['index.js', 'cordis.patch.yml', 'pi2dsh.manifest.json', 'pi2dsh.report.json', 'README.md', 'LICENSE*', 'NOTICE*', 'COPYING*', 'PI2DSH-LICENSE', 'runtime', 'vendor', 'skills', 'prompts'],\n dependencies,\n ...(runtimeSpec === undefined\n ? {\n peerDependencies: {\n '@deepseek-ai/dsh-llm': '^0.1.0-rc.6',\n '@deepseek-ai/dsh-system-prompt': '^0.1.0-rc.6',\n },\n }\n : {}),\n keywords: ['dsh-plugin', 'deepseek-harness', 'pi-package', 'pi2dsh'],\n license: typeof pkg.packageJson.license === 'string' ? pkg.packageJson.license : 'UNLICENSED',\n dsh: { bundle: { patch: './cordis.patch.yml' } },\n }\n}\n\nfunction generatedReadme(pkg: ResolvedPiPackage, packageName: string, report: CompatibilityReport): string {\n return `# ${packageName}\\n\\n`\n + `Generated by [pi2dsh](https://github.com/weijiafu14/pi2dsh) from \\`${pkg.identity.name}@${pkg.identity.version}\\`.\\n\\n`\n + `Compatibility verdict: **${report.verdict}** (full ${report.summary.full}, partial ${report.summary.partial}, unsupported ${report.summary.unsupported}).\\n\\n`\n + `Review \\`pi2dsh.report.json\\` before installation. This bundle executes the original Pi extension source and should only be installed when that source is trusted.\\n\\n`\n + `Install with DeepSeek Harness (keep the \\`file:\\` prefix so pnpm installs this bundle's dependencies instead of creating a bare link):\\n\\n`\n + `\\`\\`\\`sh\\ndsh plugin --profile headless add file:$PWD\\ndsh --profile headless --dump-config\\n\\`\\`\\`\\n`\n}\n\nfunction pluginSource(manifest: GeneratedRuntimeManifest, runtimeImport: string): string {\n const injections = ['tools', 'systemPrompt']\n if (manifest.prompts.length > 0 || manifest.report?.findings.some(item => item.capability === 'registerCommand') === true) {\n injections.push('commands')\n }\n if (manifest.skillDirs.length > 0) injections.push('skills')\n return `import { applyPiPackage } from ${JSON.stringify(runtimeImport)}\\n\\n`\n + `export const name = ${JSON.stringify(`pi2dsh:${packageSlug(manifest.package.name)}`)}\\n`\n + `export const inject = ${JSON.stringify(injections)}\\n\\n`\n + `const manifest = ${JSON.stringify(manifest, null, 2)}\\n\\n`\n + `export async function apply(ctx, config = {}) {\\n`\n + ` await applyPiPackage(ctx, { rootUrl: new URL('.', import.meta.url), manifest, config })\\n`\n + `}\\n`\n}\n\nasync function firstExisting(paths: string[]): Promise<string> {\n for (const path of paths) {\n try {\n await stat(path)\n return path\n } catch {\n // Try the next package/source layout.\n }\n }\n throw new Error(`cannot locate pi2dsh runtime artifact; tried: ${paths.join(', ')}`)\n}\n\nasync function copyEmbeddedRuntime(outDir: string): Promise<void> {\n const moduleDir = dirname(fileURLToPath(import.meta.url))\n const runtimeSource = await firstExisting([\n join(moduleDir, 'runtime.mjs'),\n join(moduleDir, '../dist/runtime.mjs'),\n ])\n const runtimeRoot = dirname(runtimeSource)\n const targetRoot = join(outDir, 'runtime')\n await mkdir(targetRoot, { recursive: true })\n // Copy every emitted module, including bundler-named shared chunks — a\n // fixed file list silently breaks whenever the bundler re-splits chunks.\n for (const entry of await readdir(runtimeRoot)) {\n if (entry.endsWith('.mjs')) await cp(join(runtimeRoot, entry), join(targetRoot, entry))\n }\n for (const sub of ['compat', join('compat', 'vendor')]) {\n const sourceDir = join(runtimeRoot, sub)\n try {\n const entries = await readdir(sourceDir)\n await mkdir(join(targetRoot, sub), { recursive: true })\n for (const entry of entries) {\n if (entry.endsWith('.mjs')) await cp(join(sourceDir, entry), join(targetRoot, sub, entry))\n }\n } catch {\n // dist layout without that subdirectory\n }\n }\n await cp(join(targetRoot, 'runtime.mjs'), join(targetRoot, 'pi2dsh-runtime.mjs'))\n const license = await firstExisting([join(moduleDir, '../LICENSE'), join(moduleDir, '../../LICENSE')])\n await cp(license, join(outDir, 'PI2DSH-LICENSE'))\n}\n\nfunction patchSource(generatedName: string, slug: string): string {\n return `- insert:\\n - id: pi2dsh-${slug}\\n name: ${JSON.stringify(generatedName)}\\n`\n}\n\nfunction enforceReport(report: CompatibilityReport, options: GenerateOptions): void {\n // Fatal findings (incomplete module closure, undeclared runtime deps,\n // resource escapes) mean the bundle cannot be built or trusted; no flag\n // bypasses them. Unsupported findings are explicit, load-safe degradations\n // — the bundle installs and the black-box run decides real usability.\n if (report.summary.fatal > 0) {\n throw new Error(\n `conversion blocked: ${report.summary.fatal} fatal finding(s) — the bundle cannot be built or trusted; run inspect for details`,\n )\n }\n if (options.strict && (report.summary.partial > 0 || report.summary.unsupported > 0)) {\n throw new Error('strict conversion requires every detected Pi API use to have full compatibility')\n }\n}\n\nexport async function generateBundle(\n pkg: ResolvedPiPackage,\n options: GenerateOptions,\n): Promise<{ outDir: string; report: CompatibilityReport; packageName: string }> {\n const outDir = resolve(options.outDir)\n const report = await analyzePackage(pkg)\n enforceReport(report, options)\n await assertEmptyOrMissing(outDir)\n await mkdir(outDir, { recursive: true })\n\n const slug = packageSlug(pkg.identity.name)\n const packageName = `dsh-pi-${slug}`\n const extensionSnapshot = await copyExtensions(pkg, outDir)\n const skillDirs = await copySkills(pkg, outDir)\n const prompts = await copyPrompts(pkg, outDir)\n await copyNotices(pkg, outDir)\n const manifest: GeneratedRuntimeManifest = {\n schemaVersion: 1,\n package: pkg.identity,\n extensions: extensionSnapshot.entries,\n skillDirs,\n prompts,\n report,\n }\n const runtimeSpec = options.runtimeSpec\n if (runtimeSpec === undefined) await copyEmbeddedRuntime(outDir)\n\n await Promise.all([\n writeFile(join(outDir, 'package.json'), `${JSON.stringify(generatedPackageJson(pkg, packageName, runtimeSpec, extensionSnapshot.runtimePackages, skillDirs.length > 0), null, 2)}\\n`),\n writeFile(join(outDir, 'pi2dsh.manifest.json'), `${JSON.stringify(manifest, null, 2)}\\n`),\n writeFile(join(outDir, 'pi2dsh.report.json'), `${JSON.stringify(report, null, 2)}\\n`),\n writeFile(join(outDir, 'index.js'), pluginSource(manifest, runtimeSpec === undefined ? './runtime/pi2dsh-runtime.mjs' : 'pi2dsh/runtime')),\n writeFile(join(outDir, 'cordis.patch.yml'), patchSource(packageName, slug)),\n writeFile(join(outDir, 'README.md'), generatedReadme(pkg, packageName, report)),\n ])\n return { outDir, report, packageName }\n}\n","// Pi MCP configuration -> DSH mcp-client patch entries.\n//\n// Pi (via pi-mcp-adapter) reads the standard `mcpServers` files. DSH ships an\n// official MCP client (`@deepseek-ai/dsh-mcp-client`) configured through\n// cordis patch layers — so migration is config translation, not running Pi's\n// adapter code. This module reads Pi's documented six-layer precedence,\n// resolves `disabled` flags, and emits one patch entry per enabled server.\n\nimport { existsSync, readFileSync } from 'node:fs'\nimport { homedir } from 'node:os'\nimport { join } from 'node:path'\nimport { getAgentDir } from './compat/vendor/pi-config-shim.js'\n\ntype UnknownRecord = Record<string, unknown>\n\nexport interface PiMcpServer {\n name: string\n sourcePath: string\n transport: 'stdio' | 'streamable-http'\n command?: string\n args?: string[]\n env?: Record<string, string>\n cwd?: string\n url?: string\n headers?: Record<string, string>\n disabled: boolean\n}\n\nexport interface McpConversionWarning {\n server: string\n message: string\n}\n\nexport interface McpConversionResult {\n servers: PiMcpServer[]\n entries: UnknownRecord[]\n warnings: McpConversionWarning[]\n sources: string[]\n}\n\n/** Pi's documented config precedence, lowest to highest. */\nexport function piMcpConfigPaths(cwd: string): string[] {\n const home = homedir()\n return [\n join(home, '.config', 'mcp', 'mcp.json'),\n join(home, '.agents', 'mcp.json'),\n join(home, '.agents', 'mcp', 'mcp.json'),\n join(getAgentDir(), 'mcp.json'),\n join(cwd, '.mcp.json'),\n join(cwd, '.pi', 'mcp.json'),\n ]\n}\n\nfunction stringRecord(value: unknown): Record<string, string> | undefined {\n if (typeof value !== 'object' || value === null || Array.isArray(value)) return undefined\n const entries = Object.entries(value).filter((entry): entry is [string, string] => typeof entry[1] === 'string')\n return entries.length === 0 ? undefined : Object.fromEntries(entries)\n}\n\nfunction parseServer(name: string, raw: unknown, sourcePath: string): PiMcpServer | undefined {\n if (typeof raw !== 'object' || raw === null) return undefined\n const record = raw as UnknownRecord\n const disabled = record.disabled === true\n if (typeof record.url === 'string') {\n return {\n name, sourcePath, transport: 'streamable-http', url: record.url,\n ...(stringRecord(record.headers) === undefined ? {} : { headers: stringRecord(record.headers)! }),\n disabled,\n }\n }\n if (typeof record.command === 'string') {\n return {\n name, sourcePath, transport: 'stdio', command: record.command,\n ...(Array.isArray(record.args) ? { args: record.args.map(String) } : {}),\n ...(stringRecord(record.env) === undefined ? {} : { env: stringRecord(record.env)! }),\n ...(typeof record.cwd === 'string' ? { cwd: record.cwd } : {}),\n disabled,\n }\n }\n return undefined\n}\n\nexport function collectPiMcpServers(cwd: string, extraPaths: string[] = []): { servers: Map<string, PiMcpServer>; sources: string[] } {\n const servers = new Map<string, PiMcpServer>()\n const sources: string[] = []\n for (const path of [...piMcpConfigPaths(cwd), ...extraPaths]) {\n if (!existsSync(path)) continue\n let parsed: unknown\n try {\n parsed = JSON.parse(readFileSync(path, 'utf8'))\n } catch {\n continue\n }\n const mcpServers = (parsed as UnknownRecord | undefined)?.mcpServers\n if (typeof mcpServers !== 'object' || mcpServers === null) continue\n sources.push(path)\n for (const [name, raw] of Object.entries(mcpServers)) {\n const record = raw as UnknownRecord | null\n const existing = servers.get(name)\n // Later (higher-precedence) layers override whole entries; a bare\n // `disabled` toggle updates the effective server from a lower layer.\n if (existing !== undefined && typeof record === 'object' && record !== null\n && record.command === undefined && record.url === undefined && typeof record.disabled === 'boolean') {\n servers.set(name, { ...existing, disabled: record.disabled, sourcePath: path })\n continue\n }\n const server = parseServer(name, raw, path)\n if (server !== undefined) servers.set(name, server)\n }\n }\n return { servers, sources }\n}\n\nconst SERVER_NAME_PATTERN = /^[A-Za-z0-9_-]{1,32}$/u\nconst ENV_REFERENCE_PATTERN = /^\\$\\{?([A-Za-z_][A-Za-z0-9_]*)\\}?$/u\nconst SECRETISH_KEY_PATTERN = /token|secret|key|password|credential/iu\n\ninterface JsExpression {\n __pi2dshJs: string\n}\n\nfunction js(expression: string): JsExpression {\n return { __pi2dshJs: expression }\n}\n\nfunction convertValueMap(\n server: string,\n kind: 'env' | 'headers',\n values: Record<string, string> | undefined,\n warnings: McpConversionWarning[],\n): Record<string, string | JsExpression> | undefined {\n if (values === undefined) return undefined\n const output: Record<string, string | JsExpression> = {}\n for (const [key, value] of Object.entries(values)) {\n const reference = ENV_REFERENCE_PATTERN.exec(value)\n if (reference !== null) {\n output[key] = js(`process.env.${reference[1]}`)\n continue\n }\n if (SECRETISH_KEY_PATTERN.test(key)) {\n warnings.push({\n server,\n message: `${kind}.${key} carries a literal value; move the secret to an environment variable and reference it as $NAME so the patch stays credential-free`,\n })\n }\n output[key] = value\n }\n return output\n}\n\nexport function convertPiMcpConfig(cwd: string, extraPaths: string[] = []): McpConversionResult {\n const { servers, sources } = collectPiMcpServers(cwd, extraPaths)\n const warnings: McpConversionWarning[] = []\n const entries: UnknownRecord[] = []\n for (const server of servers.values()) {\n if (server.disabled) {\n warnings.push({ server: server.name, message: 'skipped: disabled in Pi configuration' })\n continue\n }\n if (!SERVER_NAME_PATTERN.test(server.name)) {\n warnings.push({\n server: server.name,\n message: 'skipped: DSH serverName must match [A-Za-z0-9_-]{1,32}; rename the server in the Pi config',\n })\n continue\n }\n const config: UnknownRecord = { serverName: server.name, transport: server.transport }\n if (server.transport === 'stdio') {\n config.command = server.command\n if (server.args !== undefined) config.args = server.args\n const env = convertValueMap(server.name, 'env', server.env, warnings)\n if (env !== undefined) config.env = env\n if (server.cwd !== undefined) config.cwd = server.cwd\n } else {\n config.url = server.url\n const headers = convertValueMap(server.name, 'headers', server.headers, warnings)\n if (headers !== undefined) config.headers = headers\n }\n entries.push({ id: `mcp-${server.name}`, name: '@deepseek-ai/dsh-mcp-client', config })\n }\n return { servers: [...servers.values()], entries, warnings, sources }\n}\n\nfunction yamlScalar(value: unknown, indent: string): string {\n if (typeof value === 'object' && value !== null && '__pi2dshJs' in (value as JsExpression)) {\n return `!!js ${(value as JsExpression).__pi2dshJs}`\n }\n if (typeof value === 'string') {\n return /^[A-Za-z0-9@._\\/:-]+$/u.test(value) ? value : JSON.stringify(value)\n }\n if (Array.isArray(value)) {\n if (value.length === 0) return '[]'\n return `\\n${value.map(item => `${indent} - ${yamlScalar(item, `${indent} `)}`).join('\\n')}`\n }\n if (typeof value === 'object' && value !== null) {\n const record = value as UnknownRecord\n const keys = Object.keys(record)\n if (keys.length === 0) return '{}'\n return `\\n${keys.map(key => `${indent} ${key}: ${yamlScalar(record[key], `${indent} `)}`).join('\\n')}`\n }\n return String(value)\n}\n\n/** Render the converted entries as a cordis.patch.yml `insert` block. */\nexport function renderMcpPatch(result: McpConversionResult): string {\n if (result.entries.length === 0) return '# no enabled MCP servers found in Pi configuration\\n'\n const lines: string[] = ['- insert:']\n for (const entry of result.entries) {\n lines.push(` - id: ${String(entry.id)}`)\n lines.push(` name: '@deepseek-ai/dsh-mcp-client'`)\n lines.push(` inject: [tools]`)\n lines.push(` config:${yamlScalar(entry.config, ' ')}`)\n }\n return `${lines.join('\\n')}\\n`\n}\n"],"mappings":"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"}
|