A tiny registry for agent-readable Markdown: SKILL.md, install prompts, runbooks, and deployment instructions that agents can fetch directly.
- Public registry and preview pages
- Raw Markdown endpoints at
/md/{owner}/{app}/{doc}.md - JSON APIs at
/api/appsand/api/docs - Studio publishing flow
- Local demo storage in
.data/demo.json - Vercel demo mode: read-only unless
DATABASE_URLis configured - Optional production write protection with
ADMIN_TOKEN - Optional persistent storage via Neon/Postgres + Drizzle
GitHub raw is great for developers. AgentMD Hub adds agent-first affordances:
- stable canonical
.mdURLs designed for prompts - app/doc metadata and discovery
- copy-ready agent instructions
- optional preview, validation, and publishing workflow
- future versioning, trust badges, analytics, and API tokens
pnpm install
pnpm devOpen http://localhost:3000.
Set DATABASE_URL to a Neon/Postgres connection string, then run:
pnpm db:migrate
pnpm db:seedOn Vercel, add environment variables:
DATABASE_URL=postgres://...
ADMIN_TOKEN=choose-a-long-random-token
NEXT_PUBLIC_SITE_URL=https://your-domain.vercel.appIf DATABASE_URL is absent on Vercel, the app stays read-only and serves seed data.