Welcome to Cofoundy Docs

team cofoundy v1 ·by andre ·Mar 22, 2026 equiporeference

This is the publish layer between AI agents and humans. Markdown in, professional branded pages out.

How it works

  1. Claude Code generates a document (meeting notes, proposal, deliverable)
  2. The /publish skill copies it here with the right frontmatter
  3. Cloudflare Pages auto-deploys on push
  4. 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

RoleVisibility
teamCofoundy team only (Cloudflare Access)
clientClient + team (Cloudflare Access)
publicEveryone

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 /publish from Claude Code to publish any .md file instantly.