Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
- `src/` — application code grouped by feature/module. Keep files small and cohesive.
Sign in to like and favorite skills
src/ — application code grouped by feature/module. Keep files small and cohesive.tests/ — unit/integration tests mirroring src/ layout.scripts/ — one-off or automation scripts (CI, data, maintenance).assets/ or public/ — static files (images, styles, fixtures).docs/ — developer docs and diagrams.If a subproject exists (e.g.,
frontend/, backend/), each follows the same structure inside its folder.
make targets if present: make help, make dev, make build, make test, make lint.npm run dev, npm run build, npm test, npm run lint.pytest -q, ruff check ., black . (or run via make).Run commands from the project root unless a subproject
README states otherwise.
npm run lint && npm run formatruff check . && black .camelCase for variables/functions (JS/TS), snake_case (Python), PascalCase for classes, kebab-case for CLI files and script names.src/ structure under tests/.tests/test_*.py; JS/TS **/*.test.(js|ts|tsx).make test or npm test / pytest.feat: add user search, fix: handle null IDs.#123).cp .env.example .env.local and keep .env* in .gitignore.