Coding
PromptBeginner5 minmarkdown
Markdown Converter
Agent skill for markdown-converter
7
Guidance for Claude Code when collaborating on this repository.
Sign in to like and favorite skills
Guidance for Claude Code when collaborating on this repository.
uv: run uv venv, then uv pip install -r requirements.txt.uvicorn app.main:app --reload or uv run uvicorn app.main:app --reload.README.md for service configuration details.report/PROGRESS.md, report/summary/DIARY01.md, report/summary/DIARY02.md, report/summary/DIARY03.md, report/summary/DIARY04.md, report/summary/DIARY05_SUMMARY.md, and report/DIARY06.md to capture current objectives and context.
pytest until the suite succeeds.report/PROGRESS.md and logging a new entry in report/DIARY06.md that summarizes the changes and decisions.instructions/prompts, especially 02_codex_review_prompt.md when coordinating with Codex outputs.00_implementation_guide.md and 01_backend_implementation_guide.md to align with architectural expectations.pytest to cover unit and integration paths, expanding scenarios in line with the documented test plan as needed.In this project, we unify 2D grid indexing to row-major format:
grid[y][x] or grid[row][col]Example:
# โ Correct obstacles = [[False for _ in range(width)] for _ in range(height)] if obstacles[y][x]: # y=row, x=col ... # โ Incorrect obstacles = [[False for _ in range(height)] for _ in range(width)] if obstacles[x][y]: ...