Welcome to Cofoundy Docs
Welcome
This is the publish layer between AI agents and humans. Markdown in, professional branded pages out.
How it works
- Claude Code generates a document (meeting notes, proposal, deliverable)
- The
/publishskill copies it here with the right frontmatter - Cloudflare Pages auto-deploys on push
- Team and clients get a live URL
Mermaid diagrams work
graph LR
A[Claude Code] -->|/publish| B[docs-ai repo]
B -->|git push| C[Cloudflare Pages]
C --> D[Team]
C --> E[Client]
C --> F[Public]
Access control
| Role | Visibility |
|---|---|
team | Cofoundy team only (Cloudflare Access) |
client | Client + team (Cloudflare Access) |
public | Everyone |
Code highlighting
def publish(doc_path: str, project: str, role: str) -> str:
"""Publish a markdown doc to Cofoundy Docs."""
frontmatter = generate_frontmatter(doc_path, project, role)
dest = copy_to_docs_repo(doc_path, frontmatter)
git_push(dest)
return f"https://docs.cofoundy.dev/{project}/{dest.stem}"
Tip: Use
/publishfrom Claude Code to publish any.mdfile instantly.