cloud-gov-instructions services.instructions.md

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

Instructions for using cloud.gov’s managed add-on services, such as databases, object storage, and Redis, through the Cloud Foundry command line.

In plain words
What is it for?
Provisioning and managing cloud.gov service instances, viewing plans, binding services to applications, and supplying service settings through environment variables or a manifest file.
Why use it?
They explain how to find available services, choose a service plan, connect a service to an application, and remove it without guessing the commands or configuration.

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/services
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 services.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/adhocteam/cloud-gov-instructions/services.svg)](https://agentmods.dev/instructions/adhocteam/cloud-gov-instructions/services)
Your own site
<a href="https://agentmods.dev/instructions/adhocteam/cloud-gov-instructions/services"><img src="https://agentmods.dev/badge/instructions/adhocteam/cloud-gov-instructions/services.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,641 This file is loaded in full into every session.
When invoked 2,641 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.02641 $0.02641
Opus 5 $0.01321 $0.01321
Sonnet 5 $0.00528 $0.00528
Haiku 4.5 $0.00264 $0.00264

Measured 3d ago against content hash 2b48f4cb025f, 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 services.instructions.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 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.

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.

.github/instructions/services.instructions.md · 456 lines

How it starts

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

Cloud.gov Services Instructions

This document provides guidance for provisioning and using cloud.gov managed services including databases, S3 storage, Redis, and more.

Overview

Cloud.gov provides managed services through a marketplace. Services are:

  • Created with cf create-service
  • Bound to applications to provide credentials
  • Accessed via the VCAP_SERVICES environment variable

Listing Available Services

# View all available services
cf marketplace

# View plans for a specific service
cf marketplace -s aws-rds
cf marketplace -s s3

Service Lifecycle

Create a Service Instance

cf create-service <SERVICE> <PLAN> <INSTANCE_NAME>

Bind to an Application

cf bind-service <APP_NAME> <INSTANCE_NAME>
cf restage <APP_NAME>

Or Bind via manifest.yml

applications:
  - name: my-app
    services:
      - my-database
      - my-s3-bucket

Unbind and Delete

cf unbind-service <APP_NAME> <INSTANCE_NAME>
cf delete-service <INSTANCE_NAME>

Relational Databases (AWS RDS)

Available Plans

Plan Description
micro-psql Single-AZ PostgreSQL, 1 core, 1 GiB memory
small-psql Single-AZ PostgreSQL, 1 core, 2 GiB memory
medium-psql Single-AZ PostgreSQL, 1 core, 4 GiB memory
*-psql-redundant Multi-AZ PostgreSQL (production recommended)
small-mysql Single-AZ MySQL, 1 core, 2 GiB memory
*-mysql-redundant Multi-AZ MySQL (production recommended)

Sandbox spaces: Only micro-psql and small-mysql available.

Create PostgreSQL Database

# Development
cf create-service aws-rds micro-psql my-database

# Production (Multi-AZ)
cf create-service aws-rds small-psql-redundant my-database

# With custom storage size
cf create-service aws-rds small-psql my-database -c '{"storage": 50}'

# With specific version
cf create-service aws-rds micro-psql my-database -c '{"version": "15"}'

Create MySQL Database

Read the full file on GitHub · 456 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 · 456 lines · 2,641 tokens per session scan A 2b48f4cb025f

Subscribe to this mod's changes

cloud-gov-instructions services.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 2,641 tokens to every session, about $0.0132 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-31.