docs: fix agent-team uninstall label and update testing section#87
Draft
github-actions[bot] wants to merge 1 commit intomainfrom
Draft
docs: fix agent-team uninstall label and update testing section#87github-actions[bot] wants to merge 1 commit intomainfrom
github-actions[bot] wants to merge 1 commit intomainfrom
Conversation
- README.md: correct the 7th agent-team uninstall label from the non-existent `state:in-progress` to `agent-team:reviewed`, which matches the label set listed in catalog/agent-team/README.md - CONTRIBUTING.md: replace "there is no automated test harness" with an accurate description of the three-tier test suite in tests/, including how to run it, what each tier covers, and the fork-PR CI limitation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This was referenced May 1, 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.
What changed
Two documentation fixes surfaced during the post-merge sweep of #69.
1. README.md — wrong label in uninstall steps
The
agent-teamuninstall block listedstate:in-progressas the seventh label to delete. That label does not exist in the repo or in the agent-team install skill. The correct seventh label isagent-team:reviewed(the label the reviewer adds when it approves a PR), which is documented correctly incatalog/agent-team/README.mdprerequisites but was wrong in the top-level README.Before:
2. CONTRIBUTING.md — outdated testing section
The testing section opened with "There is no automated test harness for skills", which is incorrect. The repo ships a three-tier test suite (
tests/) that runs in CI on every PR. The section now accurately describes:./tests/run-tests.sh)CLAUDE_CODE_OAUTH_TOKENis not leaked)Why these weren't caught earlier
The label name discrepancy predates #69. The testing section was written before the test suite was added and was never updated. Neither affects runtime behavior — they are documentation-only errors.
Checklist
state:in-progress→agent-team:reviewedin README.md uninstall block