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.
npx agentmods add instructions/adhocteam/cloud-gov-instructions/logginggit clone --depth 1 https://github.com/adhocteam/cloud-gov-instructionsWrote 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/adhocteam/cloud-gov-instructions/logging)<a href="https://agentmods.dev/instructions/adhocteam/cloud-gov-instructions/logging"><img src="https://agentmods.dev/badge/instructions/adhocteam/cloud-gov-instructions/logging.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 | $0.03921 | $0.03921 |
| Opus 5 | $0.01961 | $0.01961 |
| Sonnet 5 | $0.00784 | $0.00784 |
| Haiku 4.5 | $0.00392 | $0.00392 |
Grade A, and why
cloud-gov-instructions logging.instructions.md scanned grade A 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 3d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
return requests.get(url, headers={ How it starts
The opening of the file, as written. The whole thing — 631 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Cloud.gov Logging Instructions
This document provides guidance for implementing logging and monitoring in cloud.gov applications.
Overview
Cloud.gov automatically captures logs written to stdout and stderr. Applications should:
- Write all logs to stdout/stderr (not files)
- Use structured logging (JSON format recommended)
- Include contextual information for debugging
- Never log sensitive data (PII, credentials, tokens)
Viewing Logs
Recent Logs
# View recent logs (last ~100 lines)
cf logs my-app --recent
Stream Live Logs
# Stream logs in real-time
cf logs my-app
# Press Ctrl+C to stop streaming
Log Types
Cloud.gov provides several log types:
| Type | Source | Description |
|---|---|---|
APP |
Application | Your application's stdout/stderr |
RTR |
Router | HTTP request logs |
STG |
Staging | Build/staging process logs |
CELL |
Cell | Container lifecycle events |
API |
Cloud Controller | CF CLI operations |
Filter Logs
# View only application logs (grep for APP)
cf logs my-app --recent | grep "\[APP"
# View only router logs
cf logs my-app --recent | grep "\[RTR"
Application Logging
Basic Logging Configuration
Python
import logging
import sys
# Configure logging to stdout
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[logging.StreamHandler(sys.stdout)]
)
logger = logging.getLogger(__name__)
# Log messages
logger.info("Application started")
logger.warning("Something might be wrong")
logger.error("An error occurred")
Node.js
const winston = require('winston');
const logger = winston.createLogger({
level: 'info',
format: winston.format.combine(
winston.format.timestamp(),
winston.format.json()
),
transports: [
new winston.transports.Console()
]
});
// Log messages
logger.info('Application started');
logger.warn('Something might be wrong');
logger.error('An error occurred');
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.
- 3d ago First seen · 631 lines · 3,921 tokens per session scan A 1044a668a448
cloud-gov-instructions logging.instructions.md is an instructions file published in the GitHub repository adhocteam/cloud-gov-instructions (10 stars, last pushed 5mo ago), licensed MIT. It adds 3,921 tokens to every session, about $0.0196 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
obsidian-copilot AGENTS.md
AGENTS.md instructions for logancyang/obsidian-copilot, covering agents.md, commands, core principles (apply to every change), task-specific guides and important notes.
obsidian-copilot CLAUDE.md
Claude Code instructions for logancyang/obsidian-copilot, a project described as: THE Copilot in Obsidian.
skill.color-expert CLAUDE.md
Claude Code instructions for meodai/skill.color-expert, covering claude.md, project overview, architecture, no build/test/lint and editing guidelines.
mycop CLAUDE.md
Instructions for AbdumajidRashidov/mycop, covering claude.md, what is mycop, build & development commands, architecture and data flow.
InstantCognition CLAUDE.md
Claude Code instructions for Sellitus/InstantCognition, covering claude.md - instantcognition development guide, 📦 project: instantcognition, tech stack, project architecture and key files to understand.
langgraph AGENTS.md
AGENTS.md instructions for langchain-ai/langgraph, covering agents instructions, corridor security analysis, libraries and dependency map.