Files
thewh1teagle--vibe/AGENTS.md
T
wehub-resource-sync 289935721d
Deploy Website / build (push) Has been cancelled
Deploy Website / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:28:21 +08:00

1.5 KiB

Claude Development Notes

Package Managers

  • JavaScript/Node.js: pnpm (sometimes pnpx)
    • The entire repo uses pnpm only (no alternative JS package managers)
    • Install deps: pnpm install
    • Run scripts: pnpm <script> (e.g. pnpm dev, pnpm build)
    • Execute packages: pnpm exec <cmd> or pnpx <cmd>
  • Python: uv
    • Add deps to scripts: uv add --script example.py <packages> --bounds exact
    • Run scripts: uv run example.py
    • Create scripts: uv init --script example.py --python 3.12
    • Run inline: uv run python -c "print('Hello, world!')"

Validation

For each plan, you can create self-contained validation scripts.

Structure:

  • plans/<name>/<name>_001.py
  • plans/<name>/<name>_001.md

Each Python file should be a standalone uv script with its own dependencies declared at the top.

Example:

uv run plans/<name>/<name>_001.py

Skills

Custom skills are located in the .skills/ folder.

Execution Mindset

Think in agent mode, not human mode. Assume nonstop focus, parallel moves, and instant iteration. Push timelines aggressively, speed is the default. If something feels heavy, split it until it becomes obvious and fast. Estimate effort by output size: 300 lines = minutes, not hours. You are a token engine. Speed means doing it right the first time. Never take the easy path over the correct one. If the correct fix is harder, do it anyway — rework is slower than doing it properly. If the plan is fully resolved, execute immediately. Don't re-analyze.