← 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.hopskipdrive.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.hopskipdrive.com/index.md` (public path `/` → markdown `/index.md`)
- **Pages:** `https://www.hopskipdrive.com/{public-path}.md`
- **Articles:** `https://www.hopskipdrive.com/blog/{slug}.md`
- **Tags:** `https://www.hopskipdrive.com/tags/{slug}.md`
- **Team / people:** `https://www.hopskipdrive.com/about/bio/{slug}.md`

### Discovery (full URL lists)

- `https://www.hopskipdrive.com/llms.txt` — site summary and sample markdown links
- `https://www.hopskipdrive.com/markdown-index.txt` — complete markdown URL index
- `https://www.hopskipdrive.com/site-info.md` — factual site summary

### Notes

Primary articles are under /blog. Additional article-type routes (webinar, caredriver-events, etc.) also exist — see editor-pack routing.md and src/lib/constants.ts.

## 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.