fix: remove first-run friction from the maintainer workflow - #271
Merged
LadyBluenotes merged 1 commit intoSep 11, 2026
Merged
Conversation
Contributor
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Advanced Run ID: 📒 Files selected for processing (10)
📝 WalkthroughWalkthroughThe PR updates maintainer package inference, review recording validation, review ignore patterns, package skill publication checks, and workflow version guidance. It replaces scaffold documentation, adds tests for these behaviors, and includes a patch changeset. ChangesIntent workflow updates
Estimated code review effort: 3 (Moderate) | ~25 minutes Change: Bug fix Sequence Diagram(s)sequenceDiagram
participant MaintainerCLI
participant ReviewCommand
participant SkillTree
participant RepositoryFiles
participant ReviewState
MaintainerCLI->>RepositoryFiles: create maintainer and skill files
ReviewCommand->>SkillTree: read review.ignore patterns
ReviewCommand->>RepositoryFiles: collect files and diffs
ReviewCommand->>ReviewCommand: exclude ignored paths
ReviewCommand->>ReviewState: record annotated review outcomes
✨ Finishing Touches📝 Generate docstrings
🧪 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 |
This was referenced Sep 11, 2026
LadyBluenotes
added this pull request to stack #274
September 11, 2026 22:02
LadyBluenotes
force-pushed
the
fix/maintainer-first-run
branch
from
September 11, 2026 22:22
7a34911 to
fcc941c
Compare
LadyBluenotes
force-pushed
the
fix/maintainer-first-run
branch
from
September 11, 2026 22:25
fcc941c to
17e61da
Compare
Files Intent writes (agent instruction blocks, generated plugin metadata, the CI workflow, package manifests) and lockfiles no longer surface as unmapped source changes unless a skill maps them. skill_tree.yaml accepts review.ignore for repository-specific patterns. maintainer add registers a skill with the workspace package that owns the current directory instead of silently placing it at the repository root. review --record rejects a report that annotates nothing and names the required fields. validate accepts the per-skill files entries maintainer sync writes. The workflow version constant matches the shipped template.
LadyBluenotes
force-pushed
the
fix/maintainer-first-run
branch
from
September 11, 2026 22:30
17e61da to
dc4857b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎯 Changes
Stacked on #268. Walking
maintainer setup→add→sync→checkon a fresh library failed for reasons unrelated to the library's guidance. This fixes the traps a first-time maintainer hits.AGENTS.md/CLAUDE.md/.cursorrules/copilot instructions,.claude-plugin/**,.cursor-plugin/**,.github/workflows/check-skills.yml,.intent/**,**/package.json, and lockfiles no longer appear assourcereview items. A skill that maps one of these paths insourcesstill tracks it.skill_tree.yamlacceptsreview: { ignore: [<git globs>] }for repository-specific patterns; invalid entries fail with a named path.maintainer addinfers--packagefrom the current directory. Running it inside a workspace member registers the skill with that member instead of silently creatingskills/<name>at the repository root with sources that match nothing. An explicit--packagestays repository-relative.review --recordrejects a report that annotates nothing. Previously it printedRecorded 0 review outcome(s).and exited 0. It now names the required fields (outcome,reason,evidence) and points tomaintainer review --interactive. Next-step text inreview,maintainer check, and the recording hint agree on one command spelling.validateaccepts per-skillfilesentries.maintainer syncwritesskills/<name>;validatethen warned that"skills"was missing. It now checks that each skill directory is covered and names the uncovered one. The!skills/_artifactswarning applies only when the wholeskillsdirectory is published and_artifactsexists.check-skills.yml, so repositories on version 4 receive the update advisory.scaffoldcommand.✅ Checklist
pnpm run test:pr.🚀 Release Impact
Summary by CodeRabbit
New Features
Documentation