fix(office-hours): unify profile paths on developer-profile.json#1790
fix(office-hours): unify profile paths on developer-profile.json#1790NikhileshNanduri wants to merge 1 commit into
Conversation
…rytan#1677) The gbrain artifact glob and Phase 6 reader both still pointed to the legacy builder-profile.jsonl. After migration that file gets archived, so both calls silently produced nothing on fresh-$HOME installs. - Artifact glob: builder-profile.jsonl → developer-profile.json - Phase 6 reader: gstack-builder-profile shim → gstack-developer-profile --read - Regenerate office-hours/SKILL.md Writer fix was in v1.44.1.0 (garrytan#1671); this closes the remaining reader/artifact half. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
One stale-premise note from current The remaining real behavior change here is the gbrain artifact source: Also, GitHub reports this branch |
Summary
Two call sites in
/office-hoursstill referenced the legacybuilder-profile.jsonlpath after the v1.0.0.0 migration. That file gets archived on first read, so on fresh-$HOMEinstalls both calls silently produced nothing.kind: filesystem, glob) — changed from~/.gstack/builder-profile.jsonlto~/.gstack/developer-profile.json; removedtail: 1(not JSONL).gstack-builder-profile(legacy shim) togstack-developer-profile --read(direct). Behavior is identical; removes the indirection layer.The writer side was already fixed in v1.44.1.0 (PR #1682, fix #1671). This PR closes the remaining reader/artifact half.
Closes #1677.
Test plan
bun test test/skill-coverage-floor.test.tspasses (315 assertions)bun testfull free suite passes🤖 Generated with Claude Code