basic-blog AGENTS.md

Repository instructions for working on a blog content-management package, its examples, and its automated release process. They explain the project layout and how version tags publish the package to npm, a JavaScript package registry.

In plain words
What is it for?
Making focused code changes, following existing project patterns, updating the package version, and completing an npm release through the repository’s automated checks.
Why use it?
It gives coding agents the project rules and the exact release steps, reducing mistakes in a multi-package repository and preventing version tags from publishing the wrong package version.

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/daocodotorg/basic-blog/agents-md
Clone the repo
git clone --depth 1 https://github.com/daocodotorg/basic-blog

Made for: Codex, OpenCode.

Per session 618 This file is loaded in full into every session.
When invoked 618 The same file — it is already loaded in full.
Security scan A 0 findings. 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.00618 $0.00618
Opus 5 $0.00309 $0.00309
Sonnet 5 $0.00124 $0.00124
Haiku 4.5 $0.00062 $0.00062

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

Security

Grade A, and why

basic-blog AGENTS.md scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

AGENTS.md · 50 lines

How it starts

The opening of the file, as written. The whole thing — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent notes — basic-blog monorepo

Scope

Monorepo for basic-blog-convex-blog-cms (npm package under packages/convex-blog-cms/), examples, and CI. Agents should prefer small, task-focused diffs and match existing patterns in touched files.

npm release (automatic when version changes)

Publishing is not triggered by commits to main alone. The GitHub Action Release (.github/workflows/release.yml) runs only when a version tag is pushed:

  • Tag pattern: v* (e.g. v0.1.9).
  • The workflow checks that the tag without the leading v equals packages/convex-blog-cms/package.jsonversion. Mismatch fails the job.

When to tag

After you (or a user) bump packages/convex-blog-cms/package.json version and that change is on main (merged / pushed), finish the release by pushing the matching tag so CI publishes to npm and creates a GitHub Release.

Commands (agent should run these unless the user opts out)

Replace X.Y.Z with the exact version string from packages/convex-blog-cms/package.json. Use main (or the specific release commit SHA) as the tag target.

cd /path/to/basic-blog
git fetch origin
V="X.Y.Z"  # must match package.json, e.g. 0.1.9

# Remove a wrong or stale tag on the remote (safe if absent)
git push origin ":refs/tags/v${V}"

# Remove local tag if it exists so we can recreate
git tag -d "v${V}" 2>/dev/null || true

# Point the tag at the commit that contains the bumped package.json
git tag "v${V}" origin/main   # or: git tag "v${V}" <sha>

git push origin "v${V}"

Then confirm Actions → Release succeeded.

Rules of thumb

  1. Never invent a tag version that does not match package.json.
  2. If the user asks to re-run a release for the same version, delete the remote tag and recreate it on the correct commit, then push again (re-pushing an identical tag does not retrigger push workflows on GitHub).
  3. Trusted publishing / NPM_PUBLISH_TOKEN is configured on the repo; agents do not need to run npm publish locally for the canonical release.

Read the full file on GitHub · 50 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 · 50 lines · 618 tokens per session scan A 47f2a0a21f6e

Subscribe to this mod's changes

basic-blog AGENTS.md is an instructions file published in the GitHub repository daocodotorg/basic-blog (4 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 618 tokens to every session, about $0.0031 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

ledric CLAUDE.md

Claude Code instructions for getledric/ledric, covering claude.md, repo shape, common commands, workspace-wide and single-package.

getledric/ledric · 4,235 tokens

payload CLAUDE.md

Instructions for payloadcms/payload, covering claude.md, project structure, key directories, architecture notes and quick start.

payloadcms/payload · 5,127 tokens

payload AGENTS.md

Instructions for payloadcms/payload, a project described as: Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.

payloadcms/payload · 12 tokens

sonicjs AGENTS.md

Instructions for SonicJs-Org/sonicjs, covering sonicjs agent guidelines, decision tree — code exploration, rtk (rust token killer), caveman mode and delegation — cavecrew subagents.

SonicJs-Org/sonicjs · 2,447 tokens

openrouter-mcp-multimodal AGENTS.md

Instructions for stabgan/openrouter-mcp-multimodal, covering agent instructions, before you ship, releasing (read this before publishing), short version and version files (must all match package.json).

stabgan/openrouter-mcp-multimodal · 783 tokens

sonicjs CLAUDE.md

Instructions for SonicJs-Org/sonicjs, covering sonicjs ai development guidelines, core technology stack, workspace boundary (conductor), architecture direction: document model (authoritative) and the 5 document tables (migration 0002documents.sql).

SonicJs-Org/sonicjs · 4,697 tokens