3 skills found
TUAN130294 / apiAPI Design Rules (REST) Naming & Versioning - RESTful, noun-based: `/api/v1/users/:id`, `/api/v1/reports/daily`. - Version in path (`/api/v1`); keep breaking changes behind new version. Requ
TUAN130294 / n8nn8n Workflow Rules (Detailed) Naming & Organization - Workflows named by intent: `Daily Sales Sync`, `Customer Count Ingest`. - Nodes named by action + target: `Fetch Sheets Orders`, `Upsert Ord
TUAN130294 / pythonPython (Automation & ML) Rules Style & Environment - PEP 8; format with Black; type hints required (`mypy` optional). - Virtual env: `python -m venv venv` then `source venv/bin/activate` or `ven