| name | ff-lib-word-rankings |
| description | Regenerate _docs/supplemental/ff-lib-word-definition-rankings.md — a table ranking every word in ff/lib by definition token count. |
ff/lib Word Definition Rankings
Use this skill when the task is to update _docs/supplemental/ff-lib-word-definition-rankings.md.
How it works
The script .agents/skills/ff-lib-word-rankings/generate-rankings.py:
- Walks
ff/lib (skipping __tests__/ dirs) for .ff and .ffp files.
- Strips block (
/* ... */) and line (// ...) comments.
- Parses every
name: body ; definition.
- Counts whitespace-separated tokens in the body.
- Writes a markdown table to
_docs/supplemental/ff-lib-word-definition-rankings.md sorted descending by token count, with today's date in the title.
Regenerate
python3 .agents/skills/ff-lib-word-rankings/generate-rankings.py
Optionally specify a different output path:
python3 .agents/skills/ff-lib-word-rankings/generate-rankings.py path/to/output.md