Public mirror of github.com/HannahVernon/agent-readme-md. GitHub is canonical.
  • HTML 78.9%
  • PowerShell 13%
  • CSS 8.1%
Find a file
Hannah Vernon f49065540a Compare: fold in Skills-vs-file precedence feedback and deep-link the reply
Record hermes-agent-marcus-hampel's Skills/Memory precedence feedback in the 'Further feedback' section, stating our specificity-based-precedence position (spec section 6) over a fixed source-based ladder, and deep-link the reply in References. No spec change.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-07-20 15:50:59 -05:00
.github Remove mirror-sync workflow in favor of Forgejo periodic pull mirror 2026-07-07 12:02:37 -05:00
assets Add project mark, self-hosted adoption badge, and favicon 2026-07-07 10:19:54 -05:00
compare Compare: fold in Skills-vs-file precedence feedback and deep-link the reply 2026-07-20 15:50:59 -05:00
examples Spec: reorder guardrails after commands, emphasize repo-specific rules, per review 2026-07-07 14:06:35 -05:00
roadmap Genericize infra references, secure mirror workflow, add deploy version stamp 2026-07-07 11:41:47 -05:00
scripts Genericize infra references, secure mirror workflow, add deploy version stamp 2026-07-07 11:41:47 -05:00
spec Spec: reorder guardrails after commands, emphasize repo-specific rules, per review 2026-07-07 14:06:35 -05:00
.gitattributes Genericize infra references, secure mirror workflow, add deploy version stamp 2026-07-07 11:41:47 -05:00
.gitignore Add agent-readme.md static site: homepage, draft spec, self-referential example, and templates 2026-07-06 17:14:35 -05:00
agent-readme.md Spec: reorder guardrails after commands, emphasize repo-specific rules, per review 2026-07-07 14:06:35 -05:00
badge.svg Add project mark, self-hosted adoption badge, and favicon 2026-07-07 10:19:54 -05:00
CODE_OF_CONDUCT.md Add community health files, roadmap, and wire up GitHub community links 2026-07-07 10:54:37 -05:00
CONTRIBUTING.md Genericize infra references, secure mirror workflow, add deploy version stamp 2026-07-07 11:41:47 -05:00
index.html Spec: reorder guardrails after commands, emphasize repo-specific rules, per review 2026-07-07 14:06:35 -05:00
LICENSE Fix LICENSE detection: keep only CC BY 4.0 text, move multi-license note to README 2026-07-07 11:02:34 -05:00
README.md Genericize infra references, secure mirror workflow, add deploy version stamp 2026-07-07 11:41:47 -05:00
ROADMAP.md Add community health files, roadmap, and wire up GitHub community links 2026-07-07 10:54:37 -05:00
SECURITY.md Genericize infra references, secure mirror workflow, add deploy version stamp 2026-07-07 11:41:47 -05:00
web.config Add project mark, self-hosted adoption badge, and favicon 2026-07-07 10:19:54 -05:00

agent-readme.md

agent-readme

The website and reference for the AGENT-README.md convention: a single Markdown file that tells AI agents how to work in a project. Live at https://agent-readme.md.

README.md is for humans. AGENT-README.md is for the machines that now read your code.

What's here

This is a dependency-free static site: hand-authored HTML, one CSS file, and Markdown. There is no build step.

Path Purpose
index.html Homepage, styled as a rendered Markdown document
spec/index.html The draft AGENT-README.md specification (v0.1)
compare/index.html AGENTS.md vs. AGENT-README.md comparison
roadmap/index.html Project roadmap (mirrors ROADMAP.md)
examples/index.html Templates gallery
examples/AGENT-README.*.md Copy-paste starter templates (blank, Node, .NET, Python)
agent-readme.md The self-referential example, served from the site root
badge.svg The adoption badge, hotlinkable at /badge.svg
assets/style.css The single shared stylesheet
assets/logo.svg The project mark (also used as the favicon)
web.config Web server configuration (default document + .md served inline as UTF-8 text)
scripts/Deploy-Site.ps1 Deploys the crucial site files to a web server's document root

Local preview

Serve the repository root with any static file server, for example:

python -m http.server 8080

Then open http://localhost:8080/.

Deployment

The live site is served as static files at https://agent-readme.md. Because it is just static files, deployment is a copy of the site files into your web server's document root.

Use the included script to copy the deploy set (everything except repository-management files) into a target directory:

# Deploy to the default target
.\scripts\Deploy-Site.ps1

# Preview without changing anything
.\scripts\Deploy-Site.ps1 -WhatIf

# Target a specific directory, mirroring (removes stale files first)
.\scripts\Deploy-Site.ps1 -DestinationRoot 'D:\sites' -SiteFolderName 'agent-readme.md' -Clean

The included web.config maps .md to text/plain; charset=utf-8 so the root agent-readme.md renders inline in a browser while remaining trivially fetchable by agents.

Verifying what is live

Each deploy writes a version.json at the site root and stamps every page's <meta name="version"> tag (and the homepage footer) with the current commit. To confirm the live site matches the repository, compare the deployed commit against your checkout:

curl https://agent-readme.md/version.json
git rev-parse --short HEAD

A -dirty suffix on the deployed version means the site was built from a working tree with uncommitted changes.

Licensing

Copyright (c) 2026 Hannah Vernon.

Site prose and the specification are licensed CC BY 4.0 (see LICENSE). The starter templates under examples/ are released under CC0 1.0 so they can be dropped into any project without attribution. The small amount of source code (the deployment script and the SVG assets) is additionally available under the MIT License.