For coding agents
Get the files
Fetch AGENTS.md and the SKILL.md skill files straight into your repository — with curl, or by pasting one prompt into Claude.
The two files this section documents are also served raw, so a coding agent can pull them into a repository without anyone copying them out of a code block. They are the same content as the AGENTS.md and SKILL.md pages, carry this site's version stamp, and already point back here for the full reference.
| File | Raw URL | Where it goes |
|---|---|---|
| Agent guide | /AGENTS.md | your repository root |
| Harness skill | /SKILL.md | .claude/skills/verifi-harness/SKILL.md |
| MCP skill | /verifi-mcp.SKILL.md | .claude/skills/verifi-mcp/SKILL.md |
Fetch them with curl
The minimal version — the agent guide and the harness skill, into your project root:
curl -o AGENTS.md https://docs.verifi.pragyacyber.com/AGENTS.md
curl -o SKILL.md https://docs.verifi.pragyacyber.com/SKILL.mdOr paste this prompt into Claude
Open the repository where you are building a harness or an MCP, and paste this into Claude Code (or any coding agent). It downloads the files, drops the skills where an agent looks for them, and tells the agent to obey the rules inside:
Download the VERIFI SDK grounding files into this project and follow them.
curl -o AGENTS.md https://docs.verifi.pragyacyber.com/AGENTS.md
mkdir -p .claude/skills/verifi-harness .claude/skills/verifi-mcp
curl -o .claude/skills/verifi-harness/SKILL.md https://docs.verifi.pragyacyber.com/SKILL.md
curl -o .claude/skills/verifi-mcp/SKILL.md https://docs.verifi.pragyacyber.com/verifi-mcp.SKILL.md
Then read AGENTS.md and the relevant SKILL.md before writing any code, and obey their hard
rules — especially: never invent an API that is not in
node_modules/@pragyacyber/*/dist/index.d.ts, never write a credential into a file, and never
report success without pasting the real output of tsc and a local run.Notes
- The files are standalone. They name nothing inside the VERIFI monorepo and assume no checkout of it. The only thing baked in is this site's URL, so an agent that holds the file also knows where the full reference lives.
- Trim the half you do not need.
AGENTS.mdcarries both a harness section and an MCP section; delete whichever does not apply. - The agent guide is also served at
/AGENT.md(singular), for anyone who reaches for that name. It is byte-for-byte identical to/AGENTS.md.