python-template AGENTS.md

Repository instructions for coding assistants working in a Python project template. They describe the project layout, tools, tests, documentation, and conventions.

In plain words
What is it for?
Use them when working on the Python package, tests, documentation, development environment, or continuous-integration files in gpauloski/python-template.
Why use it?
They give an assistant the project-specific rules needed to make changes in the expected places and run the right commands.

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/gpauloski/python-template/agents-md
Clone the repo
git clone --depth 1 https://github.com/gpauloski/python-template

Made for: Codex, OpenCode.

Per session 738 This file is loaded in full into every session.
When invoked 738 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.00738 $0.00738
Opus 5 $0.00369 $0.00369
Sonnet 5 $0.00148 $0.00148
Haiku 4.5 $0.00074 $0.00074

Measured yesterday against content hash 80cd6933cdec, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

python-template 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 yesterday.

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

How it starts

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

Agent Instructions

Baseline guidance for AI coding agents working in this repository. Humans should read the docs under docs/contributing/; this file is the concise, agent-facing summary. CLAUDE.md imports this file so there is a single source of truth.

Repository Layout

  • pypkg/ — the package source (flat layout, no src/). Avoid writing logic in __init__.py.
  • tests/ — pytest tests. Mirror the package layout; test files end in _test.py (e.g. pypkg/x/y.pytests/x/y_test.py).
  • testing/ — shared helpers/fixtures for tests (not tests themselves).
  • docs/ — MkDocs sources. docs/generate_api.py auto-generates API pages, so do not hand-write docs/api/.
  • .github/workflows/ — CI (tests, prek, docs, publish).

pypkg, pypkg-author, and gpauloski/python-template are template placeholders; in a real project they will be replaced with the actual names.

Environment & Commands

This project uses uv. Create the environment and activate it once, then invoke tools directly.

uv sync                       # install project + dev group
source .venv/bin/activate     # Windows: .venv\Scripts\activate
uv sync --group docs           # add docs dependencies
pytest                         # run tests
pytest tests/x/y_test.py::test_z   # run one test
prek run --all-files           # run all hooks (lint/format/type/spell)
mypy .                         # type check
tox                            # full matrix (py3.10-3.13, prek, docs)
tox -e py313                   # a single environment
uv build                       # build sdist + wheel

If the environment is not activated, prefix a command with uv run (e.g. uv run pytest) to run it inside the managed environment.

Before finishing a change, ensure prek run --all-files and pytest both pass.

Conventions

  • Every module starts with from __future__ import annotations (enforced by Ruff isort). Fully type-annotate package code — mypy runs in strict mode.
  • Formatting/linting is Ruff with ALL rules enabled (see pyproject.toml for the commented ignores). Style: single quotes, 79-char lines, Google-style docstrings. Do not fight the formatter.
  • Spell checking is typos; complexity is gated by complexipy.
  • Tests use assert and may omit docstrings/annotations (relaxed via per-file ignores). Put reusable test code in testing/, not tests/.
  • Prefer pure functions; document all raised exceptions in docstrings. See docs/contributing/style-guide.md for the full style guide.

Read the full file on GitHub · 66 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. yesterday First seen · 66 lines · 738 tokens per session scan A 80cd6933cdec

Subscribe to this mod's changes

python-template AGENTS.md is an instructions file published in the GitHub repository gpauloski/python-template (19 stars, last pushed 7d ago), licensed MIT. It adds 738 tokens to every session, about $0.0037 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.