A collection of small, standalone tools of various types — browser apps, scripts, and command-line utilities. Each tool lives in its own folder, is independent of the others, and can be used on its own.
| Tool | Type | Description |
|---|---|---|
| markdown-comments (source) | Browser | Review a Markdown document and attach inline notes to selected passages. Notes are saved into the file as <!-- 💬 ... --> annotations, so it stays valid Markdown and round-trips on reopen. |
- One folder per tool, named after what it does (kebab-case), with a short
README.mdexplaining what it does and how to run it. - Tools are self-contained: each folder carries everything the tool needs, with no dependencies on other folders in the repo.
- Browser tools are a single
index.htmlwith all libraries and assets inlined, so they work fully offline from afile://URL — no install, no server, no build step.