agents/code/SKILL.md
ALWAYS follow this style when writing Python / JavaScript code
npx skillsauth add sanand0/scripts codeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Prefer uv run --with pkg1 --with pkg2 script.py, uvx --from pkg cmd over python or python3
Avoid requirements.txt. Unless pyproject.toml is present, add dependencies as PEP 723 metadata:
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.14"
# dependencies = ["scipy>=1.10", "httpx"]
# ///
Preferred libs:
Prefer modern HTML:
Preferred JS style:
?., ??, destructuring, spread, implicit returns (=> over => { return })// @ts-check. .d.ts is OK for packagesPreferred libs: d3, hljs, lit-html, marked, partial-json
Debug front-end apps with agent-browser or Playwright via CDP on localhost:9222.
For single-page HTML files try file:// before spinning up a server.
documentation
To write in Anand's style in blog posts, talk summaries, interview questions, emails, ...
testing
Use vitest + jsdom for fast, lightweight unit tests for front-end apps
data-ai
Vector art assets (characters, objects, scenes) sources for SVG/Canvas and how to animate them
tools
Tips on using uv and uvx (Python build tools) effectively with GitHub, Torch, etc.