cloud-gov-instructions logging.instructions.md

cloud-gov-instructions logging.instructions.md is an instructions file for GitHub Copilot from adhocteam/cloud-gov-instructions. It costs 3,921 tokens per session, scanned A, original, MIT.

Instructions for viewing and configuring application logs on cloud.gov. Cloud.gov collects messages written to standard output and standard error, including application, router, and deployment logs.

In plain words
What is it for?
Use them to view recent logs, stream live logs, filter application or request messages, and structure application logging for debugging.
Why use it?
They make it easier to inspect recent failures, follow live application activity, and separate useful log types while avoiding sensitive data.

Instructions file for GitHub Copilot

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/adhocteam/cloud-gov-instructions/logging
Clone the repo
git clone --depth 1 https://github.com/adhocteam/cloud-gov-instructions

Made for: GitHub Copilot.

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 cloud-gov-instructions logging.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/adhocteam/cloud-gov-instructions/logging.svg)](https://agentmods.dev/instructions/adhocteam/cloud-gov-instructions/logging)
Your own site
<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>
Per session 3,921 This file is loaded in full into every session.
When invoked 3,921 The same file — it is already loaded in full.
Security scan A 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.03921 $0.03921
Opus 5 $0.01961 $0.01961
Sonnet 5 $0.00784 $0.00784
Haiku 4.5 $0.00392 $0.00392

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

Security

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={
.github/instructions/logging.instructions.md · 631 lines

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');

Read the full file on GitHub · 631 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. 3d ago First seen · 631 lines · 3,921 tokens per session scan A 1044a668a448

Subscribe to this mod's changes

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.