mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
* feat(skills): add ce-plan — GitNexus+PDG implementation-planning skill Adds .claude/skills/ce-plan: a planning-only skill that builds implementation-ready plans from GitNexus graph navigation (query/context/ impact/trace), bounded statement-level PDG slices (pdg_query, impact mode:pdg, explain), and targeted source verification, with a context ledger to prevent repeated reads and a machine-readable implementation context pack (stable contract for a future ce-implement). Whitelisted in .gitignore and registered in AGENTS.md and CLAUDE.md outside the auto-managed gitnexus block. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(skills): apply ce-plan validation findings (tool contract, consistency, conventions) Tool contract: impact mode:'pdg' shape now includes the schema-required direction param; CDG branch sense documented as the result 'label' field (reason is cypher/raw-edge only); explain caveats corrected to its real false-negative classes (cross-function TAINT_PATH is modeled). Consistency: PDG slice homed in working memory (ledger keeps one-liners); depth knob defined and category-overrides-baseline ordering stated; call_depth (consumed by nothing) and content-hash bookkeeping dropped; Never section folded into Hard rules; Phase 3 deduplicated to a pointer; allowed-repeat escalations defined; budget/discard accounting clarified; verification-commands gathering added to Phase 4; open_questions added to the context pack. From scenario runs: plans now pin the verified-at HEAD commit and index freshness in a header, tag claims [verified]/[graph]/[inferred]/[assumed], quote load-bearing tool output, prefer pre-hook-carrying npm scripts, and support an out:<path> destination override; output path defined as the Phase 1 target repo root. Conventions: AGENTS.md 1.9.0 / CLAUDE.md 1.4.0 changelog rows + metadata bumps; future ce-implement qualified as future. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): rename ce-plan → gitnexus-plan; add cross-CLI (Codex) entrypoints Renames the skill dir, frontmatter, output filename convention, plan H1 (GitNexus Engineering Plan), the future executor handle (gitnexus-implement), the .gitignore whitelist entry, and all AGENTS.md/CLAUDE.md references. Follows the pr-swarm-review cross-CLI pattern: SKILL.md is the canonical CLI-neutral spec, AGENTS.md § Engineering planning is the Codex/any-agent entrypoint, and the README documents the optional user-level ~/.codex/prompts/gitnexus-plan.md slash command plus an invocation matrix. Skill prose de-branded from Claude Code (agent-neutral verification layer). Also fixes two post-review README contradictions: the anti-reread claim now names the ledger's allowed escalations, and 'read-only by contract' is now 'planning-only' (the skill writes exactly one repo file — the plan); the scope-creep rule and template §12 now agree on where deferred follow-ups land. Drops the stale plugin-collision limitation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(skills): document Codex user-level install path for gitnexus-plan Codex discovers SKILL.md skills from ~/.agents/skills (same path the other gitnexus-* skills install to); README now documents the cp install plus the optional ~/.codex/prompts slash-command file, with the prompt body preferring the repo copy and falling back to the user-level install. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): gitnexus-plan freshness gate + active PDG-layer refresh Freshness is now a Phase 1 gate, not advisory: under the default freshness:strict, a stale index is refreshed once per planning session via node .gitnexus/run.cjs analyze --index-only (appending --pdg when the task will reach the PDG phase), then the context resource is re-read. A missing PDG layer likewise triggers the one permitted --index-only --pdg refresh and re-probe instead of a passive recommendation. freshness:accept (or a failed/impractical refresh) preserves the old behavior: plan on the stale graph, source-weighted, labelled in the plan header. --index-only is the load-bearing flag choice — it suppresses all file generation, so the planning-only contract holds (only the .gitnexus store changes). Ledger gains an index_refresh record; plan header states fresh / refreshed / refresh-skipped-with-reason. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): gitnexus-plan runner build check before freshness refresh When the target repo builds the analyzer from its own source (bin → dist/ mapping, as gitnexus/ does), the Phase 1 freshness gate now verifies dist/ is current before running the analyze refresh — rebuilding via the package's build script when any analyzer source file is newer than the built entrypoint — and prefers that freshly built CLI. Otherwise a stale dist re-indexes with outdated extraction logic and the 'fresh' index lies. Rebuilds are recorded in the ledger's index_refresh; the PDG-phase refresh inherits the same check. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): add gitnexus-work executor and gitnexus-lfg pipeline gitnexus-work executes a gitnexus-plan as verified atomic commits: consumes the §11 implementation_context pack, drift-checks the plan's evidence pin against HEAD, re-verifies assumptions before relying on them, runs impact before every symbol edit and detect_changes before every commit (repo mandates), builds tests from the plan's scenarios, and routes structural drift back to gitnexus-plan Deepen mode instead of coding around it. gitnexus-lfg is a thin orchestrator: gitnexus-plan → blocking user gate (deepen / proceed / stop, deepen loops allowed) → gitnexus-work → review via the existing gitnexus-pr-review skill (open PR, else branch diff vs default). One bounded fix cycle for review findings; never pushes or opens a PR on its own. gitnexus-plan gains a Deepen mode (re-run freshness gate, escalate to depth:deep, re-verify graph/inferred/assumed claims toward verified, rewrite the same file); its 'future gitnexus-implement' placeholder is retired in favor of gitnexus-work. Registered via .gitignore whitelists, AGENTS.md 1.10.0 (section renamed to Engineering planning & execution), CLAUDE.md 1.5.0. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(skills): apply cross-skill review findings to the gitnexus skill family Two P1s: gitnexus-plan Deepen mode now re-anchors before re-pinning (diffs the old evidence pin over every [verified]-claim file and re-reads or downgrades before the header moves — moving the pin without this laundered stale claims as verified); the index-refresh budget is stated once in Phase 1 (one --index-only refresh plus at most one Phase 3 --pdg upgrade per session, Deepen = its own session) with ledger and pdg-slice deferring to it. Contract fixes: gitnexus-work's drift check now covers every file the pack cites (not just files_to_modify) and parses the full pack incl. primary/related symbols and acceptance_criteria (walked in Phase 4 alongside §13); a pre-completed check skips §7 steps already landed and Deepen gains a reconcile-execution-state step, closing the mid-execution route-back loop; pack assumptions must name what to check and how. lfg: Lane 4 passes the merge-base to detect_changes compare (two-dot diff misattributes upstream commits when default advanced), branch-diff is the stated normal case, oversized review findings route to the plan gate instead of overflowing direct mode, the one-fix-cycle cap is explicit on re-run, and headless runs end at the plan gate with the plan as deliverable. work: blank mode narrowed to *gitnexus-plan*.md with a re-execution guard, direct-mode discipline spelled out, branch meaningfulness defined against the plan slug, and the plan document is committed as the branch's docs commit (review diff includes it). Planning-only contract now names the dist/ rebuild as the second permitted state change; Phase 5.1 names the four claim tags; stale AGENTS.md anchors fixed. Known latent issue left untouched: gitnexus/gitnexus-pr-review pairs a three-dot example with a two-dot detect_changes compare — that skill is also shipped by the plugin, so fixing it here would drift the copies; lfg compensates by passing the merge-base. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): ship the engineering skill family with the gitnexus package npm i -g gitnexus users now get gitnexus-plan / gitnexus-work / gitnexus-lfg: the three skills are added to gitnexus/skills/ in directory form (SKILL.md + references/), which installSkillsTo already enumerates dynamically and copies recursively to every editor target (~/.agents/skills for Codex, Cursor, OpenCode, Qoder, ...) on gitnexus setup — uninstall enumerates the same root, so removal stays clean. The Claude Code plugin channel (gitnexus-claude-plugin/skills/) carries the same copies plus the standard per-skill mcp.json. Global-install support in the skill text: gitnexus-plan Phase 1 now resolves the analyzer runner explicitly — node .gitnexus/run.cjs analyze when the project has a runner, else gitnexus analyze (installed CLI), else npx gitnexus analyze — and all analyze mentions route through it, satisfying the skills-steering policy (#1939/#1945) which sweeps the plugin copies. New drift guard test/unit/shipped-skills-sync.test.ts asserts the npm and plugin copies stay byte-identical to the canonical .claude/skills/ family (plugin = canonical + mcp.json), same discipline as run.cjs ↔ resolve-invocation.ts. skills-steering + shipped-skills-sync: 11/11 green. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(eval): workflow_bench — measure the skill workflow's token savings Benchmarks gitnexus-plan → gitnexus-work against a baseline agent (--disallowedTools Skill) on identical tasks, in fresh detached worktrees, using real headless Claude Code sessions; every number comes from the CLI's --output-format json usage report (field names validated against a live 2.1.207 session). Reports per-arm medians (input/cache/output tokens, cost, wall time, turns), a savings row, and resolve status from a per-task verify command — savings on failed tasks are flagged, not celebrated. Per-task setup hook prepares fresh worktrees (deps); --permission-mode bypassPermissions (default) lets sessions run unattended in the throwaway trees. Free-model support: --base-url/--auth-token/--model route headless sessions through any Anthropic-compatible endpoint; free-model.litellm.yaml is a ready litellm-proxy template for OpenRouter :free variants or local Ollama, so benchmarking burns no paid tokens (README documents rate limits and the small-model skill-following caveat). Harness validated end-to-end with a stub CLI (worktree lifecycle, both arms, plan→work chaining, verify, aggregation, report) and 4 pytest units for the pure aggregation/savings/report helpers. AGENTS.md 1.11.0. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(eval): record first workflow_bench calibration run Trivial-task calibration (add -V alias): both arms resolved; workflow arm ~4.3x baseline cost — the documented overhead-dominated regime, recorded so the regime boundary is empirical rather than asserted. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(eval): workflow_bench scenario matrix — arm variants, task classes, churn Ground-base measurement across scenarios: tasks.scenarios.yaml spans four labeled classes (trivial → investigation-bug → investigation-feature → cross-module) with deterministic verifies (prescribed test files). New arms: workflow_direct (gitnexus-work direct mode — the middle option that locates the routing boundary lfg's gate and work's triage encode) and baseline_nomcp (no skills AND no graph tools — separates workflow-discipline value from GitNexus-tool value; off by default). Records now carry task class and diff churn (files/+ins/−del vs the starting commit) as an over-engineering proxy; the report renders a class column and per-arm savings rows vs baseline. 5 pytest units + stub-CLI e2e of the full three-arm matrix. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(eval): record workflow_bench ground base; fix churn measurement bias Ground base (3 classes x 3 arms, n=1/cell): every arm resolved every task — pass/fail quality saturates at this difficulty, making the comparison pure cost. Full plan→work never amortized its ~$9-11 fixed cost on tasks a baseline finishes in ≤35 turns (−211% to −333% cost); workflow_direct sits near baseline (−15% to −55%, once faster wall) with more test coverage. Routing implication recorded: direct mode/plain agent below this scale, full workflow for cross-module / multi-session / plan-as-deliverable work. The cross-module cell and multi-run variance are the next measurements. Churn fix: git add --intent-to-add -A before diffing (arms that never commit no longer undercount new files) and :(exclude)docs/plans (the committed plan doc no longer inflates workflow churn); this run's churn numbers predate the fix and are omitted from the recorded table. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * perf(skills): cost-optimize the workflow from measured ground base Every optimization targets a measured fixed-cost component (eval/workflow_bench ground base: workflow arm −211% to −333% vs baseline, all tasks resolved): - Plan form is category-priced: compact form (core sections w/ § anchors preserved, ≤80 lines excl. pack, mini-pack subset of the context pack) for narrow/default categories; the full 13 sections only for deep work (refactor/security/performance/concurrency/architecture). A compact plan outgrowing its cap reclassifies to full rather than overflowing. - Freshness gate is category-priced: compact categories default to accept (source-weighted, refresh only when a graph claim becomes load-bearing); strict stays the default for full-plan categories — the rebuild+re-index was the largest single fixed cost. - Turn economy: per-category tool-call budgets (~10 to ~45; architecture uncapped); budget exhaustion routes open questions to §12 instead of more digging. - gitnexus-work fast path: HEAD == evidence pin → skip all citation re-reading (the pin's entire point); mini-pack fields tolerated. - lfg Lane 1 boundary triage: tasks below the measured ~35-turn boundary get offered gitnexus-work direct mode before the plan lane is spent. Copies re-synced (npm skills/, plugin, ~/.agents); steering + sync guards green. Re-measurement of the workflow arm follows to verify the numbers actually improve. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(eval): record optimization re-measurement — inv-bug workflow cell −20% cost Same task, same conditions, post-830a0459 skills: $14.56→$11.70 (−20%), 83→72 turns, cache_read −24%; verified in-transcript that the compact form, turn budget, and skipped rebuild/re-index all fired. Wall +15% from a work- session test-debugging tail (n=1 variance). Regime unchanged (~3.5x baseline on this class) — routing rule stands. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(eval): per-arm clone isolation — worktree ref-namespace leak contaminated an arm The cross-module workflow_direct cell reported an impossible 28-turn solve with churn byte-identical to the workflow arm: git worktree add shares the repo's ref namespace, so the workflow arm's slug branch (created by gitnexus-work Phase 2) survived worktree removal and the direct arm found and adopted the completed work. Arms now get isolated git clone --shared copies (object store via alternates, refs clone-local — agent branches and stashes die with the clone; origin/<ref> fallback for non-default refs). Leaked branch deleted; baseline arm verified clean (0 branch references in its transcript); cell marked invalidated pending re-run. Records the valid cross-module cells: workflow $18.32 vs baseline $18.03 (premium −1.6%, vs −211%..−333% on smaller classes) — fixed costs amortize at this scale, with a less destructive diff and a plan artifact as bonus; resolve rate still tied. Churn fingerprinting is what caught the contamination — noted in the README as an integrity check. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(eval): complete cross-module cell — direct mode wins 47% cost / 56% wall Clean clone-isolated re-run: workflow_direct resolved the hardest class at $9.53/52 turns/15m vs $18.03/98/34m baseline and $18.32/107/37m full workflow. The measured story across all four classes: the execution discipline (gitnexus-work) is the consistent sweet spot and delivers real token savings on hard tasks; the planning pass buys its artifact, not same-session savings. Resolve rate tied everywhere (n=1/cell caveat). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(eval): add trajectory-gated skill evolution (#2431) - Pair prompt candidates with incumbent workflow arms - Gate promotions on pinned-model quality and efficiency - Expire router evidence and document its lifecycle * fix(eval): allow pr-review skill candidates * feat(skills): rename and generalize GitNexus review * feat(eval): external-comparator and review arms for workflow_bench - ce_workflow / ce_workflow_direct: compound-engineering ce-plan/ce-work arms prompted with the same structure as the gitnexus arms - review / ce_review: gitnexus-review vs ce-code-review on an identical diff applied by the task's setup - plan handoff is snapshot-based: committed example plans in docs/plans/ tie on clone mtimes and broke the name-glob pick (executed a stale plan) - verify output tail is recorded per run and the final working-tree patch is kept, so failed rows are diagnosable after the clone is destroyed Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(skills,eval): address #2431 review — data-safe rename migration, fail-closed bench evidence - setup: never delete a legacy renamed skill dir — the installer cannot prove ownership (users customize or hand-write skills under these names); warn with the path instead, and the test now asserts survival - workflow_bench: fail closed when a session's --output-format json report is empty, malformed, or missing usage fields — an exit-0 shell with no parseable usage no longer counts as measured evidence (5 parametrized regression tests) - workflow_bench: document the trust model prominently (task setup/verify are shell-executed, sessions run bypassPermissions with the parent env, candidate overlays are prompt injection surface) in README + docstring - free-model.litellm.yaml: master_key from LITELLM_MASTER_KEY env instead of a static token; loopback-binding warning - ci: run the eval workflow_bench pytest suite on ubuntu (pytest+pyyaml only — no full eval stack) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(eval): demand observed foreground verification in headless work-arm prompts In a headless -p session there is no later turn: a work arm backgrounded its slow test run, scheduled wakeups that can never fire, and reported done while two of its tests failed. All four work-arm prompts (both skill families, symmetric) now require verification output to be observed inside the session. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): ask plan depth up front instead of offering deepen afterwards gitnexus-plan Phase 0 now asks one blocking question in interactive sessions — quick / standard / deep, mapped onto the existing depth/form/ freshness knobs — when the invocation carries no explicit depth signal. Explicit knobs and headless runs skip the question (category posture unchanged, so benchmarks and automation behave as before). gitnexus-lfg's plan gate slims to proceed/stop: depth was already the user's up-front choice, so deepening is no longer offered by default — an explicit deepen request at the gate and executor route-backs still run Deepen mode, which remains the mechanism for strengthening an existing plan document. All shipped copies resynced (npm skills/, Claude plugin); AGENTS.md 1.13.0 and CLAUDE.md 1.7.0 pointers updated, including the analyzer's regenerated index-stats block at this branch's head. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): taint pass, expert lenses, and post-work index refresh gitnexus-review gains a PDG-backed taint-and-dependence pass (explain + pdg_query, --pdg folded into the stale refresh on trust-boundary diffs) and an Expert lenses section: domain reviewers derived from the graph's clusters plus four cross-cutting lenses (architectural fit, language conformance per the repo's own contract, Definition of Done, simplicity), dispatched once after the evidence-gathering steps and scaled to the diff. gitnexus-work Phase 4 now refreshes the knowledge graph after the DoD walk via the resolved-runner ladder with analyze --index-only, so the lfg review lane and later sessions query the finished work without dirtying the tree. lfg's threshold-governance paragraph moves to its README; eval citations are tagged as measured in the GitNexus repo. All shipped copies re-synced. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(cli): remove legacy gitnexus-pr-review on uninstall; cover the rename migration uninstall's removal set now includes LEGACY_SKILL_DIR_NAMES derived from RENAMED_SKILL_DIRS, so a pre-rename install is cleaned up instead of orphaned. The rename warning gains behavioral coverage (fires with a legacy dir present, silent without), and shipped-skills-sync asserts legacy names stay absent from every shipped tree. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(eval): metric provenance, error-kind rows, skill-invocation verification, gate noise floor The promotion gate defaults to cost_usd (the only metric that includes subagent spend); token metrics carry an explicit main-loop-only warning in the report and promotion.json. Rows are classified by error_kind (session-error / verify-failed / infra-error), excluded from efficiency medians, and the gate requires equal valid-run counts. Each session's transcript is scanned for the expected Skill invocation and fails closed on a verified miss; a one-run resolution edge no longer promotes (noise floor). Per-run timeouts and setup failures record an infra-error row instead of aborting the sweep. Overlays touching skills no candidate arm exercises are rejected up front. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs: fix skill routing paths, version headers, and skill rosters Routing tables point at the tracked direct skill paths (matching the post-#2434 generator output), AGENTS.md/CLAUDE.md headers match their latest changelog rows, the 1.12.0 row describes what the migration actually does, package/cursor READMEs list the full shipped skill roster, and the swarm READMEs describe /gitnexus-review's expert lenses instead of calling it single-agent. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * ci: drift-guard workflow for skill copies; pin eval pip deps; track docs/plans ci.yml ignores '**.md', so an md-only skill edit would merge without the shipped-skills-sync test running — skill-sync.yml triggers exactly on the guarded trees. The eval job's pip install is version-pinned, and docs/plans/ is unignored so gitnexus-plan output can be committed. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(ci): keep the runner-invocation literal in gitnexus-review; add concurrency block to skill-sync skills-steering requires skills with a stale-index hint to carry the exact 'node .gitnexus/run.cjs analyze' form — restore it with the fallback ladder as a parenthetical instead of replacing it. skill-sync.yml gains the top-level concurrency block the workflow-convention check enforces. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(skills): token-economy guidance for expert lenses Merge lenses that ground in the same material into one reviewer, and use cheaper model/effort tiers for mechanical lenses where the harness offers them, reserving the strongest engine for adversarial judgment. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * test(eval): isolate transcript home on Windows Ensure workflow_bench transcript tests set USERPROFILE alongside HOME so Path.home() resolves to the temporary test home on Windows. * docs(skills): fold PR #2522 execution learnings into review/work/plan Eight incident-backed hardenings from running the full skill cycle (review -> plan -> work, 28-finding fix series) on PR #2522: gitnexus-review: - Expert lenses execute the code under review on candidate failing shapes (empirical probe outranks source reading — every HIGH the language lenses found came from a probe, not a read). - Step 7 re-runs the exact CI check for refreshed baselines/fingerprints (a stale committed artifact is invisible in the diff; caught a red benchmarks arm). - Step 8 treats version/invalidation constants as review surface (INCREMENTAL_SCHEMA_VERSION class recurred verbatim from #2494). gitnexus-work: - Step 4 proves regression tests discriminate against the pre-fix tree. - Step 5 rebuilds executed build output before every verification run (parse workers load dist/; a correct fix 'failed' until rebuilt). - Step 6 makes stage -> detect_changes -> commit one unbroken sequence. gitnexus-plan: - Phase 0 seeded-evidence mode: plan FROM a completed review's verified findings instead of re-running the graph ladder. - Template §7: fingerprint/golden-guarded output rebaselines once, at the series tip. All distribution copies resynced; shipped-skills-sync + skills-steering 24/24 locally. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(eval): close the skill-evolution loop with an automated proposer driver workflow_bench.evolve adds the three arrows the README described as manual: a proposer session that turns loser trajectories (results.jsonl rows, transcripts, patches, the learning queue) into ONE bounded candidate overlay, a driver that iterates propose -> paired benchmark -> deterministic gate up to --generations, and an --apply step that copies a promoted overlay onto the canonical skills and shipped mirrors as a working-tree diff. The trust boundary is unchanged: overlays re-validate through candidate_overlay_files before any benchmark or apply consumes them, and committing, CI, and the PR merge stay human. learnings.jsonl is gitignored: it is machine-local evidence, like the session transcripts it complements. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * docs(skills): route live-task friction into the evolution learning queue Each family skill gains a short 'Skill feedback' section: on friction with the skill's own instructions, append one JSON line to eval/workflow_bench/learnings.jsonl (GitNexus repo only) — never self-edit the skill from a live task. The proposer in workflow_bench.evolve consumes the queue as hints; a learning reaches a shipped skill only by beating the incumbent on the paired benchmark. All shipped mirrors re-copied byte- identical. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * ci(tests): run the evolve helper tests in the eval pytest job test_evolve.py needs only pytest+pyyaml, same as the harness tests the job already runs — without this line the new module had no CI coverage. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(ci): comment-triggered GitNexus review agent for PRs '@gitnexus review' from a maintainer (OWNER/MEMBER/COLLABORATOR; the action re-validates write access) runs the repo's gitnexus-review skill headlessly against the PR and posts the review as a sticky comment — remote triggering with no local setup. Read-only by construction: contents: read token, Write/Edit and web tools disallowed, Bash allowlisted to git reads and the gitnexus CLI; analyze parses PR code with tree-sitter, never executes it. Requires the ANTHROPIC_API_KEY repository secret; activates once the file is on the default branch. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(ci): dispatch lane + existing OAuth secret for the review agent Align with claude.yml: same action pin and the CLAUDE_CODE_OAUTH_TOKEN secret the repo already carries — no new secret to configure. Add a workflow_dispatch lane (PR number input) so the agent can be triggered from the Actions UI and tested before the issue_comment trigger reaches the default branch. Allowlist gh pr view/diff and gh api, which the review skill uses to pin PR SHAs. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(ci): close a fork-PR RCE vector in the review agent's tool allowlist A live headless run of the exact workflow session against PR #2431 (66 turns, full gitnexus-review pass) surfaced a real HIGH-severity confused deputy: .gitnexus/ is gitignored, not blocked — a fork PR can commit its own .gitnexus/run.cjs, issue_comment checks out PR-head content, and the skill's runner ladder tries 'node .gitnexus/run.cjs analyze' first. That would execute fork-controlled JS inside a job holding CLAUDE_CODE_OAUTH_TOKEN and a write-scoped GITHUB_TOKEN — the opposite of the 'PR code is read, never executed' claim in the workflow's own header. Fix: drop the run.cjs allowlist entry so analyze always resolves through npx gitnexus (npm registry, not the checked-out tree); the skill's documented fallback mode covers the resulting graceful degradation. Also drop 'gh api' (not read-only — accepts -X POST/PATCH/DELETE) and downgrade pull-requests: write to read (comment posting only needs issues: write; the prompt already forbids formal review submission). Same session flagged a latent evolve.py bug: select_evidence's cost sort used dict.get's missing-key default, which doesn't cover an explicit JSON null in a foreign --seed-results row and crashes proposer setup with TypeError. Guarded with 'or 0.0' and added a regression test. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix: harden PR review and evolution trust boundaries * ci: follow workflow concurrency convention * fix(eval): make terminating error paths explicit * fix: unblock hardened review runtime checks * test: make containment canaries deterministic * test: expose Claude canary tool failures * fix: adapt clean shell environment for Claude * fix(eval): accept the runner's transcript source key in evidence preflight The proposer evidence preflight required transcript-artifact metadata to be exactly {path, sha256, bytes}, but the runner stamps a fourth provenance key (source=parent-captured-stream-json). Any --seed-results or generation>=2 run therefore aborted with SandboxError before proposing or promoting. Pin the producer literal as PARENT_EVENT_STREAM_SOURCE and validate it in the metadata check, and round-trip real producer output through sum_sessions into the preflight so the schema can't drift again. * fix(eval): treat an unmeasured session cost as unavailable, not $0 well_formed validated only the nested usage block, so an otherwise-successful session missing total_cost_usd was recorded as cost_usd=0.0 — and cost_usd is the default promotion metric (lower wins), so a cost-less session scored as free and could win promotion it never earned. Extract cost via measured_cost() (None on absent/garbage, a measured 0.0 preserved), propagate None through sum_sessions/aggregate/savings/report, and have the gate refuse to rank on a metric that was not measured on every run in both arms. * fix(eval): warn when ranking on the main-loop-only num_turns metric num_turns comes from the CLI's top-level usage (main-loop session only), like output_tokens, but selecting it emitted no metric_warning — so a subagent-heavy candidate could look artificially efficient. Add num_turns to MAIN_LOOP_ONLY_METRICS and broaden the warning to cover turns. * fix(eval): fail closed when an overlay adds a file with no committed base An overlay adding a new .md under gitnexus-{plan,work} passes the structural overlay checks but has no committed base for committed_destination_base_digests to bind against, so it raised an uncaught ValueError that crashed the evolve driver (and runner --candidate-overlay) mid-run. Catch it at both call sites: evolve reports NOT PROMOTED and exits, runner routes it through parser.error. * feat(eval): circuit-break the runner sweep on a systemic outage A sustained upstream outage used to pay out every remaining --timeout window one session at a time. Track consecutive session/infra/cleanup failures via a pure systemic_outage_streak helper; after --outage-streak (default 5) in a row, stop the sweep, still write report.md/promotion.json from partial evidence, and exit non-zero so evolve.py halts instead of proposing from truncated evidence. A task's own resolved=False never trips the breaker. * fix(cli): report a dirty working tree as stale in gitnexus status status --json (and the human output) computed up-to-date from commit + runner identity + completeness only, so a repo with uncommitted source changes at a matching HEAD was reported up-to-date while analyze would still re-index it. A graph-backed agent gating on that JSON could skip re-analysis on a stale graph. Extract analyze's dirty-tree check into a shared isWorkingTreeDirty() in storage/git and fold it into the status freshness decision. * fix(ci): use single-slash deny globs in the review agent's disallowedTools github.workspace already expands to an absolute path, so Read(/${{ github.workspace }}/**) and Read(//proc/**),(//sys/**),(//dev/**) produced double-slash patterns that a normalizing matcher may not match — silently no-opping the deny layer. Not exploitable (the allowlist is the primary control and never grants those paths), but the globs should be well-formed. Update the pinned test strings. * ci: install gitnexus-shared with npm ci from the committed lockfile The gitnexus-shared build floated its deps via npm install in three workflows (skill-sync, ci-tests, and — most importantly — the release publish.yml) while every other install step uses npm ci. The lockfile is committed and in sync, so switch all three to npm ci for reproducible, locked installs. * test(cli): make the shipped-skills drift guard reject symlinks listFilesRecursive walked with readdirSync and snapshotDir read with readFileSync, both of which follow symlinks — so a mirror file symlinked to the canonical tree passed the byte-compare (and a symlinked mirror dir would be followed too). Reject a symlinked root via lstat and any symlinked entry via Dirent.isSymbolicLink, with negative tests (skipped on Windows). * test(eval): guard the candidate-skill vs mirror-root coverage invariant MIRROR_SKILL_ROOTS omits the Cursor tree, safe only because no candidate skill is cursor-shipped. Pin that invariant: every CANDIDATE_SKILLS entry must exist under canonical + every mirror root and must not ship to Cursor, so adding a cursor-shipped skill to the candidate set (the PR #2488 asymmetric-sync class) fails loudly instead of syncing three of four trees. * docs(ci): describe the review agent's staged post-merge rollout The DoD asked for a dry-run or triggered run before merge, but an issue_comment (or newly added workflow_dispatch) workflow only ever executes the default-branch copy, so it cannot be exercised from the PR that introduces it. Reword the DoD and the activation checklist to a staged rollout: merge registered-but-disabled, validate same-repo and fork execution post-merge, then enable the variable. * fix: pin plugin skill mcp.json to the release version via #2445 tooling The ten plugin skill mcp.json launched `npx -y gitnexus@latest mcp` on every skill connect — non-reproducible and a supply-chain surface, and (unlike the persisted setup config) never pinned. Extend sync-plugin-manifests.mjs with an mcp surface kind that stamps the gitnexus@<version> launch arg, pin all ten to 1.6.9 now, and keep them byte-identical so the drift guard stays green. The release lifecycle + publish.yml --check now re-stamp them like the four manifest surfaces; only READMEs stay on @latest as docs. * test(eval): prove the proposer's built-in file tools are confined The real-Claude canary only exercised Bash + MCP, so it proved process/MCP containment but not that the proposer's built-in file tools stay inside their mounts. Add a canary over the exact PROPOSER_ALLOWED_TOOLS surface and the same read-only /evidence mount as run_proposer (allowlist extracted to a shared constant so it can't drift): Read reaches /evidence, a Write into the read-only evidence mount is denied, and a Write lands in the output tree. * fix(eval): apply the candidate overlay after task setup for fair arms The candidate overlay was applied before the task's untrusted setup ran, so setup could observe candidate prose and the incumbent/candidate arms started from different pre-overlay state. Reorder within the sandbox: capture the base (pre-overlay) skill digest, run setup against the base skills, verify setup did not tamper them, then apply the overlay and capture the post-overlay digest the model must preserve. apply_candidate_overlay stages path-specific overlay files, so setup's uncommitted changes stay out of the baseline and churn is unchanged. Graph freshness for the review arm is handled by the status dirty-tree fix plus the review skill's stale-triggered re-index, not by reordering the cached per-task-sha graph materialization (which is mechanically blocked). * test(eval): end-to-end containment proof of the autonomous proposer Drives the real run_proposer through bubblewrap with a deterministic scripted model (no paid API): it reads the read-only evidence bundle and writes a candidate gitnexus-plan skill edit plus a rationale into the sandbox output tree; run_proposer enforces the trust boundary and copies only the validated overlay + proposal out. This exercises the autonomous-proposal stage of the self-evolution loop end-to-end in the eval/containment CI job (the gate and apply stages are covered by test_workflow_bench_evolution and test_promotion_apply). Env-gated on GITNEXUS_REQUIRE_CLAUDE_CANARY, so it runs only where the pinned Claude binary and user namespaces are available. * fix(eval): let the proposer author its overlay via Bash Running the end-to-end proposer canary in the containment CI job surfaced a real bug: run_proposer starts the session with --bare, which hard-disables the Write/Edit tools ("Write exists but is not enabled in this context"), yet allowlisted Edit/Write and omitted Bash. The proposer therefore had no working way to write its candidate overlay — the self-evolution loop could never produce a candidate. The sandbox settings already pre-authorize Bash (autoAllowBashIfSandboxed) and confine writes to workspace/tmp/home, so switch PROPOSER_ALLOWED_TOOLS to Read/Grep/Glob/Bash and tell the proposer to author files with Bash. The end-to-end test now drives the real run_proposer through bubblewrap and asserts a validated overlay + proposal are produced (this also replaces the earlier file-tool canary, whose Write/Edit premise was moot). * test(eval): author the proposer overlay with newline-free Bash content The nested shell-sandbox prefix mangles embedded newlines, so the multi-line overlay content never landed. Use single-line content for the deterministic proposer canary. * test(eval): drop the unverifiable end-to-end proposer canary The scripted proposer overlay never materialized in the containment job across runs, and the model tool-result content is not visible in CI logs, so the test cannot be finalized without an environment where the sandbox can actually run. Keep the verified production fix (Bash-authoring in run_proposer); the proposer sandbox/containment stays covered by the existing Bash+MCP and process-tree canaries. * test(cli): drop run-analyze.ts from the windowsHide spawn-family list U7 moved run-analyze.ts's only child_process call (the git status --porcelain dirty check) into storage/git.ts (already covered by this test, with windowsHide). run-analyze.ts no longer imports a spawn-family function, so the windowsHide-regression test's 'must have >=1 spawn call' invariant failed for it. Remove it from SRC_FILES. --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com> Co-authored-by: Zander Raycraft <zanderjraycraft@gmail.com> Co-authored-by: Azizur Rahman <azizur100389@gmail.com>
919 lines
43 KiB
YAML
919 lines
43 KiB
YAML
name: Publish
|
|
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
# Sole publisher for the `gitnexus` npm package, GitHub Releases, and Docker
|
|
# images. Replaces the former two-workflow design — see issue #1609 for the
|
|
# double-publish race this unification closes.
|
|
#
|
|
# Two release modes, both routed through this file:
|
|
# • Release candidate (rc) — triggered by push to `main` or workflow_dispatch.
|
|
# The RC path computes the next rc version, applies it in-CI, pushes a
|
|
# detached release commit with v<X.Y.Z>-rc.<N> + rc/<SHA> marker
|
|
# atomically, then publishes to npm with --tag rc and creates a GitHub
|
|
# prerelease. RC-only docker.yml invocation follows.
|
|
# • Stable — triggered by push of a v<X.Y.Z> tag (no -rc.*
|
|
# suffix). Verifies package.json matches the tag, publishes to npm with
|
|
# --tag latest, creates a stable GitHub Release. No docker (RC-only).
|
|
#
|
|
# ⚠️ SELF-TRIGGER INVARIANT — DO NOT WEAKEN ⚠️
|
|
# The `tags:` filter below uses a negative glob `'!v*-rc.*'` to prevent the
|
|
# workflow from re-triggering itself when the RC path pushes its own v-tag.
|
|
# Without this exclusion, every RC publish double-fires (the bug fixed by
|
|
# #1609). If a NEW prerelease channel is introduced (e.g. `-beta.N`,
|
|
# `-alpha.N`, `-next.N`), the negative-glob list MUST be extended in
|
|
# lock-step or self-trigger returns. The same invariant applies to the
|
|
# `Classify` step further below — its accepted-tag regex must align with
|
|
# the trigger filter's exclusion list.
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'docs/**'
|
|
- 'LICENSE'
|
|
tags:
|
|
# Negative-globbed exclusion of RC tags this workflow itself produces
|
|
# (see the SELF-TRIGGER INVARIANT in the header comment).
|
|
- 'v*'
|
|
- '!v*-rc.*'
|
|
workflow_dispatch:
|
|
inputs:
|
|
bump:
|
|
description: >-
|
|
Cycle policy. 'auto' (default) continues the active rc cycle on
|
|
this branch if there is one, otherwise bumps patch from latest.
|
|
Choose 'patch' / 'minor' / 'major' to explicitly start or reset
|
|
an rc cycle.
|
|
required: false
|
|
default: 'auto'
|
|
type: choice
|
|
options:
|
|
- auto
|
|
- patch
|
|
- minor
|
|
- major
|
|
force:
|
|
description: 'Publish even when HEAD already has an rc marker'
|
|
required: false
|
|
default: 'false'
|
|
type: choice
|
|
options:
|
|
- 'false'
|
|
- 'true'
|
|
# Workflow-level deny-all; each job declares the minimum it needs.
|
|
permissions: {}
|
|
|
|
# Distinct refs (refs/heads/main, refs/tags/v*) run in parallel. The
|
|
# release-PR-skip in rc-guard is the load-bearing invariant that prevents
|
|
# an RC main-push and a stable tag-push colliding on the same release commit.
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
# ── Phase 1: classify the triggering event into a release mode ─────────────
|
|
route:
|
|
name: Classify release event
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 2
|
|
permissions:
|
|
contents: read
|
|
outputs:
|
|
mode: ${{ steps.classify.outputs.mode }}
|
|
head_sha: ${{ steps.classify.outputs.head_sha }}
|
|
bump_input: ${{ inputs.bump }}
|
|
force_input: ${{ inputs.force }}
|
|
steps:
|
|
- name: Classify
|
|
id: classify
|
|
shell: bash
|
|
env:
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
GH_REF: ${{ github.ref }}
|
|
GH_REF_NAME: ${{ github.ref_name }}
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
HEAD_SHA="${GITHUB_SHA}"
|
|
echo "head_sha=${HEAD_SHA}" >> "$GITHUB_OUTPUT"
|
|
|
|
# Sanitize before logging (annotation-injection defense in depth).
|
|
REF_SAFE="${GH_REF//::/__}"
|
|
REF_NAME_SAFE="${GH_REF_NAME//::/__}"
|
|
echo "event=${EVENT_NAME} ref=${REF_SAFE} ref_name=${REF_NAME_SAFE}"
|
|
|
|
MODE=""
|
|
case "${EVENT_NAME}" in
|
|
workflow_dispatch)
|
|
# Manual dispatch is only valid on main — that's the only ref
|
|
# where a real publish makes sense.
|
|
if [ "${GH_REF}" = "refs/heads/main" ]; then
|
|
MODE="rc"
|
|
else
|
|
echo "::error::workflow_dispatch is only permitted on refs/heads/main (got ${REF_SAFE})."
|
|
exit 1
|
|
fi
|
|
;;
|
|
push)
|
|
case "${GH_REF}" in
|
|
refs/heads/main)
|
|
MODE="rc"
|
|
;;
|
|
refs/tags/v*)
|
|
# The trigger filter already excluded v*-rc.* tags. Anything
|
|
# reaching here is either a stable semver or a malformed v*.
|
|
TAG="${GH_REF#refs/tags/}"
|
|
if [[ "${TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
MODE="stable"
|
|
else
|
|
echo "::error::malformed v* tag rejected: ${REF_NAME_SAFE}"
|
|
echo "::error::stable tags must match ^v[0-9]+\\.[0-9]+\\.[0-9]+\$"
|
|
exit 1
|
|
fi
|
|
;;
|
|
*)
|
|
echo "::error::unexpected push ref ${REF_SAFE} reached publish workflow."
|
|
exit 1
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
echo "::error::unsupported event ${EVENT_NAME}."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
echo "mode=${MODE}" >> "$GITHUB_OUTPUT"
|
|
echo "Classified as mode=${MODE}"
|
|
|
|
# ── Phase 2 (RC only): dedup marker + release-PR skip ──────────────────────
|
|
rc-guard:
|
|
name: RC guard (marker + release-PR skip)
|
|
needs: route
|
|
if: needs.route.outputs.mode == 'rc'
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
outputs:
|
|
should_run: ${{ steps.decide.outputs.should_run }}
|
|
head_sha: ${{ steps.decide.outputs.head_sha }}
|
|
steps:
|
|
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
# rc-guard reads only — no git pushes from this job. Skip the
|
|
# default extraheader credential persistence (artipacked audit).
|
|
persist-credentials: false
|
|
|
|
- name: Decide
|
|
id: decide
|
|
shell: bash
|
|
env:
|
|
FORCE: ${{ inputs.force }}
|
|
BUMP_INPUT: ${{ inputs.bump }}
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
GH_TOKEN: ${{ github.token }}
|
|
REPO: ${{ github.repository }}
|
|
run: |
|
|
set -euo pipefail
|
|
HEAD_SHA=$(git rev-parse HEAD)
|
|
echo "head_sha=$HEAD_SHA" >> "$GITHUB_OUTPUT"
|
|
|
|
if [ "$FORCE" = "true" ]; then
|
|
echo "Force flag set — running regardless of marker tag."
|
|
echo "should_run=true" >> "$GITHUB_OUTPUT"
|
|
exit 0
|
|
fi
|
|
|
|
# Explicit cycle reset on dispatch bypasses dedup.
|
|
if [ "$EVENT_NAME" = "workflow_dispatch" ] \
|
|
&& [ -n "${BUMP_INPUT:-}" ] \
|
|
&& [ "${BUMP_INPUT:-auto}" != "auto" ]; then
|
|
echo "Explicit bump=$BUMP_INPUT — bypassing marker dedup."
|
|
echo "should_run=true" >> "$GITHUB_OUTPUT"
|
|
exit 0
|
|
fi
|
|
|
|
# ── Skip when the merge commit corresponds to a release ───────────
|
|
# This skip is load-bearing: it prevents an RC build firing on the
|
|
# release-PR commit from racing the imminent stable-tag push on the
|
|
# same SHA. Two complementary checks:
|
|
# 1. HEAD subject matches `chore: release vX.Y.Z` (the canonical
|
|
# release-PR title). Anchored to require the bare title or the
|
|
# squash-merge `(#NNNN)` suffix exactly. Case-insensitive so
|
|
# `Chore: Release v1.2.3` (IDE auto-capitalization) still
|
|
# matches — prior commit-author conventions left the door open.
|
|
# 2. Squash-merged PR carries the `release` label.
|
|
# Either match suppresses the rc build — stable releases publish on
|
|
# the v-tag instead.
|
|
HEAD_SUBJECT="$(git log -1 --pretty=%s HEAD)"
|
|
# Sanitize GitHub-Actions annotation prefixes before logging — even
|
|
# though %s strips newlines, a crafted subject containing `::error::`
|
|
# could forge log annotations.
|
|
HEAD_SUBJECT_SAFE="${HEAD_SUBJECT//::/__}"
|
|
RELEASE_SUBJECT_RE='^chore:[[:space:]]*release[[:space:]]+v[0-9]+\.[0-9]+\.[0-9]+([[:space:]]+\(#[0-9]+\))?$'
|
|
shopt -s nocasematch
|
|
if [[ "$HEAD_SUBJECT" =~ $RELEASE_SUBJECT_RE ]]; then
|
|
shopt -u nocasematch
|
|
echo "HEAD commit subject matches a release commit — skipping rc."
|
|
echo " subject (sanitised): $HEAD_SUBJECT_SAFE"
|
|
echo "should_run=false" >> "$GITHUB_OUTPUT"
|
|
exit 0
|
|
fi
|
|
shopt -u nocasematch
|
|
|
|
# Squash-merge commits include `(#NNNN)` at the end of the subject.
|
|
if [[ "$HEAD_SUBJECT" =~ \(#([0-9]+)\)[[:space:]]*$ ]]; then
|
|
PR_NUM="${BASH_REMATCH[1]}"
|
|
echo "Detected squash-merge of PR #$PR_NUM — checking labels."
|
|
if LABELS_JSON="$(gh pr view "$PR_NUM" --repo "$REPO" --json labels 2>/dev/null)"; then
|
|
if printf '%s' "$LABELS_JSON" | jq -e '.labels[] | select(.name == "release")' >/dev/null; then
|
|
echo "PR #$PR_NUM has the 'release' label — skipping rc."
|
|
echo "should_run=false" >> "$GITHUB_OUTPUT"
|
|
exit 0
|
|
fi
|
|
echo "PR #$PR_NUM has no 'release' label — proceeding."
|
|
else
|
|
# Lookup failure is not fatal — fall through to dedup check.
|
|
echo "::warning::Could not read labels for PR #${PR_NUM} — falling through."
|
|
fi
|
|
fi
|
|
|
|
# Dedup: is there already an rc/<HEAD_SHA> marker pointing at HEAD?
|
|
MARKER="rc/${HEAD_SHA}"
|
|
if git rev-parse "refs/tags/$MARKER" >/dev/null 2>&1; then
|
|
echo "HEAD already has marker $MARKER — skipping."
|
|
echo "should_run=false" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "No marker on HEAD — proceeding."
|
|
echo "should_run=true" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
# ── Phase 3: reusable CI gate ──────────────────────────────────────────────
|
|
# Runs for both rc (when guard says go) and stable. No `secrets:` passed —
|
|
# ci.yml and its entire reusable-workflow chain (ci-quality, ci-tests,
|
|
# ci-e2e, ci-report) reference zero `secrets.*` values;
|
|
# passing any would be unused surface. GITHUB_TOKEN is implicit.
|
|
ci:
|
|
needs: [route, rc-guard]
|
|
if: ${{ always() && (needs.route.outputs.mode == 'stable' || needs.rc-guard.outputs.should_run == 'true') }}
|
|
uses: ./.github/workflows/ci.yml
|
|
permissions:
|
|
contents: read
|
|
actions: read
|
|
|
|
# ── Phase 4: publish to npm + push refs (RC path) ──────────────────────────
|
|
# INVARIANT: `timeout-minutes` MUST stay below the App-token TTL (~60 min
|
|
# for actions/create-github-app-token installation tokens). The atomic
|
|
# tag-push step relies on the token minted at job start; if the job ever
|
|
# runs longer than the TTL, the push fails with an opaque 401. If you
|
|
# need to raise the timeout, re-mint the token immediately before the
|
|
# `Create and push rc tags` step instead.
|
|
publish:
|
|
name: Publish to npm
|
|
needs: [route, rc-guard, ci]
|
|
if: ${{ always() && needs.ci.result == 'success' && (needs.route.outputs.mode == 'stable' || needs.rc-guard.outputs.should_run == 'true') }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
permissions:
|
|
# contents: write — RC path needs it for `git push --atomic` (v-tag +
|
|
# marker). Stable path runs in the same job and inherits the grant; it
|
|
# never invokes `git push`, so the elevated scope is unused there.
|
|
# id-token: write — npm provenance attestation.
|
|
contents: write
|
|
id-token: write
|
|
outputs:
|
|
# Two distinct step IDs feed this output; exactly one fires per run.
|
|
vtag: ${{ steps.rc-tags.outputs.vtag || steps.stable-vtag.outputs.vtag }}
|
|
steps:
|
|
# ── Mint short-lived GitHub App token (RC only) ──────────────────────
|
|
# Industry direction (2025-2026): GitHub Apps with
|
|
# `actions/create-github-app-token` over long-lived PATs for
|
|
# workflow-touching tag pushes. Same fine-grained permission surface,
|
|
# ~1h expiry, not tied to a user seat, organizationally auditable.
|
|
# Replaces a prior fine-grained PAT.
|
|
#
|
|
# Required secrets (set in repo Settings → Secrets and variables → Actions):
|
|
# secrets.RELEASE_APP_ID — the App's numeric ID
|
|
# secrets.RELEASE_APP_PRIVATE_KEY — the App's PEM private key
|
|
# (The App ID is technically not sensitive — it's visible on the App's
|
|
# settings page — but storing it as a secret is harmless and avoids
|
|
# mixing storage classes for the same App.)
|
|
# The App must be installed on this repository with:
|
|
# - Contents: write (push the v-tag and rc marker)
|
|
# - Workflows: write (because the v-tag's tree may touch
|
|
# .github/workflows/**, which the default
|
|
# GITHUB_TOKEN cannot author)
|
|
# - Metadata: read (required for the `gh api /users/<slug>[bot]`
|
|
# bot-identity lookup in the tag-push step)
|
|
- name: Mint GitHub App token (RC)
|
|
if: needs.route.outputs.mode == 'rc'
|
|
id: app-token
|
|
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
|
|
with:
|
|
# `client-id` is the renamed input that supersedes the deprecated
|
|
# `app-id` in v3.x. The action accepts the App's numeric ID or
|
|
# its Client ID under this name. We pass the numeric App ID,
|
|
# which the action resolves correctly.
|
|
client-id: ${{ secrets.RELEASE_APP_ID }}
|
|
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
|
|
|
|
# ── Separate checkout steps per mode ─────────────────────────────────
|
|
# Conditional `token:` expressions are footguns: empty string passed to
|
|
# actions/checkout fails opaquely, and `|| github.token` silently
|
|
# degrades a missing token to GITHUB_TOKEN, masking auth failures until
|
|
# the eventual `git push`. Two distinct steps make the auth contract
|
|
# explicit and fail loudly at checkout when the App token mint failed
|
|
# on the RC path.
|
|
- name: Checkout (RC)
|
|
if: needs.route.outputs.mode == 'rc'
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
# Short-lived GitHub App installation token. Required because the
|
|
# v-tag push lands at a SHA whose tree may touch
|
|
# `.github/workflows/**`, which the default GITHUB_TOKEN cannot
|
|
# author.
|
|
token: ${{ steps.app-token.outputs.token }}
|
|
# Do not persist the token in .git/config (artipacked audit). The
|
|
# RC tag push uses an inline `http.extraheader` at push time only;
|
|
# the credential never lands on disk. See the
|
|
# `Create and push rc tags` step below.
|
|
persist-credentials: false
|
|
|
|
- name: Checkout (stable)
|
|
if: needs.route.outputs.mode == 'stable'
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
# No `token:` — actions/checkout uses GITHUB_TOKEN by default. Stable
|
|
# path performs no git pushes; the default scope is sufficient.
|
|
with:
|
|
# No git pushes from the stable path either. Skip credential
|
|
# persistence (artipacked audit).
|
|
persist-credentials: false
|
|
|
|
- name: Working-tree sanity
|
|
# Defense in depth (mirrors the vtag integrity gate, but on the input side):
|
|
# if a route-mode regression skipped both checkout `if:` gates, all
|
|
# downstream steps would run on a bare runner and produce confusing
|
|
# ENOENT errors. Fail loudly and early here instead.
|
|
shell: bash
|
|
run: |
|
|
if [ ! -f gitnexus/package.json ]; then
|
|
echo "::error::no working tree at gitnexus/package.json — route classification likely failed silently."
|
|
exit 1
|
|
fi
|
|
|
|
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
# Node 24 ships with npm >= 11.5.x, which is the minimum that
|
|
# supports npm Trusted Publishing OIDC. Node 22 ships with npm
|
|
# 10.9.x (no OIDC) and `npm install -g npm@latest` to self-upgrade
|
|
# is fragile — it can crash the in-flight reify with
|
|
# `MODULE_NOT_FOUND` on `promise-retry` etc. Bumping the Node
|
|
# version is the clean fix; the package's `engines` field is
|
|
# `>=22.0.0` so consumer-side compatibility is unaffected (this
|
|
# Node version is only used during publish, not by package users).
|
|
node-version: 24
|
|
# `registry-url:` is intentionally OMITTED. Under npm Trusted
|
|
# Publishing, OIDC only engages when no credential is configured.
|
|
# Setting `registry-url:` would make setup-node write
|
|
# `//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}` into the
|
|
# runner's .npmrc AND export NODE_AUTH_TOKEN from its `token:`
|
|
# input (default github.token). `npm publish` would then attempt
|
|
# GITHUB_TOKEN as the npm token, get rejected with 404, and OIDC
|
|
# would never be tried. See actions/setup-node#1440 and the GitHub
|
|
# Community discussion #176761 for the upstream bug and consensus
|
|
# workaround.
|
|
#
|
|
# Hermetic install for published artifacts — opt out of the v5+
|
|
# default packageManager-based caching (clears the zizmor
|
|
# cache-poisoning audit). ~30s slower per release; runs rarely.
|
|
package-manager-cache: false
|
|
|
|
- name: Build gitnexus-shared
|
|
run: npm ci && npm run build
|
|
working-directory: gitnexus-shared
|
|
|
|
- name: Install gitnexus dependencies
|
|
run: npm ci
|
|
working-directory: gitnexus
|
|
|
|
# ── Stable-only: verify the tag and package.json agree ───────────────
|
|
- name: Verify version consistency (stable)
|
|
if: needs.route.outputs.mode == 'stable'
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
run: |
|
|
set -euo pipefail
|
|
TAG_VERSION="${GITHUB_REF#refs/tags/v}"
|
|
# Stable mode REJECTS prerelease suffixes — those are filtered at
|
|
# trigger by the negative-glob filter, but defend at the bash layer too.
|
|
if ! [[ "$TAG_VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo "::error::Stable tag must be ^v[0-9]+.[0-9]+.[0-9]+$ — got v$TAG_VERSION"
|
|
exit 1
|
|
fi
|
|
PKG_VERSION=$(node -p "require('./package.json').version")
|
|
if [ "$TAG_VERSION" != "$PKG_VERSION" ]; then
|
|
echo "::error::Tag version (v$TAG_VERSION) does not match package.json version ($PKG_VERSION)"
|
|
exit 1
|
|
fi
|
|
# Stable releases carry their version bump on main via the release
|
|
# PR, so the manifest surfaces must already be in sync — refuse to
|
|
# publish a stable whose manifests drifted (#2445).
|
|
node scripts/sync-plugin-manifests.mjs --check
|
|
echo "Version verified: $PKG_VERSION"
|
|
|
|
# ── RC-only: compute the next rc version against the live registry ──
|
|
- name: Resolve rc version (rc)
|
|
id: rc-version
|
|
if: needs.route.outputs.mode == 'rc'
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
env:
|
|
BUMP_INPUT: ${{ inputs.bump }}
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
PKG_NAME: gitnexus
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
# 1. Current published `latest` — the floor for any new rc base.
|
|
# Only E404 ("never published") falls back to package.json; any
|
|
# other error (network, auth, malformed response) fails fast
|
|
# (retry-loud policy: never silently substitute on transient errors).
|
|
NPM_STDERR_LATEST="$(mktemp)"
|
|
if CURRENT_LATEST="$(npm view "$PKG_NAME" version 2>"$NPM_STDERR_LATEST")"; then
|
|
:
|
|
else
|
|
if grep -qiE 'E404|not found' "$NPM_STDERR_LATEST"; then
|
|
CURRENT_LATEST="$(node -p "require('./package.json').version")"
|
|
echo "Package not on registry (E404) — seeding from package.json: $CURRENT_LATEST"
|
|
else
|
|
echo "::error::npm registry unreachable for 'view version':" >&2
|
|
cat "$NPM_STDERR_LATEST" >&2
|
|
rm -f "$NPM_STDERR_LATEST"
|
|
exit 1
|
|
fi
|
|
fi
|
|
rm -f "$NPM_STDERR_LATEST"
|
|
CURRENT_LATEST_CLEAN="${CURRENT_LATEST%%-*}"
|
|
|
|
# 2. Full version list — needed for the counter and active-cycle
|
|
# inference. Same E404-only fallback.
|
|
NPM_STDERR_VERSIONS="$(mktemp)"
|
|
if VERSIONS_JSON="$(npm view "$PKG_NAME" versions --json 2>"$NPM_STDERR_VERSIONS")"; then
|
|
:
|
|
else
|
|
if grep -qiE 'E404|not found' "$NPM_STDERR_VERSIONS"; then
|
|
VERSIONS_JSON='[]'
|
|
echo "No published versions for $PKG_NAME yet (E404)."
|
|
else
|
|
echo "::error::npm registry unreachable for 'view versions':" >&2
|
|
cat "$NPM_STDERR_VERSIONS" >&2
|
|
rm -f "$NPM_STDERR_VERSIONS"
|
|
exit 1
|
|
fi
|
|
fi
|
|
rm -f "$NPM_STDERR_VERSIONS"
|
|
|
|
# 3. Base selection.
|
|
# - workflow_dispatch + bump != auto → explicit cycle reset.
|
|
# - Otherwise (push, or dispatch with bump=auto) → continue the
|
|
# highest active rc base > latest if any; else patch from latest.
|
|
# Curated wrapper around `npx semver` — bare npx errors are noisy
|
|
# and don't distinguish registry-unreachable from invalid-bump-spec.
|
|
semver_bump() {
|
|
local kind="$1" current="$2" stderr_file out
|
|
stderr_file="$(mktemp)"
|
|
if out="$(npx --yes -p semver@7 semver -i "$kind" "$current" 2>"$stderr_file")"; then
|
|
rm -f "$stderr_file"
|
|
printf '%s' "$out"
|
|
return 0
|
|
fi
|
|
echo "::error::semver bump failed (kind=${kind}, current=${current}):" >&2
|
|
cat "$stderr_file" >&2
|
|
rm -f "$stderr_file"
|
|
return 1
|
|
}
|
|
|
|
if [ "$EVENT_NAME" = "workflow_dispatch" ] \
|
|
&& [ -n "${BUMP_INPUT:-}" ] \
|
|
&& [ "${BUMP_INPUT:-auto}" != "auto" ]; then
|
|
BASE="$(semver_bump "$BUMP_INPUT" "$CURRENT_LATEST_CLEAN")"
|
|
echo "Explicit bump=$BUMP_INPUT → BASE=$BASE"
|
|
else
|
|
cat > /tmp/active_base.mjs <<'NODESCRIPT'
|
|
const latest = process.env.LATEST;
|
|
let v;
|
|
try { v = JSON.parse(process.env.VERSIONS_JSON); } catch { v = []; }
|
|
if (!Array.isArray(v)) v = [v];
|
|
const parse = s => s.split(".").map(n => parseInt(n, 10));
|
|
const gt = (a, b) => {
|
|
const [A, B] = [parse(a), parse(b)];
|
|
for (let i = 0; i < 3; i++) if (A[i] !== B[i]) return A[i] > B[i];
|
|
return false;
|
|
};
|
|
const bases = new Set();
|
|
for (const s of v) {
|
|
const m = /^(\d+\.\d+\.\d+)-rc\.\d+$/.exec(s);
|
|
if (m && gt(m[1], latest)) bases.add(m[1]);
|
|
}
|
|
if (!bases.size) { process.stdout.write(""); process.exit(0); }
|
|
const sorted = [...bases].sort((a, b) => gt(a, b) ? 1 : -1);
|
|
process.stdout.write(sorted[sorted.length - 1]);
|
|
NODESCRIPT
|
|
ACTIVE_BASE="$(LATEST="$CURRENT_LATEST_CLEAN" VERSIONS_JSON="$VERSIONS_JSON" node /tmp/active_base.mjs)"
|
|
if [ -n "$ACTIVE_BASE" ]; then
|
|
BASE="$ACTIVE_BASE"
|
|
echo "Continuing active rc cycle → BASE=$BASE"
|
|
else
|
|
BASE="$(semver_bump patch "$CURRENT_LATEST_CLEAN")"
|
|
echo "No active rc cycle → patch bump from latest → BASE=$BASE"
|
|
fi
|
|
fi
|
|
|
|
# 4. Counter: 1 + max existing N for `${BASE}-rc.*`, else 1.
|
|
cat > /tmp/next_rc.mjs <<'NODESCRIPT'
|
|
const base = process.env.BASE;
|
|
const prefix = base + "-rc.";
|
|
let v;
|
|
try { v = JSON.parse(process.env.VERSIONS_JSON); } catch { v = []; }
|
|
if (!Array.isArray(v)) v = [v];
|
|
const ns = v
|
|
.filter(s => typeof s === "string" && s.startsWith(prefix))
|
|
.map(s => parseInt(s.slice(prefix.length), 10))
|
|
.filter(n => Number.isInteger(n) && n >= 0);
|
|
process.stdout.write(String(ns.length ? Math.max(...ns) + 1 : 1));
|
|
NODESCRIPT
|
|
NEXT_N="$(BASE="$BASE" VERSIONS_JSON="$VERSIONS_JSON" node /tmp/next_rc.mjs)"
|
|
RC_VERSION="${BASE}-rc.${NEXT_N}"
|
|
echo "Computed rc: $RC_VERSION"
|
|
|
|
# 5. Defensive: if the exact version already exists on the registry
|
|
# (race with another run), abort before re-publishing.
|
|
NPM_STDERR_EXISTS="$(mktemp)"
|
|
if npm view "$PKG_NAME@$RC_VERSION" version 2>"$NPM_STDERR_EXISTS" >/dev/null; then
|
|
rm -f "$NPM_STDERR_EXISTS"
|
|
echo "::error::Version $RC_VERSION already exists on npm — aborting."
|
|
exit 1
|
|
else
|
|
if grep -qiE 'E404|not found' "$NPM_STDERR_EXISTS"; then
|
|
rm -f "$NPM_STDERR_EXISTS"
|
|
# Version doesn't exist — safe to proceed.
|
|
else
|
|
echo "::error::npm registry unreachable for existence check:" >&2
|
|
cat "$NPM_STDERR_EXISTS" >&2
|
|
rm -f "$NPM_STDERR_EXISTS"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
{
|
|
echo "base=$BASE"
|
|
echo "rc_n=$NEXT_N"
|
|
echo "rc_version=$RC_VERSION"
|
|
} >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Apply rc version in-CI
|
|
if: needs.route.outputs.mode == 'rc'
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
run: |
|
|
set -euo pipefail
|
|
npm version "${{ steps.rc-version.outputs.rc_version }}" \
|
|
--no-git-tag-version --allow-same-version
|
|
|
|
# ── Verify the plugin manifest surfaces synced (#2445) ───────────────
|
|
# The npm `version` lifecycle script in gitnexus/package.json syncs all
|
|
# four manifest surfaces whenever `npm version` runs (the step above,
|
|
# and a maintainer's laptop alike). This step only verifies fail-closed
|
|
# so a future removal of that wiring cannot ship a drifted RC again.
|
|
- name: Verify plugin manifests (rc)
|
|
if: needs.route.outputs.mode == 'rc'
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
run: node scripts/sync-plugin-manifests.mjs --check
|
|
|
|
- name: Build gitnexus
|
|
run: npm run build
|
|
working-directory: gitnexus
|
|
|
|
- name: Dry-run publish
|
|
# Cheap verification that the tarball assembles before the real publish.
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
env:
|
|
NPM_TAG: ${{ needs.route.outputs.mode == 'rc' && 'rc' || 'latest' }}
|
|
run: npm publish --dry-run --tag "$NPM_TAG"
|
|
|
|
# ── Acquire the "rc lock" BEFORE publishing (idempotency anchor) ─────
|
|
# We create two refs and push atomically:
|
|
# v<RC_VERSION> → annotated tag on a detached release commit whose
|
|
# tree contains the rewritten package.json, so the
|
|
# tag's source matches the npm tarball.
|
|
# rc/<HEAD_SHA> → lightweight tag on HEAD; the guard's dedup key.
|
|
# Push fails → nothing published. Push succeeds, npm fails → marker
|
|
# blocks retries until manual cleanup (see Rollback Runbook in plan).
|
|
- name: Create and push rc tags
|
|
id: rc-tags
|
|
if: needs.route.outputs.mode == 'rc'
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
env:
|
|
RC_VERSION: ${{ steps.rc-version.outputs.rc_version }}
|
|
HEAD_SHA: ${{ needs.rc-guard.outputs.head_sha }}
|
|
# Short-lived GitHub App token. Auth is supplied inline at push
|
|
# time via `http.extraheader` (per GitHub's documented
|
|
# x-access-token Basic pattern). It is NOT persisted in
|
|
# .git/config (artipacked audit) — checkout above ran with
|
|
# `persist-credentials: false`.
|
|
PUSH_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
# App's slug from create-github-app-token (e.g. `gitnexus-release-bot`).
|
|
# Used to attribute the release commit to the App identity rather
|
|
# than the generic github-actions[bot]. The bot's numeric user-id
|
|
# is resolved at runtime via the GitHub API (the action does not
|
|
# expose it directly as of v3.2.0).
|
|
APP_SLUG: ${{ steps.app-token.outputs.app-slug }}
|
|
GH_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
run: |
|
|
set -euo pipefail
|
|
VTAG="v${RC_VERSION}"
|
|
MARKER="rc/${HEAD_SHA}"
|
|
|
|
# Resolve the App's bot user-id and construct the noreply email
|
|
# in the GitHub-canonical `<id>+<slug>[bot]@users.noreply.github.com`
|
|
# shape. `[bot]` is part of the actual login on GitHub.
|
|
#
|
|
# The lookup is wrapped in a bounded retry because the first RC
|
|
# after App installation may hit propagation delay (404), and
|
|
# transient api.github.com 5xx during heavy org activity is a real
|
|
# failure class. Without retry, every transient blip aborts the
|
|
# entire release after CI has already succeeded.
|
|
BOT_LOGIN="${APP_SLUG}[bot]"
|
|
BOT_USER_ID=""
|
|
api_stderr="$(mktemp)"
|
|
for attempt in 1 2 3; do
|
|
if BOT_USER_ID="$(gh api "/users/${BOT_LOGIN}" --jq .id 2>"$api_stderr")" \
|
|
&& [[ "${BOT_USER_ID}" =~ ^[0-9]+$ ]]; then
|
|
break
|
|
fi
|
|
BOT_USER_ID=""
|
|
if [ "$attempt" -lt 3 ]; then
|
|
echo "::warning::bot user-id lookup attempt ${attempt} failed; retrying in $((attempt * 5))s"
|
|
sleep $((attempt * 5))
|
|
fi
|
|
done
|
|
if ! [[ "${BOT_USER_ID}" =~ ^[0-9]+$ ]]; then
|
|
echo "::error::Could not resolve bot user-id for ${BOT_LOGIN} after 3 attempts."
|
|
echo "::error::gh api stderr:"
|
|
cat "$api_stderr" >&2 || true
|
|
echo "::error::Common causes: (a) newly-installed App — user record still propagating to /users/ (wait ~5min, redispatch with force=true); (b) App lacks Metadata: read permission; (c) transient api.github.com 5xx (redispatch)."
|
|
rm -f "$api_stderr"
|
|
exit 1
|
|
fi
|
|
rm -f "$api_stderr"
|
|
git config user.name "${BOT_LOGIN}"
|
|
git config user.email "${BOT_USER_ID}+${BOT_LOGIN}@users.noreply.github.com"
|
|
|
|
# Detached release commit with the version bump — main stays
|
|
# pristine, but the v-tag's tree matches the published package
|
|
# exactly (release-integrity).
|
|
git add package.json package-lock.json 2>/dev/null || git add package.json
|
|
# The synced manifest surfaces (#2445) belong in the same detached
|
|
# release commit so the tag's tree passes its own version contract.
|
|
git add ../gitnexus-claude-plugin/.claude-plugin/plugin.json \
|
|
../.claude-plugin/marketplace.json \
|
|
../gitnexus-claude-plugin/.codex-plugin/plugin.json \
|
|
../.agents/plugins/marketplace.json
|
|
git commit -m "release: ${VTAG}" --allow-empty
|
|
RELEASE_SHA="$(git rev-parse HEAD)"
|
|
echo "Detached release commit: $RELEASE_SHA"
|
|
|
|
git tag -a "$VTAG" "$RELEASE_SHA" -m "$VTAG"
|
|
git tag "$MARKER" "$HEAD_SHA"
|
|
|
|
# Inline auth header. The base64-encoded form is masked as well
|
|
# as the raw token, because GitHub's secret-masker only masks the
|
|
# raw value — any subsequent `set -x` / GIT_TRACE line would
|
|
# otherwise expose the encoded credential.
|
|
#
|
|
# `set +x` wraps the compute+mask pair so that if an operator
|
|
# enables ACTIONS_STEP_DEBUG=true for triage (which turns on
|
|
# `set -x` globally), the assignment is NOT traced for the one
|
|
# line between compute and mask-registration. Without this wrap,
|
|
# debug mode would log `+ auth_header='Authorization: Basic <encoded>'`
|
|
# exposing a still-valid (~1h) App token.
|
|
{ set +x; } 2>/dev/null
|
|
auth_header="Authorization: Basic $(printf 'x-access-token:%s' "${PUSH_TOKEN}" | base64 -w0)"
|
|
echo "::add-mask::${auth_header}"
|
|
# Re-enable tracing only when explicitly requested via step-debug.
|
|
if [ "${ACTIONS_STEP_DEBUG:-false}" = "true" ]; then set -x; fi
|
|
|
|
# Atomic push of both refs. If either would clobber an existing
|
|
# remote ref, the push fails and we stop before npm publish.
|
|
git -c http.extraheader="${auth_header}" \
|
|
push --atomic origin "refs/tags/$VTAG" "refs/tags/$MARKER"
|
|
|
|
{
|
|
echo "vtag=$VTAG"
|
|
echo "marker=$MARKER"
|
|
echo "release_sha=$RELEASE_SHA"
|
|
} >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Set vtag (stable)
|
|
id: stable-vtag
|
|
if: needs.route.outputs.mode == 'stable'
|
|
shell: bash
|
|
# github.ref_name flows in via env to avoid templating into the
|
|
# shell source (template-injection audit). Even though refs are
|
|
# constrained by git naming rules, the env-passthrough pattern
|
|
# makes injection structurally impossible.
|
|
env:
|
|
REF_NAME: ${{ github.ref_name }}
|
|
run: |
|
|
echo "vtag=${REF_NAME}" >> "$GITHUB_OUTPUT"
|
|
|
|
# ── vtag integrity gate ──────────────────────────────────────────────
|
|
# Fail closed before any artifact-producing step (npm publish, Release,
|
|
# Docker) runs against an empty or mode-mismatched vtag. Prevents the
|
|
# silent "Release named main" / "Docker tagged from ref fallback"
|
|
# failure modes that the previous draft was vulnerable to.
|
|
- name: vtag integrity gate
|
|
id: vtag-gate
|
|
shell: bash
|
|
env:
|
|
MODE: ${{ needs.route.outputs.mode }}
|
|
VTAG: ${{ steps.rc-tags.outputs.vtag || steps.stable-vtag.outputs.vtag }}
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
if [ -z "$VTAG" ]; then
|
|
echo "::error::vtag is empty — refusing to create GitHub Release or trigger Docker."
|
|
exit 1
|
|
fi
|
|
|
|
case "$MODE" in
|
|
rc)
|
|
if ! [[ "$VTAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+-rc\.[0-9]+$ ]]; then
|
|
echo "::error::vtag '${VTAG}' does not match rc shape ^v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+$"
|
|
exit 1
|
|
fi
|
|
;;
|
|
stable)
|
|
if ! [[ "$VTAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
|
|
echo "::error::vtag '${VTAG}' does not match stable shape ^v[0-9]+.[0-9]+.[0-9]+$"
|
|
exit 1
|
|
fi
|
|
;;
|
|
*)
|
|
echo "::error::unknown mode '${MODE}' at vtag integrity gate."
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
echo "vtag verified: ${VTAG} (mode=${MODE})"
|
|
echo "vtag=${VTAG}" >> "$GITHUB_OUTPUT"
|
|
|
|
# npm Trusted Publishing (GA'd 2025-07-31). OIDC authentication only
|
|
# engages when no npm credential is configured anywhere — the absence
|
|
# is the signal. Two upstream behaviors had to be neutralized for
|
|
# this to work:
|
|
#
|
|
# 1. setup-node's `registry-url:` is omitted (see the setup-node
|
|
# step above). With it, setup-node writes
|
|
# `//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}` into
|
|
# .npmrc and exports NODE_AUTH_TOKEN from `token:` (defaulting
|
|
# to github.token). npm publish then sends GITHUB_TOKEN as the
|
|
# bearer credential and the registry returns 404. OIDC is never
|
|
# tried because npm thinks it already has a credential.
|
|
# 2. The runner's bundled npm (10.9.x on Node 22) has no OIDC
|
|
# support; the upgrade step above pins it to >= 11.5.1.
|
|
#
|
|
# Provenance is auto-attached by the registry on trusted-publisher
|
|
# publishes — no --provenance flag needed.
|
|
#
|
|
# Prerequisite: register the package as a trusted publisher at
|
|
# https://www.npmjs.com/package/gitnexus/access (Publishing access →
|
|
# Trusted Publishers → GitHub Actions):
|
|
# Owner: abhigyanpatwari
|
|
# Repository: GitNexus
|
|
# Workflow: publish.yml
|
|
# Environment: (none)
|
|
- name: Publish to npm
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
env:
|
|
NPM_TAG: ${{ needs.route.outputs.mode == 'rc' && 'rc' || 'latest' }}
|
|
run: npm publish --access public --tag "$NPM_TAG"
|
|
|
|
# ── Stable-only: pull CHANGELOG body if present ──────────────────────
|
|
- name: Extract release notes from CHANGELOG (stable)
|
|
id: changelog
|
|
if: needs.route.outputs.mode == 'stable'
|
|
shell: bash
|
|
run: |
|
|
VERSION="${GITHUB_REF#refs/tags/v}"
|
|
NOTES=$(awk "/^## \\[$VERSION\\]/{found=1; next} /^## \\[/{if(found) exit} found" gitnexus/CHANGELOG.md)
|
|
if [ -z "$NOTES" ]; then
|
|
echo "::warning::No CHANGELOG entry found for v$VERSION, falling back to auto-generated notes"
|
|
echo "fallback=true" >> "$GITHUB_OUTPUT"
|
|
else
|
|
echo "$NOTES" > /tmp/release-notes.md
|
|
echo "fallback=false" >> "$GITHUB_OUTPUT"
|
|
fi
|
|
|
|
- name: Create GitHub Release
|
|
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b # v2
|
|
with:
|
|
tag_name: ${{ steps.vtag-gate.outputs.vtag }}
|
|
name: >-
|
|
${{ needs.route.outputs.mode == 'rc'
|
|
&& format('Release Candidate {0}', steps.vtag-gate.outputs.vtag)
|
|
|| steps.vtag-gate.outputs.vtag }}
|
|
prerelease: ${{ needs.route.outputs.mode == 'rc' }}
|
|
make_latest: ${{ needs.route.outputs.mode == 'stable' && 'true' || 'false' }}
|
|
# Stable: prefer CHANGELOG body, fall back to auto-generated.
|
|
# RC: always auto-generated + the prerelease body block below.
|
|
body_path: >-
|
|
${{ needs.route.outputs.mode == 'stable' && steps.changelog.outputs.fallback == 'false'
|
|
&& '/tmp/release-notes.md' || '' }}
|
|
generate_release_notes: >-
|
|
${{ needs.route.outputs.mode == 'rc'
|
|
|| steps.changelog.outputs.fallback == 'true' }}
|
|
body: >-
|
|
${{ needs.route.outputs.mode == 'rc' && format(
|
|
'Automated release candidate build from `main`.{0}{0}**npm:** `npm install gitnexus@rc`{0}**Version:** `{1}`{0}**Target base:** `{2}` (rc #{3}){0}**Source commit (main):** {4}{0}**Release commit (versioned tree):** {5}{0}{0}Release candidates are pre-stable builds intended for early testing. Stable releases remain on the `latest` dist-tag.',
|
|
'\n',
|
|
steps.rc-version.outputs.rc_version,
|
|
steps.rc-version.outputs.base,
|
|
steps.rc-version.outputs.rc_n,
|
|
needs.rc-guard.outputs.head_sha,
|
|
steps.rc-tags.outputs.release_sha
|
|
) || '' }}
|
|
|
|
# ── RC partial-failure cleanup ───────────────────────────────────────
|
|
# If anything after the atomic tag-push step failed (npm publish
|
|
# blew up, GitHub Release call timed out, etc.), the v-tag and
|
|
# rc/<SHA> marker are already on origin. External consumers
|
|
# (Renovate, Dependabot, Releases RSS) can ingest a phantom tag for
|
|
# a version that was never published to npm. This step deletes them
|
|
# automatically so the operator's recovery is just "redispatch with
|
|
# force=true on the next commit", not a manual ref cleanup.
|
|
#
|
|
# Scoped strictly to RC + real (non-dry-run) + the rc-tags step
|
|
# actually produced a vtag (otherwise nothing to clean up). The
|
|
# App token is still valid (~1h TTL, job timeout 20min).
|
|
- name: Cleanup pushed tags on partial failure
|
|
if: ${{ failure() && needs.route.outputs.mode == 'rc' && steps.rc-tags.outputs.vtag != '' }}
|
|
shell: bash
|
|
working-directory: gitnexus
|
|
env:
|
|
VTAG: ${{ steps.rc-tags.outputs.vtag }}
|
|
MARKER: ${{ steps.rc-tags.outputs.marker }}
|
|
PUSH_TOKEN: ${{ steps.app-token.outputs.token }}
|
|
run: |
|
|
set -uo pipefail
|
|
echo "::warning::Publish step failed after tag push. Cleaning up remote refs to prevent phantom-version ingestion by downstream consumers."
|
|
|
|
{ set +x; } 2>/dev/null
|
|
auth_header="Authorization: Basic $(printf 'x-access-token:%s' "${PUSH_TOKEN}" | base64 -w0)"
|
|
echo "::add-mask::${auth_header}"
|
|
if [ "${ACTIONS_STEP_DEBUG:-false}" = "true" ]; then set -x; fi
|
|
|
|
# Delete v-tag and marker. Each delete is best-effort — if one
|
|
# is already absent (atomic push partially rejected, or earlier
|
|
# cleanup ran), the other still gets attempted.
|
|
for ref in "refs/tags/${VTAG}" "refs/tags/${MARKER}"; do
|
|
if git -c http.extraheader="${auth_header}" push origin --delete "${ref}" 2>&1; then
|
|
echo "deleted origin ${ref}"
|
|
else
|
|
echo "::warning::could not delete origin ${ref} — may already be absent or protected. Manual cleanup may be required."
|
|
fi
|
|
done
|
|
|
|
echo "::notice::Cleanup complete. To retry the release, redispatch the workflow with force=true on the same SHA, or push a new commit to main."
|
|
|
|
# ── Phase 5 (RC only): Docker images ───────────────────────────────────────
|
|
# R6: Docker remains RC-only. Stable Docker builds are explicitly deferred.
|
|
# Secrets are passed explicitly (not via `secrets: inherit`) so the
|
|
# callee's secret surface is auditable from the caller's source.
|
|
docker:
|
|
name: Build & Push RC Docker images
|
|
needs: [route, publish]
|
|
if: ${{ needs.route.outputs.mode == 'rc' && needs.publish.outputs.vtag != '' }}
|
|
uses: ./.github/workflows/docker.yml
|
|
secrets:
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
id-token: write
|
|
attestations: write
|
|
with:
|
|
tag: ${{ needs.publish.outputs.vtag }}
|