worclaude 2.10.3 → 2.10.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,34 @@ All notable changes to worclaude are documented in this file. Format loosely fol
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [2.10.5] — 2026-05-15
8
+
9
+ Patch release that finalizes the recurring `error_max_turns` failure mode in the daily `upstream-check` workflow. Previous attempts — #181's 25→40 turn-cap bump and #187's `RUNNER_TEMP` Read grant — both proved insufficient when today's run #35 (2026-05-15) hit 41 turns on 100 new items and Claude's turn use was non-deterministic across runs (18 turns one day, 41 the next on the same item count). This release replaces the "keep bumping the knob" approach with a four-part durable fix: bound the per-run work via a pre-check item cap, slim the prompt to a single classification pass, route Claude-step failures to a graceful manual-triage fallback issue (workflow stays green), and bump `--max-turns` to 80 as belt-and-braces. The cap surfaces critical-source items first so truncation only ever drops the low-priority community tail.
10
+
11
+ ### Fixed
12
+
13
+ - **upstream-check: cap items + slim prompt + fallback on max-turns** (PR #191) — fixes the recurring red-CI pattern on busy backlog days. Four coordinated changes: (1) `scripts/upstream-precheck.mjs` now caps surfaced items to `MAX_NEW_ITEMS` (default 40, env-overridable) after sorting by source tier (critical changelogs → engineering-blog → other → community, newest-first within tier); state advances for **all** new items so the truncated tail doesn't queue up forever. New GHA outputs `kept_count` + `truncated_count`. (2) `.github/workflows/upstream-check.yml` prompt rewritten as a single-pass classifier with inlined classification rules and the critical-source list — Claude no longer reads `docs/reference/upstream-automation.md` (which chained into 6+ per-item project-file Reads, each costing a turn); only the two input JSONs are Read. `--max-turns 40 → 80`. (3) `continue-on-error: true` on the Claude step + a new "Claude-error fallback issue" step that opens a `parse-error`-labeled triage issue containing the raw priority-sorted item list when the classifier fails; state advances on fallback success. (4) `docs/reference/upstream-automation.md` gains an "Inlined copies — keep in sync" callout pointing to the workflow prompt and precheck `SOURCE_TIER` map. Tests 999 → 1011 (+12 covering tier sort, date tie-break, cap behavior, no-cap edge cases, immutability, output contract, runPrecheck wiring, state-advance invariant, env-default fallback).
14
+
15
+ Release group: 1 PR (patch). v2.10.4 → v2.10.5.
16
+
17
+ ## [2.10.4] — 2026-05-14
18
+
19
+ Patch release fixing the silent failure mode of the daily `upstream-check` workflow. The Claude session writes precheck output to `RUNNER_TEMP` (an absolute path outside the workspace), but `.claude/settings.json` only granted `Read(*.json)` for workspace-relative paths. Claude was burning turns hitting permission walls — 6 denials per run in failed-run logs — and either timed out at `max_turns` (runs #31, #32) or emitted a parse-error envelope that auto-opened a tracking issue (#184). This release adds an explicit `Read(/home/runner/work/_temp/**)` grant, bumps `anthropics/claude-code-action` 11 patch versions to current, refreshes the README banner with new background art, and rolls up two weeks of routine Dependabot bumps.
20
+
21
+ ### Fixed
22
+
23
+ - **upstream-check: grant Claude Read on RUNNER_TEMP + bump claude-code-action to v1.0.122** (PR #187) — adds `Read(/home/runner/work/_temp/**)` to `.claude/settings.json` so the Claude action can read `new-items.json` / `feed-report.json` / `next-state.json` from `scripts/upstream-precheck.mjs:192-194`. Bumps the SHA pin from v1.0.111 → v1.0.122 to pick up upstream's own bug fixes. Together with the `--max-turns 40` cap from #181, this eliminates the failure mode that produced runs #31, #32, and parse-error issue #184. Issue #184 closed with a back-link to the fix.
24
+
25
+ ### Changed
26
+
27
+ - **Banner refresh + archive previous variant** (PR #188) — second refresh of the README banner; new right-side background art (sun-burst → blurred floral focal point) better matches the existing logo motif. Logo, wordmark, tagline, and 2048×682 dimensions unchanged → no README layout impact. Lossless-compressed with `oxipng -o 6 --strip safe` (974 KB raw → 818 KB final, also 34 KB smaller than the previous banner). Previous banner archived to `assets/old/banner2.png` per the convention established in #182.
28
+ - **gitignore `.mcp.json` and `docs/handoffs/`, ship `.mcp.example.json`** (PR #183) — MCP server config may carry tokens; tracking is now opt-in via the example file. Forward-looking session handoffs in `docs/handoffs/` are kept private to the working copy.
29
+ - **Banner refresh and add logo variants** (PR #182) — earlier asset refresh that established `assets/old/` as a tracked archive directory and added logo variants alongside the banner.
30
+ - **upstream-check: bump claude max-turns 25 → 40** (PR #181) — preemptive headroom; this was the partial mitigation that allowed run #33 to succeed before #187 fixed the actual root cause.
31
+ - ⚠ **No `Version bump:` declaration — under-documented:** dependabot PRs **#186** (`bump the minor-and-patch group with 2 updates`), **#185** (`bump the actions-minor-and-patch group with 3 updates` — included the v1.0.111 → v1.0.119 claude-code-action bump that #187 subsumed via the v1.0.122 resolution), **#180** (`bump the minor-and-patch group with 2 updates`), and **#179** (`bump anthropics/claude-code-action from 1.0.109 to 1.0.111`) were merged without `Version bump:` lines and treated as `none`.
32
+
33
+ Release group: 9 PRs (1 patch, 4 none, 4 missing declarations). v2.10.3 → v2.10.4.
34
+
7
35
  ## [2.10.3] — 2026-04-30
8
36
 
9
37
  Fixes a user-reported breakage where every arrow-selectable prompt across `worclaude init` / `upgrade` / `restore` / `delete` accepted typed text instead of arrow-key navigation. Root cause: PR #169 (v2.10.0) bumped `inquirer` 12 → 13 with no code changes, but inquirer 13 renamed its legacy `list` prompt type to `select` and ships a runner that silently falls back to `type: 'input'` (free-text) for unknown types — so every `type: 'list'` site degraded silently. The "Everything look right?" prompt looped because typed `y`/`yes` did not strictly equal the choice value `'yes'`. Renames all 20 sites, migrates 4 index-based defaults to value-based (inquirer 13's `select` matches by value, not index), aligns the CLAUDE.md tech-stack metadata that had drifted behind `package.json` for three deps (Inquirer / Ora / Commander), and closes the test-suite blind spot — the prior `vi.mock('inquirer')` setup never inspected `spec.type`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "worclaude",
3
- "version": "2.10.3",
3
+ "version": "2.10.5",
4
4
  "description": "The Workflow Layer for Claude Code — scaffold agents, commands, skills, hooks, and memory into any project",
5
5
  "type": "module",
6
6
  "bin": {