Borrowing it
Nothing to install: this file belongs to andreszs/ComfyUI-OpenPose-Studio. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/andreszs/ComfyUI-OpenPose-Studio/main/AGENTS.mdgit clone --depth 1 https://github.com/andreszs/ComfyUI-OpenPose-StudioWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/andreszs/comfyui-openpose-studio/agents-md)<a href="https://agentmods.dev/instructions/andreszs/comfyui-openpose-studio/agents-md"><img src="https://agentmods.dev/badge/instructions/andreszs/comfyui-openpose-studio/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00792 | $0.00792 |
| Opus 5 | $0.00396 | $0.00396 |
| Sonnet 5 | $0.00158 | $0.00158 |
| Haiku 4.5 | $0.00079 | $0.00079 |
Grade A, and why
ComfyUI-OpenPose-Studio 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 7d 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.
How it starts
The opening of the file, as written. The whole thing — 37 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Operational Rules for AI Coding Agents
- Scope control: Make minimal, localized changes. Do not rewrite entire files unless explicitly instructed.
- Edit safety: Never leave files in a broken or incomplete state. Do not stop edits mid-file. Warn before any risky or large change.
- Style consistency: Preserve existing coding style, structure, naming, and architecture. Do not reformat code unnecessarily.
- No cosmetic refactors: Do not perform stylistic rewrites or “cleanup” changes disguised as refactors.
- Imports/layout/formatting: Do not change imports, formatting, or code layout unless required for correctness.
- Translation JSON encoding: Save translation JSON files as plain UTF-8 without BOM. This is a hard requirement for localized nodeDefs.json files in particular. Do not re-save them with BOM, and when editing translation JSON preserve valid JSON and avoid accidental encoding changes.
- File protection: Do not modify the following unless explicitly requested:
- README.md
- LICENSE
- .git/
- .claude/
- nodes/
- core/
- No hallucination: Do not invent APIs, features, config options, or behaviors not present in the codebase.
- Explicit intent: If a request is ambiguous or underspecified, ask for clarification before editing.
- Refactors: Keep refactors incremental, justified, and tightly scoped. No sweeping refactors.
- Testing & validation: When applicable, suggest how to validate changes. Do not claim tests were run unless you ran them.
- Communication: Briefly explain what changed and why.
- Failure handling: Do not abort silently. If you must continue later, say so clearly and indicate what remains.
Version Tagging
- When a commit bumps the version in
pyproject.toml, create and push the matching Git tag targeting that exact commit before doing anything else. - The version-bump commit must have a user-facing release message that summarizes the actual changes in that version. Do not use a generic subject such as
Bump version to 1.0.7by itself. Use a descriptive subject such asPrepare 1.0.7 release with user-defined style indicators. - New version tags must include a concise description of the changes shipped in that version. Create release tags as annotated tags with a title like
Release 1.0.7and bullet-point notes summarizing the user-visible changes and important fixes. Users should be able to understand what changed from the tag page alone. - The tag name must exactly match the version string in
pyproject.toml(e.g.,1.0.0,1.0.1,1.2.3). Novprefix, no other format. This repo uses plain numeric tags only (e.g.,1.2.0, neverv1.2.0). - Before creating a release tag, inspect the existing tags in the repo (
git tag --list) to confirm the naming convention in use. For this repo the required format is always plain numeric (e.g.,1.2.0). - The README version badge (
shields.io github/v/tag) may render the tag with avprefix (e.g., displayv1.2.0) even when the actual Git tag is1.2.0. This is normal shields.io display behaviour — do not create av-prefixed tag to match the badge display. - Do not create GitHub releases unless explicitly requested.
- Never move, overwrite, recreate, or retag an existing version tag to point to a different commit.
- Each version tag is immutable: it must permanently point to the commit where that version was published.
- If a version is pushed without the matching tag, the README version badge will become outdated or inconsistent.
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.
- 7d ago First seen · 37 lines · 792 tokens per session scan A 82b0a8fd8201
ComfyUI-OpenPose-Studio AGENTS.md is an instructions file published in the GitHub repository andreszs/ComfyUI-OpenPose-Studio (204 stars, last pushed 18d ago), licensed MIT. It adds 792 tokens to every session, about $0.0040 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-30.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.