Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/vseplet/morph/agents-mdgit clone --depth 1 https://github.com/vseplet/morphWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.04307 | $0.04307 |
| Opus 5 | $0.02153 | $0.02153 |
| Sonnet 5 | $0.00861 | $0.00861 |
| Haiku 4.5 | $0.00431 | $0.00431 |
Grade A, and why
morph AGENTS.md scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
(c) => morph.page("/", homePage).fetch(c.req.raw), How it starts
The opening of the file, as written. The whole thing — 753 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Morph — Documentation for AI Agents
This document provides structured information for LLM agents to effectively build web applications using Morph.
Overview
Morph is a server-side rendering library for building web UIs with HTMX and Hono. Key characteristics:
- Runtime: Deno, Bun, or Node.js
- No build step: TypeScript runs directly
- Server-rendered: All components execute on the server
- HTMX-powered: Partial page updates without client JavaScript
Project Setup
File Structure (Minimal)
project/
├── deno.json # or package.json for Node/Bun
└── main.ts # entry point
File Structure (Recommended)
project/
├── deno.json
├── main.ts
├── components/
│ ├── layout.ts # wrapper, navigation
│ ├── pages/ # page components
│ └── partials/ # HTMX-updatable components
└── tests/
└── *.test.ts
Dependencies
// deno.json
{
"imports": {
"@hono/hono": "jsr:@hono/hono@4",
"@vseplet/morph": "jsr:@vseplet/morph"
}
}
Core Concepts
1. Components
Components are functions that return HTML templates.
import { component, html } from "@vseplet/morph";
// Basic component (no props)
const header = component(() =>
html`
<header>
<h1>My App</h1>
</header>
`
);
// Component with typed props
const userCard = component<{ name: string; email: string }>((props) =>
html`
<div class="user-card">
<h3>${props.name}</h3>
<p>${props.email}</p>
</div>
`
);
// Async component (can fetch data)
const userList = component(async (props) => {
const users = await fetchUsers();
return html`
<ul>
${users.map((u) => userCard({ name: u.name, email: u.email }))}
</ul>
`;
});
2. Available Props in Components
Every component receives MorphPageProps:
interface MorphPageProps {
request: Request; // Raw HTTP request
route: string; // Current route path
params: Record<string, string>; // URL params (:id -> params.id)
query: Record<string, string>; // Query string (?foo=bar -> query.foo)
headers: Record<string, string>; // Request headers
hx: () => string; // Returns hx-get attribute for self-refresh
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 753 lines · 4,307 tokens per session scan A d3aab6949f63
morph AGENTS.md is an instructions file published in the GitHub repository vseplet/morph (43 stars, last pushed 7mo ago), licensed MIT. It adds 4,307 tokens to every session, about $0.0215 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
react-starter-kit AGENTS.md
AGENTS.md instructions for kriasoft/react-starter-kit, covering monorepo structure, tech stack, commands, database: bun db:{push,generate,migrate,studio,seed,export} and verification.
ark CLAUDE.md
Claude Code instructions for chakra-ui/ark, covering ark ui - claude development guide, documentation structure, quick start, common commands and install dependencies.
react-starter-kit CLAUDE.md
Claude Code instructions for kriasoft/react-starter-kit, a project described as: Modern React starter kit with Bun, TypeScript, Tailwind CSS, tRPC, Stripe, and Cloudflare Workers. Production-ready monorepo for building fast web apps.
react-starter-kit copilot-instructions.md
Copilot instructions for kriasoft/react-starter-kit: Read AGENTS.md in the repository root and any subdirectory AGENTS.md files for project context, conventions, and architecture details before making changes.
syncular AGENTS.md
Instructions for syncular/syncular, covering syncular agent instructions, doctrine (enforced), coding rules, prose rules for docs and voice.
bun AGENTS.md
AGENTS.md instructions for oven-sh/bun, a project described as: Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one.