skill-check does not scan README.md or CONTRIBUTING.md #220
Open
opened 2026-08-26 07:36:59 +00:00 by logan
·
2 comments
No Branch/Tag Specified
main
fix/146-stub-etxtbsy
fix/175-wizard-follows-the-library
fix/231-setter-rollback
fix/197-duplicate-column-label
docs/225-fixtures-wav-tags
docs/220-skill-check-scope
test/217-fixture-names-in-queue-selection
fix/216-riff-parse-allocation
fix/170-queue-header-action-names
fix/210-nav-sheet-scroll-affordance
docs/50-readme-landing-page
feat/65-art-prefetch-ahead
feat/71-more-as-a-bottom-sheet
feat/54-native-touch-feel
feat/67-entity-links-into-menus
test/196-visual-tier-gates
fix/138-ui-test-storage-leak
fix/104-wav-tags-read
fix/207-sheet-scroll-affordance
fix/204-ui-visual-update-filter
pi-agent-backlog-automation
63-touch-model-phase-2
63-android-touch-model
186-touch-targets-settings
186-touch-targets-page-header
187-seek-bar-hit-area
189-190-explore-correctness
135-android-underrun-instrumentation
51-android-small-screens
fix/171-phone-queue-scrim
fix/137-touch-only-affordances
fix/154-nested-css-check
feat/58-mini-player-progress-line
fix/66-album-page-scrolls-as-one
60-context-menu-action-sheet
64-android-system-volume
59-slim-the-mini-player
55-queue-as-a-screen
feat/57-drop-the-android-top-bar
feat/62-jobs-as-a-notification
fix/53-seek-bar-never-moves
fix/159-android-task-app-id
fix/52-android-activity-recreation-restarts-the-process
fix/150-expand-button-under-the-art
feat/42-inline-volume-and-centred-transport
fix/156-queue-selection-fixture-order
fix/151-fuse-the-scroll-guard-and-the-write
fix/43-queue-panel-selection
fix/143-top-bar-fits-its-window
feat/27-jobs-into-settings
feat/25-configurable-sidebar-tabs
feat/6-global-back-forward
fix/72-active-view-broadcast
fix/69-page-header-action-overflow
fix/quick-wins-batch
fix/118-in-library-clear
fix/61-mini-player-plain-text
fix/68-hover-affordances-pointer
fix/119-dev-headless-port
fix/130-issue-claim-user
fix/131-codegen-check-scope
feat/28-autotag-match-on-album
feat/17-demote-version-selector
feat/38-ownership-visibility
ci/115-manual-release
feat/34-icon-language
feat/7-full-tracklist-toggle
fix/16-tagwriter-totals
fix/unclaim-ca-certs
fix/unclaim-shell
ci/unclaim-on-close
docs/closing-keyword
docs/retire-stale-planning-docs
docs/issue-driven-workflow
integration/small-fixes
fix/small-issue-batch
fix/queue-toggle-state
fix/drag-count-badge
fix/album-card-year
fix/album-tracklist-heading
fix/seek-bar-clock-width
fix/explore-art-scanner-requests
chore/workflow-guardrails
v0.7.0
v0.6.0
v0.5.0
v0.4.0
v0.3.1
v0.3.0
v0.2.3
v0.2.2
v0.2.1
v0.2.0
v0.1.0
v0.0.1
v0.0.0
Labels
Clear labels
Area/Design
Area/Downloads
Area/Explore
Area/Library-UI
Area/Metadata
Area/Packaging
Area/Player
Area/Queue
Area/Settings
Area/Shell-Nav
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Platform/Android
Platform/Desktop
Breaking change that won't be backward compatible
Something is not working
Documentation changes
Improve existing functionality
New functionality
This is security issue
Issue or pull request related to testing
Priority
Critical
1
The priority is critical
Priority
High
2
The priority is high
Priority
Medium
3
The priority is medium
Priority
Low
4
The priority is low
Reviewed
Confirmed
1
Issue has been confirmed
Reviewed
Duplicate
2
This issue or pull request already exists
Reviewed
Invalid
3
Invalid issue
Reviewed
Won't Fix
3
This issue won't be fixed
Status
Blocked
1
Something is blocking this issue or pull request
Status
Need More Info
2
Feedback is required to reproduce issue or to continue work
Status
Abandoned
3
Somebody has started to work on this but abandoned work
Status
In Progress
Somebody is actively working on this right now
Milestone
No items
No Milestone
Projects
Clear projects
No projects
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: yonlu/yellowjacket#220
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Report
scripts/skill-check.shasserts that everymake <target>named in anagent-facing doc exists. Its scanned set is
.pi/**/*.mdplusCLAUDE.md. It does not scanREADME.md, and as of #50 it does notscan
CONTRIBUTING.mdeither — which is now the document a humancontributor reads a build command out of.
CONTRIBUTING.mdnames 21 make targets (setup,dev,build-dev,build-prod,android,generate,bindings,bindings-check,lint,test,ui-test,e2e,css-check,dev-headless,sandbox-seed,dev-logs,dev-stop,testdata,vulncheck,commit-check,release-dry). All 21 exist today; nothing would sayso if one were renamed.
The script's own header states the reason it exists — "a renamed or
deleted target turns into a failing commit rather than into an agent
confidently running a command that no longer exists". The same
sentence is true of a person, and the contributor-facing doc is
precisely where somebody who has not read the Makefile goes looking.
A second, smaller half. The lefthook
pre-commitglob for thischeck is
{Makefile,.pi/**/*.md}while the script scans.pi/andCLAUDE.md, so a commit touching onlyCLAUDE.mddoes not fire thehook at all. CI's
make skill-checkstep catches it, so this is aslower feedback loop rather than a hole — but the glob and the script
disagreeing about their own scanned set is the kind of drift the check
exists to prevent.
Direction
Add
README.mdandCONTRIBUTING.mdto thefind/echolist inscripts/skill-check.sh, and widen the lefthook glob to match whateverthe script ends up scanning. The fence rule the script already applies
matters more in these two files than in
.pi/: both are mostlyhard-wrapped prose, and the backtick-anywhere half of the rule is what
will actually match, since the commands in them are in fenced blocks or
inline code.
Worth checking while there: a bare
makemention that is deliberatelynot a target (there is none today) would need the same treatment the
.pi/docs get.Found while doing #50, which created
CONTRIBUTING.md. Filedrather than fixed there, because changing what a CI gate scans is a
separate change from moving prose between two files.
Picking this up on
docs/220-skill-check-scope.Approach, as the issue's Direction states it: add
README.mdandCONTRIBUTING.mdto the script's scanned set, widen the lefthookpre-commitglob so it matches whatever the script scans (it is{Makefile,.pi/**/*.md}today, which missesCLAUDE.mdas well), andextend the failure message's
grepso it names the new files when itreports a missing target.
Verified by planting a bad
maketarget in each newly-scanned file inturn and checking the script actually fails on it, rather than by
trusting that widening the list was enough.
PR open: #229 (
docs/220-skill-check-scope), commit26251ba.README.mdandCONTRIBUTING.mdare in the scanned set, the file listis one variable rather than two copies, and the lefthook glob is that
set — which also closes the smaller half here, since it did not fire on
CLAUDE.mdeither.Verified by planting a bad target rather than by reading the diff: both
matched forms in each of the four scanned surfaces, each naming the
right file; the same plants pass on the pre-change script; unfenced
prose still does not match; and the hook fires on a staged
CONTRIBUTING.mdunder the new glob where the old one reported(skip) no matching staged files. The target count is unchanged at 47,because the set is a union — coverage moved, the count could not.
CI green (run 18244, re-run):
checkande2eboth success. Thefirst attempt failed on #146's
yt-dlpflake, which this branch cannothave caused — it contains no Go — and the diagnosis it produced is on
that issue.
Filed #228 for the one thing found and deliberately not fixed here:
a
make …span the file hard-wraps across two lines is matched bynothing, and
CONTRIBUTING.md:80already holds one. Nothing is brokentoday; a target named only inside a wrapped span would be missed.
Not merged.