Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
### Fixes
- Stop stderr leakage from workflow policies (`require-push-before-stop`, `require-pr-before-stop`, `require-ci-green-before-stop`, etc.): git probes that are expected to sometimes fail no longer leak "fatal: Needed a single revision" or similar messages to the user's terminal (#132)
- `block-read-outside-cwd` now uses `CLAUDE_PROJECT_DIR` (the stable project root) instead of the live hook `cwd`, which drifts when Claude `cd`s into a subdirectory. Reads at the project root are no longer wrongly denied after a `cd`. Falls back to `ctx.session.cwd` when that variable is unset (#134)
- Shrink the npm package by excluding sharp from the Next.js standalone build (unused — image optimization is disabled) and stripping docs, tests, and sourcemaps from the bundled `node_modules`. Tarball drops from ~20 MB to under a few MB (#136)

## 0.0.6-beta.2 — 2026-04-21

Expand Down
6 changes: 6 additions & 0 deletions next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ const allowedDevOrigins = process.env.FAILPROOFAI_ALLOWED_DEV_ORIGINS
const nextConfig: NextConfig = {
...(allowedDevOrigins ? { allowedDevOrigins } : {}),
output: "standalone",
outputFileTracingExcludes: {
"*": [
"node_modules/@img/**",
"node_modules/sharp/**",
],
},
productionBrowserSourceMaps: false,
turbopack: {
root: __dirname,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"predev": "bun run build:cli && bun link",
"dev": "FAILPROOFAI_TELEMETRY_DISABLED=1 bun scripts/dev.ts --port 8020",
"build:cli": "bun build --target=node --format=esm --outfile=dist/cli.mjs bin/failproofai.mjs --external posthog-node && node -e \"const fs=require('fs');const c=fs.readFileSync('dist/cli.mjs','utf8');fs.writeFileSync('dist/cli.mjs',c.replace('#!/usr/bin/env bun','#!/usr/bin/env node').replace('// @bun\\n',''))\"",
"build": "bun build --target=node --format=cjs --outfile=dist/index.js src/index.ts && bun run build:cli && bun --bun next build && node -e \"const {cpSync}=require('fs');cpSync('.next/static','.next/standalone/.next/static',{recursive:true});\"",
"build": "bun build --target=node --format=cjs --outfile=dist/index.js src/index.ts && bun run build:cli && bun --bun next build && node -e \"const {cpSync}=require('fs');cpSync('.next/static','.next/standalone/.next/static',{recursive:true});\" && node scripts/prune-standalone.mjs",
"prestart": "bun run build:cli && bun link",
"start": "FAILPROOFAI_TELEMETRY_DISABLED=1 bun scripts/start.ts",
"test": "vitest",
Expand Down
128 changes: 128 additions & 0 deletions scripts/prune-standalone.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
#!/usr/bin/env node
// Prune .next/standalone to shrink the published npm tarball.
// Safe because (a) images.unoptimized: true in next.config.ts, so sharp never loads,
// and (b) we only touch .next/standalone/node_modules — server.js and app code untouched.

import { readdirSync, rmSync, statSync, unlinkSync } from "node:fs";
import { dirname, join, resolve } from "node:path";
import { fileURLToPath } from "node:url";

const __dirname = dirname(fileURLToPath(import.meta.url));
const ROOT = resolve(__dirname, "..");
const STANDALONE = join(ROOT, ".next", "standalone");
const NM = join(STANDALONE, "node_modules");

function exists(p) {
try { statSync(p); return true; } catch { return false; }
}

function measure(dir) {
let bytes = 0, files = 0;
function walk(p) {
let entries;
try { entries = readdirSync(p, { withFileTypes: true }); } catch { return; }
for (const e of entries) {
const child = join(p, e.name);
if (e.isDirectory()) walk(child);
else if (e.isFile()) { bytes += statSync(child).size; files += 1; }
}
}
walk(dir);
return { bytes, files };
}

const JUNK_DIRS = new Set([
"test", "tests", "__tests__",
"doc", "docs",
"example", "examples",
".github", ".vscode", ".idea",
]);

const JUNK_FILE_BASENAMES = new Set([
".npmignore", ".gitignore", ".gitattributes",
".eslintrc", ".eslintrc.js", ".eslintrc.json", ".eslintrc.yml",
".prettierrc", ".prettierrc.js", ".prettierrc.json",
".editorconfig", ".travis.yml", ".nycrc",
"AUTHORS", "CONTRIBUTORS", "HISTORY", "HISTORY.md",
"CHANGELOG", "CHANGELOG.md", "CHANGES", "CHANGES.md",
]);

function isJunkFile(name) {
const lower = name.toLowerCase();
if (JUNK_FILE_BASENAMES.has(name) || JUNK_FILE_BASENAMES.has(lower)) return true;
if (lower.endsWith(".md") || lower.endsWith(".markdown")) return true;
if (lower.endsWith(".map")) return true;
if (lower.endsWith(".ts.map")) return true;
return false;
}

function prune(dir) {
let entries;
try { entries = readdirSync(dir, { withFileTypes: true }); } catch { return; }
for (const e of entries) {
const p = join(dir, e.name);
if (e.isDirectory()) {
if (JUNK_DIRS.has(e.name)) {
rmSync(p, { recursive: true, force: true });
continue;
}
prune(p);
} else if (e.isFile()) {
if (isJunkFile(e.name)) {
try { unlinkSync(p); } catch { /* ignore */ }
}
}
}
}

if (!exists(STANDALONE)) {
console.error(`[prune-standalone] ${STANDALONE} does not exist — did you run \`next build\`?`);
process.exit(1);
}

const before = measure(STANDALONE);

// 1. Drop sharp — image optimization is disabled globally (next.config.ts).
for (const pkg of ["@img", "sharp"]) {
rmSync(join(NM, pkg), { recursive: true, force: true });
}

// 2. Strip docs / tests / sourcemaps from remaining node_modules.
if (exists(NM)) prune(NM);

// 3. Remove over-traced project artifacts from the standalone root.
// Next.js NFT pulls in too much (tracked warning: "whole project was traced
// unintentionally"). The Next server only actually needs server.js, .next/,
// node_modules/, package.json, public/, and the compiled app code — the rest
// is source/dev/docs that the runtime never reads.
const STANDALONE_ROOT_PRUNE = [
// Doc / dev directories
"docs", "examples", "design-docs", "__tests__",
".claude", ".failproofai", ".github", ".vscode", ".idea",
// Failproofai CLI artifacts — the dashboard never loads these
"bin", "dist", "scripts", "src",
];
const STANDALONE_ROOT_PRUNE_FILES = [
// Top-level markdown / licenses / docs
"README.md", "CHANGELOG.md", "CLAUDE.md", "AGENTS.md", "CONTRIBUTING.md",
"LICENSE", "Dockerfile.docs",
// Build / lint / test config (applied at build time, not runtime)
"tsconfig.json", "eslint.config.mjs", "tailwind.config.ts", "components.json",
"vitest.config.mts", "vitest.config.e2e.mts",
// Lockfiles
"bun.lock", "bun.lockb", "package-lock.json", "yarn.lock",
];
for (const d of STANDALONE_ROOT_PRUNE) {
rmSync(join(STANDALONE, d), { recursive: true, force: true });
}
for (const f of STANDALONE_ROOT_PRUNE_FILES) {
try { unlinkSync(join(STANDALONE, f)); } catch { /* ignore */ }
}

const after = measure(STANDALONE);
const mb = (b) => (b / (1024 * 1024)).toFixed(2);
console.log(
`[prune-standalone] ${before.files} files / ${mb(before.bytes)} MB -> ` +
`${after.files} files / ${mb(after.bytes)} MB ` +
`(saved ${before.files - after.files} files / ${mb(before.bytes - after.bytes)} MB)`
);