agentic-coding-playbook: Skill for Claude Code

.agents/skills/federal-landscape-update/SKILL.md

federal-landscape-update is a skill for Claude Code, Codex from GSA-TTS/agentic-coding-playbook. It costs 28 tokens per session (1,739 once invoked), scanned A, original, CC0-1.0.

A monitor for changes in federal AI guidance. It reads configured RSS feeds, compares new items with a stored registry, and creates a report of differences for a person to review.

In plain words
What is it for?
Running scheduled or triggered checks after new AI policy, NIST documents, OWASP updates, executive orders, or approaching compliance deadlines.
Why use it?
It helps teams notice new guidance from sources such as the White House, NIST, and OWASP without comparing every document manually. Human review remains part of the process.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents); mentions OpenCode.

This is GSA-TTS/agentic-coding-playbook's own configuration. It tells Claude Code and Codex how to work on agentic-coding-playbook itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agentic-coding-playbook configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 scripts/landscape_monitor.py --output reports/landscape-diff-$(date +%Y-%m-%d).md.

Reuse

Borrowing it

Nothing to install: this file belongs to GSA-TTS/agentic-coding-playbook. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/GSA-TTS/agentic-coding-playbook/main/.agents/skills/federal-landscape-update/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/GSA-TTS/agentic-coding-playbook

Made for: Claude Code, Codex.

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 federal-landscape-update

README.md
[![agentmods](https://agentmods.dev/badge/skills/gsa-tts/agentic-coding-playbook/federal-landscape-update/github.svg)](https://agentmods.dev/skills/gsa-tts/agentic-coding-playbook/federal-landscape-update)
Your own site
<a href="https://agentmods.dev/skills/gsa-tts/agentic-coding-playbook/federal-landscape-update"><img src="https://agentmods.dev/badge/skills/gsa-tts/agentic-coding-playbook/federal-landscape-update/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for federal-landscape-update

Your own site · 80×15
<a href="https://agentmods.dev/skills/gsa-tts/agentic-coding-playbook/federal-landscape-update"><img src="https://agentmods.dev/badge/skills/gsa-tts/agentic-coding-playbook/federal-landscape-update.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,739 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Rogue Agent · line 16
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
How audits are shown
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.1 $0.00028 $0.01739
Opus 5 $0.00014 $0.00870
Sonnet 5 $0.00006 $0.00348
Haiku 4.5 $0.00003 $0.00174

Measured 10d ago against content hash 6fe80a5e38de, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

federal-landscape-update 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 10d 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/skills/federal-landscape-update/SKILL.md · 233 lines

How it starts

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

Federal AI Landscape Update

This skill automates the discovery of new federal AI guidance and generates diff reports for human review. It implements a hybrid (human-curated automation) approach: 70% automated discovery + 30% human judgment.

When to Use

  • Monthly scheduled review (first Monday of each month)
  • When a new Executive Order mentioning "AI" is signed
  • When NIST publishes a new AI-series document
  • When OWASP releases a new LLM/Agentic version
  • When a compliance deadline is <30 days away
  • When the user asks "what's new in federal AI guidance?"

Prerequisites

  • Python 3.12+ with feedparser installed
  • Access to data/federal-ai-landscape.yaml (structured registry)
  • Network access to RSS feeds (whitehouse.gov, nist.gov)

Execution Procedure

Step 1: Run the Landscape Monitor

Execute the monitoring script to fetch RSS feeds and compare against the registry:

PYTHONPATH=scripts python3 -m playbook_validator landscape-check

Or run the standalone script:

python3 scripts/landscape_monitor.py --output reports/landscape-diff-$(date +%Y-%m-%d).md

The script will:

  1. Fetch RSS feeds from configured sources
  2. Parse entries for AI-related publications
  3. Compare against data/federal-ai-landscape.yaml
  4. Identify new, updated, or missing entries
  5. Flag compliance deadlines within 30 days
  6. Generate a structured diff report

Step 2: Review the Diff Report

The generated report at reports/landscape-diff-YYYY-MM-DD.md includes:

Section Description
New Publications Items in RSS not in registry
Updated Publications Items with newer versions
Approaching Deadlines Compliance dates within 30 days
Staleness Warnings Registry entries not seen in RSS for >90 days

Step 3: Human Review Checklist

For each flagged item, the human reviewer must determine:

  • Relevance: Is this publication applicable to AI-assisted development?
  • Category: Which category does it belong to?
  • Urgency: Does this require immediate action?
  • Narrative: What is the "Relevance" annotation for the landscape doc?

Read the full file on GitHub · 233 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. 10d ago First seen · 233 lines · 28 tokens per session scan A 6fe80a5e38de

Subscribe to this mod's changes

federal-landscape-update is a skill published in the GitHub repository GSA-TTS/agentic-coding-playbook (25 stars, last pushed today), licensed CC0-1.0. It adds 28 tokens to every session and 1,739 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

specification-writing

A workflow for writing complete patent specifications from patent claims and an invention disclosure. It adapts the document to a chosen jurisdiction, such as the US, Europe, or China.

wanshuiyin/Auto-claude-code-research-in-sleep · 49 tokens

regulatory-research-fallback

Fallback workflow for regulatory research when web extraction tools fail on government PDFs.

HKUDS/OpenSpace · 20 tokens

x-scorecard

OpenSSF Scorecard for assessing open source project security. Check security best practices and compliance. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill for installation options). see x-cmd skill for installation.

x-cmd/x-cmd · 57 tokens

gesellschaftsrechtliche-satzungen-agb

Für Gesellschaftsrechtliche Satzungen AGB Abgrenzung: ordnet Norm, Beweislast und Gegenargument; Ergebnis: Prüfprodukt mit Risiko und nächstem Schritt. Fachgebiet: AGB-Recht-Prüfer. Route: gesellschaftsrechtliche-satzungen-agb.

Klotzkette/claude-fuer-deutsches-recht · 69 tokens

memstack-business-gdpr

Use this skill when the user says 'GDPR', 'data protection', 'privacy compliance', 'DPA', 'DSAR', 'data subject request', 'cookie consent', 'privacy audit', 'CCPA', or asks 'do I need GDPR for this repo'. Scans the repository to detect what personal data is collected, classifies sensitivity, determines whether GDPR…

cwinvestments/memstack · 121 tokens

nda-review

Use when the user uploads or pastes a non-disclosure agreement and asks for review, redline, risk assessment, or a recommendation on whether to sign. Identifies missing standard protections, one-sided or unusual provisions, and operational issues; produces a structured report with severity ratings and citations to…

LegalQuants/lq-ai · 79 tokens