mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* Extract client SDK package * Polish SDK client identity defaults * Build client before dependent CI jobs * Restore daemon client server export * Extract protocol and client SDK packages * Fix provider override schema validation * Fix app test daemon client imports * Simplify workspace build targets * Fix CLI test server build bootstrap * Run SDK package tests in CI * Fix rebase package split drift * Restore lockfile registry metadata * Update SDK config test for prompt default * Move terminal stream router test to client package * Fix rebase drift for protocol imports * Fix SDK agent capability fixture * Restore legacy server client exports * Fix server export compatibility test * Advertise custom mode icon client capability * Remove server daemon-client exports * Format rebased mode control import * Fix rebase drift for protocol imports Files added by upstream PRs (#893, #1147, #1154) referenced the pre-split shared/ paths that this branch moves into @getpaseo/protocol. Redirect those imports to the protocol package so typecheck stays green after the rebase.
100 lines
4.0 KiB
JavaScript
100 lines
4.0 KiB
JavaScript
#!/usr/bin/env node
|
|
// Emit the set of files the daemon and CLI need at runtime, computed by
|
|
// static module-graph tracing (@vercel/nft) from the three entry points.
|
|
// Used by nix/package.nix's installPhase to materialize $out/lib/paseo
|
|
// with only the bytes the daemon actually loads — no Expo, RN, Metro,
|
|
// Electron, ML stacks, or other non-daemon workspace bloat.
|
|
//
|
|
// Output: newline-separated repo-relative file paths on stdout. The Nix
|
|
// installPhase copies each path to $out/lib/paseo/<path>, preserving the
|
|
// directory structure node's module resolution expects.
|
|
//
|
|
// Run from the repo root, after `npm run build:server`. Requires
|
|
// node_modules populated (the Nix build invokes this post-configHook).
|
|
|
|
import { nodeFileTrace } from "@vercel/nft";
|
|
import { glob } from "node:fs/promises";
|
|
import path from "node:path";
|
|
|
|
const REPO_ROOT = path.resolve(import.meta.dirname, "..");
|
|
|
|
// Three entry points. The terminal worker is forked into its own Node
|
|
// process and has its own require tree (node-pty, etc.) — nft does not
|
|
// follow fork boundaries, so it must be traced separately.
|
|
const entries = [
|
|
"packages/cli/dist/index.js",
|
|
"packages/server/dist/scripts/supervisor-entrypoint.js",
|
|
"packages/server/dist/server/terminal/terminal-worker-process.js",
|
|
];
|
|
|
|
// Files read at runtime via fs APIs rather than `require`. nft only
|
|
// traces the module graph; data files have to be listed explicitly.
|
|
const additionalInputs = [
|
|
// Shell integration scripts loaded by the terminal manager
|
|
"packages/server/dist/server/terminal/shell-integration/**",
|
|
// Silero VAD ONNX model (sherpa speech provider)
|
|
"packages/server/dist/server/server/speech/providers/local/sherpa/assets/silero_vad.onnx",
|
|
// Server runtime config files (read by path, not require)
|
|
"packages/server/.env.example",
|
|
// CLI shebang script wrapping dist/index.js
|
|
"packages/cli/bin/paseo",
|
|
// node-pty's compiled native addon. nft can't trace it because
|
|
// node-pty loads it via `require(path.join(__dirname, 'prebuilds/<plat>/pty.node'))`
|
|
// with a runtime-computed platform suffix. Pin to the host platform —
|
|
// the Nix derivation builds for one platform at a time and ships only
|
|
// its own binaries.
|
|
`node_modules/node-pty/prebuilds/${process.platform}-${process.arch}/**`,
|
|
];
|
|
|
|
// Trace.
|
|
const { fileList, warnings } = await nodeFileTrace(entries, {
|
|
base: REPO_ROOT,
|
|
// Tolerate the conditional / dynamic patterns we already audited:
|
|
// sherpa-onnx-${platform}-${arch} package resolution (sherpa is
|
|
// intentionally not built in the Nix sandbox; voice features degrade
|
|
// gracefully when unavailable), and a handful of test-only requires
|
|
// that get tree-shaken out by tsc.
|
|
ignore: [
|
|
// Cross-platform native packages for the sherpa speech runtime;
|
|
// unsupported in the Nix build, lazily loaded when present.
|
|
"sherpa-onnx-*/**",
|
|
// Platform-specific clipboard variants; only the host's variant
|
|
// is needed at runtime, and the package's index.js resolver picks
|
|
// the right one dynamically.
|
|
"@mariozechner/clipboard-*/**",
|
|
// node-fetch optional peer for non-UTF-8 charset decoding; not
|
|
// loaded in our usage.
|
|
"encoding/**",
|
|
// Tests are stripped during the daemon build; nft sometimes still
|
|
// tries to walk into them via index files. Belt and suspenders.
|
|
"**/*.test.js",
|
|
"**/*.e2e.test.js",
|
|
],
|
|
});
|
|
|
|
// Surface non-trivial trace warnings so the Nix build log captures them.
|
|
for (const w of warnings) {
|
|
// Drop the "Failed to resolve dependency" noise for things we
|
|
// explicitly ignore above.
|
|
const msg = w.message ?? String(w);
|
|
if (/sherpa-onnx-/.test(msg)) continue;
|
|
console.error("trace warning:", msg);
|
|
}
|
|
|
|
// Expand globs in additionalInputs.
|
|
const expanded = new Set(fileList);
|
|
for (const pattern of additionalInputs) {
|
|
if (pattern.includes("*")) {
|
|
for await (const file of glob(pattern, { cwd: REPO_ROOT })) {
|
|
expanded.add(file);
|
|
}
|
|
} else {
|
|
expanded.add(pattern);
|
|
}
|
|
}
|
|
|
|
// Emit sorted, deduplicated.
|
|
for (const p of [...expanded].sort()) {
|
|
console.log(p);
|
|
}
|