Powered by Claude AI

Docs that write
themselves.

Connect a GitHub repo. Every push triggers AI-generated documentation that stays perfectly in sync with your code — no manual work, ever.

src/lib/auth.ts

Your code

export async function getSession(req) {
  const token = req.cookies.get('token')
  if (!token) return null
  return verify(token, SECRET)
}

Generated docs

✓ auto-updated

getSession(req) → Session | null

Retrieves the current session from the request cookie. Returns the verified session payload, or null if no valid token is present.

authsession

Zero effort. Always up to date.

connect

Install on your repo

One click to add Readmify as a GitHub App. Works with any language or framework.

push

Push your code

Your normal workflow, unchanged. Readmify listens to every commit automatically.

done

Docs appear instantly

Claude analyzes the diff and updates only the docs that need to change.