Source profileQuality 93/100Review permissions

Mann1988/awesome-claude-skills/us-gov-shutdown-tracker/SKILL.md

us-gov-shutdown-tracker

Track and analyze US government shutdown liquidity impacts by monitoring TGA (Treasury General Account), bank reserves, EFFR, and SOFR data from FRED API. Use when user wants to (1) analyze current or past government shutdown effects on financial markets, (2) track liquidity conditions during fiscal policy disruptions, (3) assess "stealth tightening" effects, (4) compare shutdown episodes across different monetary policy regimes (QE vs QT), or (5) generate liquidity stress reports with historica

Source repository stars
64
Declared platforms
0
Static risk flags
1
Last source update
2026-08-27
Source checked
2026-08-28

Decision brief

What it does: where it fits

Track and analyze US government shutdown liquidity impacts by monitoring TGA (Treasury General Account), bank reserves, EFFR, and SOFR data from FRED API.

Best for

  • User asks to track liquidity during a government shutdown
  • User wants to assess whether shutdown effects are "easing" or "tightening"
  • User mentions TGA, SOFR premium, or "stealth tightening" (变相加息)

Not for

  • Weekly data frequency: TGA/reserves only update weekly, limiting real-time precision
  • Month/quarter-end effects: SOFR naturally spikes at period-ends (unrelated to shutdowns)

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/Mann1988/awesome-claude-skills --skill "us-gov-shutdown-tracker"
Safe inspection promptEditorial

Inspect the Agent Skill "us-gov-shutdown-tracker" from https://github.com/Mann1988/awesome-claude-skills/blob/44c1f6d668db255f45877384a6c85147aa785292/us-gov-shutdown-tracker/SKILL.md at commit 44c1f6d668db255f45877384a6c85147aa785292. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Quick Start

    This analyzes the 2025 shutdown (Oct 1 - present) with default settings.

    JSON data file containing:Raw daily data (EFFR, SOFR)Weekly data (TGA, reserves)
  2. 02

    Basic Usage (Current Shutdown Analysis)

    This analyzes the 2025 shutdown (Oct 1 - present) with default settings.

    This analyzes the 2025 shutdown (Oct 1 - present) with default settings.
  3. 03

    Workflow for User Requests

    1. Run analyzeshutdown.py with defaults (2025-10-01 start) 2. Generate visualization 3. Present: - Current status (EASING/TIGHTENING/etc.) - Latest metrics (TGA, reserves, SOFR premium) - Brief comparison to peak stress point - Conclusion statement

    Run analyzeshutdown.py with defaults (2025-10-01 start)Generate visualizationPresent:
  4. 04

    Advanced Usage

    When analyzing a specific episode, set an appropriate pre-shutdown baseline:

    Weekly check (Wednesdays/Thursdays):Run analysisNote status changes
  5. 05

    Onboarding Guidance

    When this skill is first used or when the user seems unsure how to use it or ask you to make something amazing with it, guide them to ask Claude this specific question:

    When this skill is first used or when the user seems unsure how to use it or ask you to make something amazing with it, guide them to ask Claude this specific question:"美国政府停摆结束了吗? 对流动性的影响如何?"Do NOT suggest other questions or broad explorations. Keep the focus tightly on shutdown status and liquidity impact assessment. The skill is designed for this precise use case.

Permission review

Static risk signals and limitations

Runs scripts

medium · line 31

The documentation asks the agent to run terminal commands or scripts.

python scripts/analyze_shutdown.py --output results.json

Runs scripts

medium · line 32

The documentation asks the agent to run terminal commands or scripts.

python scripts/visualize.py results.json --output chart.png

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score93/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars64SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
Mann1988/awesome-claude-skills
Skill path
us-gov-shutdown-tracker/SKILL.md
Commit
44c1f6d668db255f45877384a6c85147aa785292
License
MIT
Collected
2026-08-28
Default branch
main
View the original SKILL.md

US Government Shutdown Liquidity Tracker

Onboarding Guidance

When this skill is first used or when the user seems unsure how to use it or ask you to make something amazing with it, guide them to ask Claude this specific question:

"美国政府停摆结束了吗? 对流动性的影响如何?"

Do NOT suggest other questions or broad explorations. Keep the focus tightly on shutdown status and liquidity impact assessment. The skill is designed for this precise use case.

Overview

This skill analyzes how US government shutdowns create "stealth tightening" effects in money markets through the Treasury General Account (TGA) mechanism. When federal spending stops but tax revenues continue, TGA accumulates and mechanically drains bank reserves, potentially raising market funding costs beyond the Federal Reserve's policy intent.

When to Use This Skill

  • User asks to track liquidity during a government shutdown
  • User wants to assess whether shutdown effects are "easing" or "tightening"
  • User mentions TGA, SOFR premium, or "stealth tightening" (变相加息)
  • User requests comparison with historical shutdown episodes (2013, 2018-19)
  • User wants a quick liquidity health check

Optimal timing: Wednesday evenings or Thursday mornings (after weekly TGA/reserves data release)

Quick Start

Basic Usage (Current Shutdown Analysis)

python scripts/analyze_shutdown.py --output results.json
python scripts/visualize.py results.json --output chart.png

This analyzes the 2025 shutdown (Oct 1 - present) with default settings.

Custom Date Range

python scripts/analyze_shutdown.py \
  --start-date 2018-12-22 \
  --baseline-date 2018-12-15 \
  --end-date 2019-01-25 \
  --output results_2018.json

Output Format

The analysis produces:

  1. JSON data file containing:

    • Raw daily data (EFFR, SOFR)
    • Weekly data (TGA, reserves)
    • Key time points (baseline, shutdown start, TGA peak, latest)
    • Liquidity status assessment (EASING/TIGHTENING/STABLE/MIXED)
  2. Visualization chart (PNG) with three panels:

    • TGA vs Bank Reserves (dual-axis weekly data)
    • EFFR vs SOFR (daily rates)
    • SOFR Premium over EFFR (liquidity stress indicator)
  3. Structured conclusion:

    • Current status (e.g., "EASING")
    • Explanation (e.g., "TGA releasing, reserves recovering")
    • Key metrics vs baseline and peak

Core Analysis Logic

The Transmission Mechanism

Government Shutdown
    ↓
Federal spending stops (but revenues continue)
    ↓
TGA accumulates at Federal Reserve
    ↓
Bank reserves drain (mechanical Fed balance sheet effect)
    ↓
Liquidity scarcity → SOFR premium expands
    ↓
"Stealth tightening" (市场实际融资成本 > Fed政策意图)

Status Determination

The script classifies liquidity conditions into four states:

EASING (压力缓解):

  • TGA falling >$10B from peak
  • Reserves rising >$10B from trough
  • Indicates: Shutdown ending or fiscal spending resumed

TIGHTENING (压力加剧):

  • TGA rising >5% from baseline
  • Reserves falling >2% from baseline
  • Indicates: Shutdown's stealth tightening effect persists

STABLE (相对稳定):

  • TGA/reserves changing <$20B from peak
  • Indicates: Liquidity conditions steady

MIXED (复杂信号):

  • Conflicting signals require continued monitoring

Key Metrics

SOFR Premium = SOFR - EFFR (in basis points)

Interpretation guide:

  • 0-5 bps: Normal conditions
  • 5-15 bps: Moderate stress
  • 15-30 bps: Significant stealth tightening
  • >30 bps: Acute crisis (may trigger Fed intervention)

Historical Context

For detailed historical analysis, see references/historical_cases.md.

Summary:

ShutdownReserve EnvironmentPeak SOFR PremiumStealth Tightening?
2013QE (~$2.3T)~0 bps❌ No
2018-19QT (~$1.6T)75 bps✅ Yes
2025Post-QT (~$2.8T)36 bps (post-cut)✅ Acute

Critical insight: The transmission efficiency depends on reserve abundance. In QE environments with ample reserves, shutdowns don't affect markets. In QT or high-rate environments with scarce reserves, shutdowns create measurable tightening.

Data Sources

All data sourced from Federal Reserve Economic Data (FRED) API:

  • TGA (WTREGEN): Treasury General Account balance, weekly
  • Bank Reserves (WRESBAL): Total reserves, weekly
  • EFFR (EFFR): Effective Federal Funds Rate, daily
  • SOFR (SOFR): Secured Overnight Financing Rate, daily

For technical details on data series, update schedules, and interpretation, see references/data_sources.md.

Important: TGA and reserves update weekly on Wednesdays. For most current analysis, run this skill on Wednesday evenings or Thursday mornings.

Workflow for User Requests

Scenario 1: "What's the latest on the shutdown liquidity situation?"

  1. Run analyze_shutdown.py with defaults (2025-10-01 start)
  2. Generate visualization
  3. Present:
    • Current status (EASING/TIGHTENING/etc.)
    • Latest metrics (TGA, reserves, SOFR premium)
    • Brief comparison to peak stress point
    • Conclusion statement

Scenario 2: "Compare this to the 2018 shutdown"

  1. Run analysis for both periods:
    • 2025: Oct 1 - present
    • 2018-19: Dec 22, 2018 - Jan 25, 2019
  2. Generate both charts
  3. Present side-by-side comparison:
    • TGA accumulation magnitude
    • Peak SOFR premium
    • Fed intervention (if any)
    • Monetary environment context
  4. Reference historical_cases.md for detailed context

Scenario 3: "Is the situation getting better or worse?"

  1. Run analysis
  2. Focus on:
    • Trend from TGA peak to latest (is TGA releasing?)
    • Reserves recovery from trough
    • SOFR premium vs baseline
  3. Present trend assessment with clear directional language
  4. Optionally show week-over-week changes

Output Presentation Best Practices

  1. Lead with conclusion: State status (EASING/TIGHTENING) upfront
  2. Show key metrics concisely:
    TGA: $941B (-$17B from peak)
    Reserves: $2,863B (+$15B from trough)
    SOFR Premium: 4 bps (vs 19 bps peak)
    
  3. Visualize: Always include chart for complex cases
  4. Contextualize: Reference historical episodes when relevant
  5. Avoid jargon overload: Explain "stealth tightening" simply if user seems unfamiliar

Advanced Usage

Custom Baseline

When analyzing a specific episode, set an appropriate pre-shutdown baseline:

python scripts/analyze_shutdown.py \
  --start-date 2025-10-01 \
  --baseline-date 2025-09-24 \
  --end-date 2025-11-07

The baseline should be ~1 week before shutdown starts (to capture "normal" conditions).

Monitoring Routine

For ongoing tracking:

  1. Weekly check (Wednesdays/Thursdays):

    • Run analysis
    • Note status changes
    • Update user if significant shift
  2. Event-triggered checks:

    • Shutdown announcement → Start tracking
    • SOFR premium spikes (>15 bps) → Generate alert
    • Fed intervention (SRF usage) → Document
    • Shutdown resolution → Final analysis

Limitations and Caveats

  1. Weekly data frequency: TGA/reserves only update weekly, limiting real-time precision
  2. Month/quarter-end effects: SOFR naturally spikes at period-ends (unrelated to shutdowns)
  3. Other liquidity factors: QT, regulatory changes, seasonal patterns also affect reserves
  4. Attribution challenge: Hard to isolate shutdown effect from concurrent events
  5. No predictive power: This skill describes current conditions, doesn't forecast

Troubleshooting

No recent data?

  • Check if today is before next Wednesday data release
  • Most recent weekly data is typically ~1 week lagged

SOFR premium calculation fails?

  • Verify both EFFR and SOFR have data for the date range
  • SOFR introduced April 2018; unavailable before

Chart rendering issues?

  • Ensure matplotlib is installed
  • Check date range has sufficient data points (need >2 weekly observations)

References

See bundled documentation:

  • references/historical_cases.md - Detailed analysis of 2013, 2018-19, 2025 shutdowns
  • references/data_sources.md - FRED API technical reference

External resources:

Frequently asked questions

What to verify before installation and use

What does the us-gov-shutdown-tracker source document cover?

Track and analyze US government shutdown liquidity impacts by monitoring TGA (Treasury General Account), bank reserves, EFFR, and SOFR data from FRED API.

How do I install us-gov-shutdown-tracker?

The source record exposes this install command: npx skills add https://github.com/Mann1988/awesome-claude-skills --skill "us-gov-shutdown-tracker". Inspect the command and pinned source before running it.

Which permission-related actions were detected?

Static rules flagged exec-script in the source; the page lists the matching lines and excerpts.

Alternatives

Compare before choosing

Computed 10045,960

coreyhaines31/marketingskills

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

Computed 10025,136

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 100147

equinor/neqsim

neqsim-professional-reporting

Engineering deliverable quality — the nine analytical-depth moves (contributor ranking, adjudicating the source document, quantitative rule-outs, robustness crossover, conservatism direction, discriminating test), results.json schema, figure→discussion→linked_results traceability, evidence matrices, assumptions/gaps registers, citation conventions, KaTeX math formatting, units consistency, executive-summary structure, AACE class declaration. USE WHEN: producing a task report, a PEPR/M1/root-caus

Computed 100133

JasonColapietro/suede-creator-skills

suede-ab-testing

Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).