netra-best-practices
Installation
SKILL.md
Netra Best Practices
Use this skill as the end-to-end guide for integrating, operating, and improving AI systems with Netra.
Step 1 — Detect Project Language
Before doing anything else, determine whether the project is Python or TypeScript/JavaScript. Check the project root in this order:
| Signal file | Language |
|---|---|
pyproject.toml, setup.py, requirements.txt, Pipfile |
Python |
package.json, tsconfig.json, bun.lockb |
TypeScript / JavaScript |
If both are present (monorepo), ask the user which sub-project they are working on. If neither is found, ask the user.
From this point forward, use ONLY the references for the detected language. Never mix Python and TypeScript patterns.