← All playbooks · Raw API
production-site
# Production site
How to read **published** HTML and Markdown from the live site.
Configured in `project.json` → `website.productionSiteUrl` and `website.markdownAccess`.
**Do not guess** markdown URLs — use the patterns below.
## Production URL
https://www.om1.com
## Markdown access
Append `.md` to the **public HTML path** (the URL visitors see — may differ from CMS slugs; see `routing.md`).
### URL patterns
- **Homepage:** `https://www.om1.com/index.md` (public path `/` → markdown `/index.md`)
- **Pages:** `https://www.om1.com/{public-path}.md`
- **Articles:** `https://www.om1.com/resources/{type}/{topic}/{slug}.md`
- **Tags:** `https://www.om1.com/topics/{slug}.md`
- **Team / people:** `https://www.om1.com/team/{slug}.md`
### Discovery (full URL lists)
- `https://www.om1.com/llms.txt` — site summary and sample markdown links
- `https://www.om1.com/markdown-index.txt` — complete markdown URL index
- `https://www.om1.com/site-info.md` — factual site summary
### Notes
Ebooks omit the topic segment: /resources/ebooks/{slug}.md (see TOPICLESS_ARTICLE_TYPE_SLUGS).
## Agent rules
1. **Do not guess** — use the patterns above, `routing.md`, or fetch `llms.txt` / `markdown-index.txt`.
2. Use `cms_edit` (`open`, `list`, `snapshot`) for **editing CMS drafts**; use production `.md` URLs for **reading published content**.
3. Map CMS slugs to public paths via `routing.md` before building a markdown URL.