Annotate
Complete Claude Code environment: global guidelines, skills, hooks, settings, version-controlled memory and learnings, and shared git config
npx -y skills add AnotherSava/claude-code-common --skill annotateAssembled 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
Annotate any file in Plannotator's browser UI. Markdown and HTML files are passed through directly; other files are wrapped in a temporary `.md` with a fenced code block, annotated, then the temp file is deleted.
SKILL.md
2.4 KB, as published. Nobody here has run it
Annotate
Use this skill when the user wants to annotate an arbitrary file in Plannotator — not just markdown/HTML.
Argument: a single file path.
Behavior
-
.mdor.html(case-insensitive) — invoke theplannotator-annotateskill on the file directly. -
Anything else:
-
Create a temp
.mdin the system temp dir:mktemp -t annotate.XXXXXX.md(Git Bash / WSL) orNew-TemporaryFilerenamed to.md(PowerShell). -
Write into it:
# `<original-path>` ```<lang> <file contents verbatim> ```<lang>is the language tag inferred from the original file's extension (see table). Omit the tag entirely for unknown extensions. -
Invoke the
plannotator-annotateskill on the temp file path. -
Treat returned annotations as if they referred to the original file. When you address them — edits, follow-ups, mental model — the original path is the source of truth. The temp
.mdis a presentation surface only. -
Delete the temp file when done (success, failure, or no annotations). Use a
trap/try-finallyso cleanup runs even on errors.
-
Extension → language tag
| Extension(s) | Tag |
|---|---|
.py | python |
.js, .mjs, .cjs | javascript |
.ts | typescript |
.tsx, .jsx | jsx |
.rs | rust |
.go | go |
.java | java |
.kt, .kts | kotlin |
.cs | csharp |
.cpp, .cc, .cxx, .hpp, .h | cpp |
.c | c |
.sh, .bash | bash |
.ps1 | powershell |
.json | json |
.yaml, .yml | yaml |
.toml | toml |
.xml | xml |
.css, .scss | css |
.sql | sql |
.rb | ruby |
.php | php |
.swift | swift |
.ahk | autohotkey |
.lua | lua |
.gradle | groovy |
.dockerfile, Dockerfile | dockerfile |
Unknown extension: emit a bare ``` fence with no language tag.
Notes
- Do not transform or summarize the file content — copy it byte-for-byte into the fence.
- For very large files (> ~1 MB), warn the user before proceeding — Plannotator's UI may struggle.
- Binary files are out of scope — refuse if the file is not plain text.