poco-claw AGENTS.md

poco-claw AGENTS.md is an instructions file for Codex, OpenCode from poco-ai/poco-claw. It costs 2,866 tokens per session, scanned A, original, MIT.

Repository guidance for coding agents working on Poco, a platform that schedules and runs AI agents to perform coding tasks. It describes the project's frontend, backend services, architecture, and development commands.

In plain words
What is it for?
Use it when changing Poco's Next.js web interface, FastAPI services, task scheduling, agent execution, or progress updates. It also helps agents install dependencies and run the project during development.
Why use it?
It gives an agent the project context and commands needed to work in the right part of a multi-service codebase. This reduces guesswork about how task requests move through the system.

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/poco-ai/poco-claw/agents-md
Clone the repo
git clone --depth 1 https://github.com/poco-ai/poco-claw

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 poco-claw AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/poco-ai/poco-claw/agents-md.svg)](https://agentmods.dev/instructions/poco-ai/poco-claw/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/poco-ai/poco-claw/agents-md"><img src="https://agentmods.dev/badge/instructions/poco-ai/poco-claw/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,866 This file is loaded in full into every session.
When invoked 2,866 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.02866 $0.02866
Opus 5 $0.01433 $0.01433
Sonnet 5 $0.00573 $0.00573
Haiku 4.5 $0.00287 $0.00287

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

Security

Grade A, and why

poco-claw 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 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.

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 · 315 lines

How it starts

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

AGENTS.md

This file provides guidance for AI coding agents working with code in this repository.

Project Overview

Poco is a multi-service AI agent execution platform that orchestrates Claude AI agents to perform coding tasks. The system consists of four main components:

  • Frontend (Next.js 16) - Web UI for task management and monitoring
  • Backend (FastAPI) - API server, database management, and session orchestration
  • Executor (FastAPI + Claude Agent SDK) - Agent execution engine with hook-based extensibility
  • Executor Manager (FastAPI + APScheduler) - Task scheduling and dispatch service

Architecture Flow

  1. User creates task via Frontend
  2. Executor Manager receives task, creates session via Backend
  3. Executor Manager schedules task with APScheduler
  4. Task Dispatcher sends task to Executor with callback URL
  5. Executor runs Claude Agent SDK with configured hooks
  6. Hooks send progress callbacks to Executor Manager during execution
  7. Executor Manager forwards callbacks to Backend for persistence
  8. Frontend polls Backend for session status updates

Development Commands

Frontend (Next.js)

cd frontend
pnpm install        # Install dependencies
pnpm dev            # Development server
pnpm build          # Build for production
pnpm start          # Start production server
pnpm lint           # ESLint
pnpm format         # Prettier

Python Services (Backend, Executor, Executor Manager)

Each Python service has its own directory with a pyproject.toml. Run commands from within the service directory:

cd <service>        # backend/, executor/, or executor_manager/
uv sync             # Install dependencies
uv run python -m app.main    # Run development server
# Or directly with uvicorn:
uvicorn app.main:app --reload

Database Migrations (Backend)

cd backend
uv run -m alembic revision --autogenerate -m "description"  # Autogenerate migration (review and adjust)
uv run -m alembic upgrade head                               # Apply migrations
uv run -m alembic downgrade -1                               # Rollback one migration

Read the full file on GitHub · 315 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 · 315 lines · 2,866 tokens per session scan A 4a8b71f11f2c

Subscribe to this mod's changes

poco-claw AGENTS.md is an instructions file published in the GitHub repository poco-ai/poco-claw (1,353 stars, last pushed 29d ago), licensed MIT. It adds 2,866 tokens to every session, about $0.0143 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.