Skip to content

pantoken / ai/pantoken-ai/src / AGENTS_MD

Variable: AGENTS_MD

const AGENTS_MD: string = ASSETS.agents

Alpha

The AGENTS.md content (consumer usage guide).

Example

Serve the guide from an app route

ts
import { AGENTS_MD } from "@pantoken/ai";

export function GET() {
  return new Response(AGENTS_MD, { headers: { "Content-Type": "text/markdown" } });
}