chore: bump TOOL_VERSION to 0.3.0 and fix stale module README#13
Open
bipinhcs11 wants to merge 1 commit into
Open
chore: bump TOOL_VERSION to 0.3.0 and fix stale module README#13bipinhcs11 wants to merge 1 commit into
bipinhcs11 wants to merge 1 commit into
Conversation
The top-level README already describes the project as v0.3, but TOOL_VERSION in crawler.py was still "0.2.0", so `skill-gen --version` reported the wrong string. Also fixes two stale spots in the tools module README: the JSON schema example showed "schema_version": 1 (the actual constant is 2), and the prose still said 0.2.0 with a "bump is planned" footnote that is now resolved. No logic changes; all 172 tests pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
TOOL_VERSIONincrawler.pyfrom"0.2.0"to"0.3.0".tools/skill_generator/README.md:"schema_version": 1; the actual constant (SCHEMA_VERSION) is2.0.2.0with a "bump is planned" footnote — that footnote was written before the host-agent refactor PRs merged; it is now resolved.Why
skill-gen --versionreportedskill-gen 0.2.0even though the top-level README, AGENT.md, and the project roadmap all describe the current state as v0.3. The tools README also had an internal contradiction: the JSON example already showed"tool_version": "0.3.0"while the prose two paragraphs later said the bump was "planned but not yet applied".After this PR,
skill-gen --versionprintsskill-gen 0.3.0, the JSON example matches the live schema version constant, and the "planned" footnote is gone.Changes
tools/skill_generator/crawler.pyTOOL_VERSION = "0.2.0"→"0.3.0"(1 line)tools/skill_generator/README.md"schema_version": 1→2in JSON example; prose updated to0.3.0; stale "bump planned" footnote removedTest impact
No logic changes. All 172 tests pass unchanged.
Follow-ups noted (not in this PR)
tests/test_update.py(29 tests forupdate.py). Once that merges the suite grows to ~201 tests.SCHEMA_VERSIONitself has no migration path documented — worth a note in AGENT.md if it ever increments to 3.https://claude.ai/code/session_01UgE2R62u5X7pgTyk8a4Pu7
Generated by Claude Code