Enumerate
AI maintainer team for Open Data Discovery — coordinates audit, gap-closing, and sustainable maintenance across ODD repositories using navigation indexes, coverage-tracked scanners, and structured work items.
npx -y skills add opendatadiscovery/odd-team --skill enumerateAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Generate or refresh coverage manifest for a scanner — lists ALL items in scope so scans can track progress across sessions.
SKILL.md
2.6 KB, 578 tokens by cl100k_base, as published. Nobody here has run it
Enumerate Scanner Scope
Generate or refresh the coverage manifest for scanner at $ARGUMENTS.
Protocol
-
Read scanner definition at
$ARGUMENTS:- Extract target repo, scope, and what constitutes an "item"
- Identify the glob pattern or enumeration method for items in scope
-
Check for existing manifest at
state/coverage/{scanner-id-dashed}.yaml:- If exists: this is a re-enumeration (detect new/changed/deleted items)
- If not: this is initial enumeration
-
Enumerate all items in scope:
- Use the appropriate method from
state/coverage/README.mdenumeration table - For code: glob the target repo for matching files/directories
- For docs: fetch/read SUMMARY.md or file listing
- For spec: list models/endpoints from spec files
- Record the current commit hash of the target repo
- Use the appropriate method from
-
Write or update manifest at
state/coverage/{scanner-id-dashed}.yaml:scanner_id: "{scanner-id}" scanner_path: "{path to scanner definition}" scope_description: "{what's being enumerated}" scope_source: "{glob pattern or method used}" target_repo: "{relative path to repo}" repo_commit_at_enumeration: "{current HEAD commit}" last_enumerated: "YYYY-MM-DD" total_items: N scanned_items: 0 coverage_pct: 0 items: - path: "{relative path within repo}" status: not-scanned # ... one entry per item -
For re-enumeration (manifest already exists):
- Compare current file list against manifest
- New files → add with status
new - Deleted files → mark status
deleted - For scanned items: check if changed since scan date via
git log --since={date} -- {path} - Changed items → set status
changed-since-scan, recordchanged_commit - Update
total_items,scanned_items,coverage_pct
-
Report:
- Total items in scope
- If re-enumeration: new items added, items changed, items deleted
- Suggested batch size for scanning (aim for 10-15 items per session)
Rules
- If
$ARGUMENTSis empty, list available scanners and ask which to enumerate - If target repo doesn't exist locally, report and stop (don't silently skip)
- Manifest must be deterministically ordered (alphabetical by path) for easy diffing
- Record exact commit hashes — they're how we detect changes later
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.