agent-bom-discover-aws

agent-bom-discover-aws is a skill for Claude Code, Codex from msaad00/agent-bom. It costs 96 tokens per session (1,541 once invoked), scanned A, original, Apache-2.0.

A discovery tool for finding AI agents and related systems running on Amazon Web Services (AWS), a cloud computing platform, and producing a standard inventory file.

In plain words
What is it for?
Use it to inventory services such as Bedrock, ECS, SageMaker, Lambda, EKS, Step Functions, and EC2, then optionally pass the inventory to agent-bom for scanning or export.
Why use it?
It gives you a documented view of relevant AWS resources without handing another tool long-lived cloud credentials or changing those resources.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to inventory services such as Bedrock, ECS, SageMaker, Lambda, EKS, Step Functions, and EC2, then optionally pass the inventory to agent-bom for scanning or export.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/msaad00/agent-bom/discover-aws
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.

Any agent
npx skills add msaad00/agent-bom --skill discover-aws
Clone the repo
git clone --depth 1 https://github.com/msaad00/agent-bom

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 agent-bom-discover-aws

README.md
[![agentmods](https://agentmods.dev/badge/skills/msaad00/agent-bom/discover-aws.svg)](https://agentmods.dev/skills/msaad00/agent-bom/discover-aws)
Your own site
<a href="https://agentmods.dev/skills/msaad00/agent-bom/discover-aws"><img src="https://agentmods.dev/badge/skills/msaad00/agent-bom/discover-aws.svg" alt="Measured on agentmods" height="20"></a>
Per session 96 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,541 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 medium

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 →

  • medium Excessive Agency · line 27
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00096 $0.01541
Opus 5 $0.00048 $0.00771
Sonnet 5 $0.00019 $0.00308
Haiku 4.5 $0.00010 $0.00154

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

Security

Grade A, and why

agent-bom-discover-aws 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 4d 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.

integrations/openclaw/discover-aws/SKILL.md · 171 lines

How it starts

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

agent-bom-discover-aws

Use this skill to collect AWS AI and workload inventory from the operator's environment as canonical inventory. The skill is discover-only by default: write schema-valid JSON to an operator-selected path and stop. Run agent-bom only when the operator explicitly wants findings, graph, policy, or exports from that inventory.

Guardrails

  • Use only operator-approved AWS profiles, roles, or short-lived STS sessions.
  • Prefer read-only IAM actions listed by agent-bom trust or /v1/discovery/providers.
  • Do not request or display raw AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_SESSION_TOKEN, or bearer tokens.
  • Do not modify AWS resources. This workflow is discovery-only.
  • Write inventory only to a path the operator chose.
  • Treat AI-generated prose as non-authoritative; only the schema-validated inventory JSON is evidence.

Modes

Mode What happens Data boundary
discover-only Emit canonical inventory JSON and stop No agent-bom scan or API handoff
scan-local Run agent-bom scan --inventory ... on the generated file Local handoff into the scanner
export Write JSON/SARIF or another operator-selected output Local output only unless the operator routes it elsewhere

Use discover-only unless the operator asks for scan results or an export.

Workflow

  1. Confirm the AWS account/region/profile and intended services.
  2. Generate inventory with the repository adapter and stop:
python examples/operator_pull/aws_inventory_adapter.py \
  --region us-east-1 \
  --profile readonly-audit \
  --source aws-skill-invoked \
  --discovery-method skill_invoked_pull \
  --output aws-inventory.json
  1. If the operator asks for findings, scan the generated inventory locally:
agent-bom scan --inventory aws-inventory.json
  1. If the operator asks for an export, write it to an operator-selected path:
agent-bom scan --inventory aws-inventory.json --format json --output agent-bom-aws-findings.json

Read the full file on GitHub · 171 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. 4d ago Changed d23d1a620707
  2. 8d ago First seen · 171 lines · 96 tokens per session scan A 4f320f222ee5

Subscribe to this mod's changes

agent-bom-discover-aws is a skill published in the GitHub repository msaad00/agent-bom (31 stars, last pushed today), licensed Apache-2.0. It adds 96 tokens to every session and 1,541 once invoked, about $0.0005 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.