feat(skills): add 4090:verify — W0 substrate artifact check - #1601
Conversation
7-point verification skill: SKILL.md no BLOCKED notices, unifi_topology wired in json-to-profile.py, TAC probe-wire status=done, hydrated credentials for GH_PAT_PUBLISH/ANTHROPIC_API_KEY/GHCR_USERNAME, and local secrets bundle exists at APPDATA host config dir. Codifies the post-PR-1599 + post-secrets-funnel verification workflow so any W0 merge or funnel run can be confirmed in one invocation. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Caution Review failedPull request was closed or merged during review 📝 WalkthroughWalkthroughThis PR adds a verification SKILL runbook for the Changes4090 Verification Runbook
Possibly related PRs
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 169ec7c5ff
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| } | ||
|
|
||
| # 1. node-4090-probe SKILL.md: no BLOCKED notice | ||
| BLOCKED=$(grep -c "BLOCKED" .claude/skills/node-4090-probe/SKILL.md 2>/dev/null || echo "99") |
There was a problem hiding this comment.
Make BLOCKED count check succeed on zero matches
The first verification check is currently a false-negative in the healthy case: grep -c prints 0 when no BLOCKED lines are present but exits with status 1, so the || echo "99" branch also runs and BLOCKED becomes a multi-line value (0\n99). That makes [ "$BLOCKED" = "0" ] fail even when the probe skill has no BLOCKED notice, so this script reports failure on valid main branches.
Useful? React with 👍 / 👎.
|
|
||
| # 3. TAC: probe-wire status=done (PR #1599) | ||
| check "TAC: probe-wire status=done" \ | ||
| "grep -A8 'probe-wire' pmoves/configs/tac_trees/node-4090-laptop.tac.yaml | grep -q 'status: done'" |
There was a problem hiding this comment.
Search full probe-wire block for status instead of -A8
The TAC check can fail even when probe-wire is done because it only scans 8 lines after the probe-wire match. In pmoves/configs/tac_trees/node-4090-laptop.tac.yaml, status: done is farther down due the multiline instruction block, so this command misses it and emits a false failure. As written, the skill’s expected “ALL CHECKS PASSED” output is not achievable on the current valid TAC layout.
Useful? React with 👍 / 👎.
Summary
4090:verifyat.claude/skills/node-4090-verify/SKILL.mdunifi_topologywired, TACprobe-wiredonedeploy:secrets-funnel)Test plan
main— expect 3✓lines andALL CHECKS PASSEDnode-4090-verify🤖 Generated with Claude Code
Summary by CodeRabbit