What problem does it solve? Keeping per-file documentation in sync with code is tedious and often skipped. This Skill makes documentation generation a mandatory, lint-like step: for every new or modified code file (js/mjs/ts/vue/py), it produces a concise behavioral markdown document in Ukrainian inside a docs/ folder next to the code. ## Core Features & Use Cases - Automated doc generation: Creates laconic Ukrainian markdown documentation describing the behavior of each changed or new code file. - Staleness detection via CRC: Stores a CRC checksum in the document frontmatter to detect when the source file has changed and the documentation is outdated. - JS-orchestrated workflow: Coordinates generation through JavaScript tooling, delegating detailed instructions to the referenced .cursor/skills/n-doc-files/SKILL.md. - Use Case: After modifying several TypeScript modules in a monorepo, run this Skill to regenerate docs/ markdown files for each changed module and flag any documents whose CRC no longer matches the source. ## Quick Start Generate or update Ukrainian markdown documentation in the docs/ folder for every code file I changed in this task.