morph AGENTS.md

Project instructions for Morph, a server-side library for building web pages with HTMX and Hono. Server-side means the application creates the HTML on the server; HTMX updates parts of a page without requiring a full client-side application.

In plain words
What is it for?
Use it to set up and organize Morph projects, create HTML components and pages, and write tests.
Why use it?
It explains the expected project layout, runtime options, dependencies, and component style for agents working on Morph applications.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/vseplet/morph/agents-md
Clone the repo
git clone --depth 1 https://github.com/vseplet/morph

Made for: Codex, OpenCode.

Per session 4,307 This file is loaded in full into every session.
When invoked 4,307 The same file — it is already loaded in full.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce 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

Measured 2d ago against content hash d3aab6949f63, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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),
AGENTS.md · 753 lines

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
}

Read the full file on GitHub · 753 lines

Changes

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.

  1. 2d ago First seen · 753 lines · 4,307 tokens per session scan A d3aab6949f63

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories