docs: fix agent-team uninstall labels and update contributing test section#91
Draft
github-actions[bot] wants to merge 1 commit into
Draft
Conversation
…section - README.md: replace nonexistent `state:in-progress` with the actual `agent-team:reviewed` label in the agent-team uninstall instructions (the skill creates 7 labels: agent-team, agent-team:reviewed, and state:plan-needed/impl-needed/review-needed/done/blocked) - CONTRIBUTING.md: replace "There is no automated test harness" with an accurate summary of the three-tier test suite in tests/, linking to tests/README.md for full details; tier-1+tier-2 already run in CI Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced May 2, 2026
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.
Two documentation gaps identified during a post-push doc sweep:
Changes
README.md — fix agent-team uninstall label list
The uninstall instructions listed
state:in-progress(a label that does not exist) and omittedagent-team:reviewed(which the install skill creates). Cross-checked againstskills/install-agent-team/SKILL.mdstep 6, which is the authoritative source for the seven labels the skill creates:agent-team+state:{plan-needed,impl-needed,review-needed,done,blocked,in-progress}agent-team+agent-team:reviewed+state:{plan-needed,impl-needed,review-needed,done,blocked}CONTRIBUTING.md — replace stale "no test harness" claim
The testing section said "There is no automated test harness for skills" but a full three-tier test suite has existed since the initial commit (
tests/,tests/run-tests.sh, andtests/README.md). Replaced the claim with an accurate overview table and a link totests/README.mdfor full details. Tier-1 + tier-2 already run in CI on every PR.Testing
skills/install-agent-team/SKILL.mdlines 74–80 andcatalog/agent-team/README.mdline 101.