Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions tools/skill_generator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Silently skipped: `target/`, `build/`, `.git/`, `generated/`, `.mvn/`, `node_mod

```jsonc
{
"schema_version": 1,
"schema_version": 2,
"scan": { "root": "...", "timestamp": "ISO-8601", "tool_version": "0.3.0" },
"stats": {
"java_classes": 23, "xml_files": 0, "config_files": 0,
Expand Down Expand Up @@ -151,6 +151,4 @@ If a project requires AST-level accuracy, the Python `javalang` library can be d

## Tool version & schema version

The current tool version is `0.2.0` (as reported by `skill-gen --version`, defined in `crawler.py` as `TOOL_VERSION`). The output JSON schema version is `2` (`SCHEMA_VERSION` in the same file). If the schema changes in a backwards-incompatible way (renamed fields, removed sections), `SCHEMA_VERSION` increments so downstream consumers can branch on it.

A bump to `0.3.0` to reflect the host-agent-driven refactor (PR-merged earlier) is planned but not yet applied to the constant; treat the version string as a build identifier rather than a marketing milestone.
The current tool version is `0.3.0` (as reported by `skill-gen --version`, defined in `crawler.py` as `TOOL_VERSION`). The output JSON schema version is `2` (`SCHEMA_VERSION` in the same file). If the schema changes in a backwards-incompatible way (renamed fields, removed sections), `SCHEMA_VERSION` increments so downstream consumers can branch on it.
2 changes: 1 addition & 1 deletion tools/skill_generator/crawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Constants
# ─────────────────────────────────────────────────────────────────────────────

TOOL_VERSION = "0.2.0"
TOOL_VERSION = "0.3.0"
SCHEMA_VERSION = 2

DEFAULT_EXCLUDE_DIRS = {
Expand Down