Files

17 lines
377 B
JSON
Raw Permalink Normal View History

2026-03-13 23:21:55 +00:00
{
"name": "@workspace/scripts",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"hello": "tsx ./src/hello.ts",
"timmy-watch": "tsx ./src/timmy-watch.ts",
feat(scripts): timmy-report script + reviewer context package — Task #41 Delivers two new outputs in reports/ and one new script in scripts/src/: ## scripts/src/timmy-report.ts - Runnable tsx script (pnpm --filter @workspace/scripts timmy-report) - Uses `import.meta.url` + resolve() for correct workspace-root path detection (avoids CWD ambiguity when run via pnpm filter from the scripts/ subdirectory) - Collects git data via child_process.execSync: shortlog, full log --oneline, per-author --stat samples for alexpaynex and Replit Agent - Reads key source file excerpts (trust.ts, event-bus.ts, jobs.ts, moderation.ts, world-state.ts) truncated at 120 lines each - Calls claude-haiku-4-5 via AI_INTEGRATIONS_ANTHROPIC_BASE_URL proxy with the rubric dimensions as a structured prompt and Timmy's first-person persona - 90-second AbortController fetch timeout; falls back to a stub report if no Anthropic credentials are present (graceful degradation) - Writes reports/timmy-report.md and reports/context.md to workspace root ## reports/context.md (813 lines) - Full git shortlog, full git log --oneline, per-author stat samples - Five key source file excerpts for external reviewers - Reviewer instructions at the top for Perplexity / Kimi Code - Architectural context notes (stub modes, patterns, job state machine, trust tiers) ## reports/timmy-report.md (110 lines, Claude-generated) - Three-part rubric evaluation in Timmy's first-person voice - alexpaynex: 4.2 composite → B; Replit Agent: 3.8 composite → B- - Orchestrator: 3.6 composite → B-; top-3 improvements: pre-code design review, shared AI client factory, unified config service - Independently substantive — diverges meaningfully from the Replit Agent report ## Wiring - Added "timmy-report" npm script to scripts/package.json - TypeScript typecheck passes (tsc --noEmit) ## Deviations - Used claude-haiku-4-5 instead of claude-sonnet-4-6 for speed (Haiku runs in ~30s vs >90s timeout for Sonnet on this prompt size). Quality is acceptable for the task.
2026-03-19 23:46:35 +00:00
"timmy-report": "tsx ./src/timmy-report.ts",
2026-03-13 23:21:55 +00:00
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@types/node": "catalog:",
"tsx": "catalog:"
}
}