P0G AGENTS.md

P0G AGENTS.md is an instructions file for Codex, OpenCode from yz9yt/P0G. It costs 3,409 tokens per session, scanned C, original, MIT.

A set of operating rules for coding agents working on the P0G project. It covers how agents inspect files, make changes, verify results, record actions, and handle errors.

In plain words
What is it for?
Use it to guide file changes, workflow execution, coding standards, verification, state handling, communication, and error recovery in P0G.
Why use it?
It gives agents a shared way to work safely and consistently, even when each run starts without memory of earlier work. It also limits unnecessary edits and makes actions easier to check.

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/yz9yt/p0g/agents-md
Clone the repo
git clone --depth 1 https://github.com/yz9yt/P0G

Made for: Codex, OpenCode.

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

agentmods badge for P0G AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/yz9yt/p0g/agents-md.svg)](https://agentmods.dev/instructions/yz9yt/p0g/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/yz9yt/p0g/agents-md"><img src="https://agentmods.dev/badge/instructions/yz9yt/p0g/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,409 This file is loaded in full into every session.
When invoked 3,409 The same file — it is already loaded in full.
Security scan C 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.03409 $0.03409
Opus 5 $0.01705 $0.01705
Sonnet 5 $0.00682 $0.00682
Haiku 4.5 $0.00341 $0.00341

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

Security

Grade C, and why

P0G AGENTS.md scanned grade C 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 4d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

test -d target_dir && rm -rf target_dir
AGENTS.md · 511 lines

How it starts

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

P0G Agent Guidelines

This document defines the operational rules, patterns, and accumulated knowledge for all P0G agents.


Table of Contents

  1. Core Principles
  2. Directory Structure
  3. File Operations
  4. Workflow Execution
  5. Coding Standards
  6. Verification Patterns
  7. State Management
  8. Communication Protocol
  9. Error Handling
  10. Learned Patterns

Core Principles

1. Clean Instance Mindset

Every agent invocation is stateless. Never assume:

  • Previous file states
  • Cached variables or context
  • Prior agent actions completed successfully

Always: Read, verify, then act.

2. Explicit Over Implicit

  • Document all decisions
  • Log all actions to progress.txt
  • Never rely on side effects

3. Minimal Footprint

  • Change only what's necessary
  • Prefer edits over rewrites
  • Avoid creating unnecessary files

4. Verification First

  • Every action must be verifiable
  • If it can't be verified, it didn't happen
  • Trust shell exit codes

Directory Structure

project_root/
├── .agent/
│   ├── workflows/           # Slash commands (/p0g-*)
│   │   ├── p0g-np.md        # Phase 1: Discovery
│   │   ├── p0g-plan.md      # Phase 2: Architecture
│   │   ├── p0g-tasks.md     # Phase 3: Task breakdown
│   │   ├── p0g-loop.md      # Phase 4: Execution
│   │   └── p0g-surgeon.md   # Reactive: Bug decomposer
│   └── rules/               # Optional: paradigm rules (e.g., functional.md)
├── agents/
│   └── p0g/
│       ├── prompts/         # Agent personalities
│       │   ├── discovery.md
│       │   ├── architect.md
│       │   ├── tasker.md
│       │   ├── executor.md
│       │   └── surgeon.md
│       └── skills/
│           └── SKILL.md     # Backup/rollback/recovery
├── .p0g/                    # Safety infrastructure
│   ├── backups/             # Full project snapshots
│   ├── snapshots/           # Task-level before/after
│   ├── checkpoints/         # Feature-level milestones
│   └── surgery.json         # Active surgical plan (if any)
├── prd.json                 # Single source of truth
├── progress.txt             # Append-only execution log
├── errors.log               # Error tracking
└── AGENTS.md                # This file: guidelines and patterns

Read the full file on GitHub · 511 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. 4d ago First seen · 511 lines · 3,409 tokens per session scan C 3812952b5cb9

Subscribe to this mod's changes

P0G AGENTS.md is an instructions file published in the GitHub repository yz9yt/P0G (11 stars, last pushed 5mo ago), licensed MIT. It adds 3,409 tokens to every session, about $0.0170 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). 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