diff --git a/AGENTS.md b/AGENTS.md index 5bed565..53bae1b 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -16,8 +16,11 @@ access. Do NOT parse the RST source under `src/` directly. If `dist/markdown/` is not available locally, the specification (including this `AGENTS.md`) can be retrieved from -`specs.code.tiararodney.com`, which provides HTML indexes that can be -traversed to locate the applicable markdown files. +`specs.code.tiararodney.com`: + +- Specification: `https://specs.code.tiararodney.com/mime-todo/markdown/README.md` +- Agent instructions: `https://specs.code.tiararodney.com/mime-todo/markdown/AGENTS.md` +- Index: `https://specs.code.tiararodney.com/mime-todo/markdown/` ## What This Spec Defines diff --git a/Makefile b/Makefile index 71f7e95..4e799c8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: clean -all: build/html build/markdown +all: build/html dist/markdown publish build/html: sphinx-build -b html src build/html @@ -8,5 +8,9 @@ build/html: dist/markdown: sphinx-build -M markdown src dist +publish: + rsync -rv dist/markdown build/html root@tiararodney.com:/root/webserver/srv/http/spec.tiararodney.com/mime-todo + + clean: rm -rv build