mirror of
https://github.com/garrytan/gbrain.git
synced 2026-07-30 19:49:14 +00:00
Master landed significant work since this branch was cut (v0.15.x → v0.16.x →
v0.17.0 gbrain dream + runCycle → v0.18.0 multi-source brains → v0.18.1 RLS
hardening). Bumped this branch's version from the claimed 0.18.0 to 0.19.0
because master already owns 0.18.x.
Conflicts resolved:
- VERSION: 0.19.0 (was 0.18.0 on HEAD vs 0.18.1 on master)
- package.json: 0.19.0, kept all 11 eval-facing exports, merged master's
typescript devDep + postinstall script + test script (typecheck added)
- src/core/types.ts: union of both PageType additions. Master had added
`meeting | note`; this branch added `email | slack | calendar-event`
for inbox/chat/calendar ingest. Final enum carries all five.
- CHANGELOG.md: renumbered the BrainBench-extraction entry to 0.19.0 and
placed it above master's 0.18.1 RLS entry. Tweaked copy ("In v0.17 it
lived inside this repo" → "Previously it lived inside this repo") to
stop implying a specific version that never shipped.
- CLAUDE.md: adjusted "BrainBench in a sibling repo" heading from
(v0.18+) → (v0.19+).
- docs/benchmarks/2026-04-18-minions-vs-openclaw-production.md:
resolved modify-vs-delete conflict in favor of delete (the extraction).
- scripts/llms-config.ts: dropped the docs/benchmarks/ entry (directory
no longer exists here; lives in gbrain-evals).
- llms.txt / llms-full.txt: regenerated after the config change.
- bun.lock: accepted master's (master already dropped pdf-parse as a
drive-by; aligned with our removal).
Tests: 2094 pass, 236 skip, 18 fail. Spot-checked failures — build-llms,
dream, orphans tests all pass in isolation. Failures reproduce only under
full-suite parallel load and are pre-existing master flakiness (matches the
graph-quality flake noted in the earlier summary). Not merge-introduced.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
64 lines
2.3 KiB
Bash
Executable File
64 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# CI guard: fail if any new code emits \r-progress to stdout.
|
|
#
|
|
# Since v0.14.2, bulk-action progress lives on stderr via the shared
|
|
# src/core/progress.ts reporter. \r-rewriting on stdout breaks every
|
|
# piped-output scenario: agents that capture stdout for structured
|
|
# results see progress garbage mixed with the data, and CI logs show
|
|
# a single line per command because everything after the last \r
|
|
# is truncated by the terminal emulator when played back.
|
|
#
|
|
# This script greps for the anti-pattern. Legitimate uses of \r inside
|
|
# string literals (e.g. Windows line-ending normalization, regex
|
|
# patterns) are expected to contain \r without being preceded by
|
|
# `process.stdout.write`. We match the full write-call form only.
|
|
#
|
|
# Usage: scripts/check-progress-to-stdout.sh
|
|
# Exit: 0 when clean, 1 when a banned pattern is found.
|
|
|
|
set -euo pipefail
|
|
|
|
ROOT="$(git rev-parse --show-toplevel 2>/dev/null || pwd)"
|
|
cd "$ROOT"
|
|
|
|
# The banned pattern: process.stdout.write('\r... or process.stdout.write("\r...
|
|
# Greedy quote character class so both quote styles match.
|
|
PATTERN="process\.stdout\.write\([\`'\"]\\\\r"
|
|
|
|
# Files allowed to use this pattern historically. Empty allowlist — the point
|
|
# of v0.14.2 was to remove every one of them. Add entries only if you really
|
|
# need a \r on stdout (if so, add the rationale as a comment at the call site
|
|
# and list the file here).
|
|
ALLOWLIST=()
|
|
|
|
matches=""
|
|
if command -v rg >/dev/null 2>&1; then
|
|
matches="$(rg -n --no-heading "$PATTERN" src/ 2>/dev/null || true)"
|
|
else
|
|
matches="$(grep -rEn "$PATTERN" src/ 2>/dev/null || true)"
|
|
fi
|
|
|
|
if [ -n "$matches" ]; then
|
|
# Filter out allowlisted files.
|
|
filtered="$matches"
|
|
for f in "${ALLOWLIST[@]:-}"; do
|
|
[ -z "$f" ] && continue
|
|
filtered="$(echo "$filtered" | grep -v "^${f}:" || true)"
|
|
done
|
|
|
|
if [ -n "$filtered" ]; then
|
|
echo "ERROR: found process.stdout.write('\\r…') pattern(s) in src/:"
|
|
echo
|
|
echo "$filtered"
|
|
echo
|
|
echo "Bulk-action progress must go through src/core/progress.ts"
|
|
echo "(writes to stderr, handles TTY vs non-TTY, honors --quiet /"
|
|
echo " --progress-json / --progress-interval). If you genuinely"
|
|
echo "need a \\r on stdout, add the file to the ALLOWLIST at the"
|
|
echo "top of this script and explain why at the call site."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
echo "check-progress-to-stdout: OK (no banned stdout \\r patterns)"
|