🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@shieldly/cli

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shieldly/cli

AI-Powered Security Analysis for AWS — official CLI

latest
Source
npmnpm
Version
1.3.1
Version published
Maintainers
1
Created
Source

@shieldly/cli

AI-Powered Security Analysis for AWS — official CLI.

Analyze AWS IAM policies and CloudFormation templates for security risks from any terminal, shell script, or CI/CD pipeline. Powered by Shieldly.

npm install -g @shieldly/cli

Try it free — no account needed

Both analyze-iam and analyze-cf run in demo mode without an API key (5 free analyses, no signup required):

shieldly analyze-iam policy.json
shieldly analyze-cf template.yaml

For higher limits and analysis history, create an account (API keys require a Builder plan or above) and set your key:

export SHIELDLY_API_KEY=sk_live_...
shieldly analyze-cf template.yaml

Upgrade to a paid plan for higher daily limits, team access, and priority AI.

Quick start

# Set your API key (get one free at https://www.shieldly.io/app/api)
export SHIELDLY_API_KEY=sk_live_...

# Analyze an IAM policy
shieldly analyze-iam policy.json

# Analyze a CloudFormation template
shieldly analyze-cf template.yaml

# Manage API keys
shieldly api-keys list

Free tier

ModeLimitRequires
Demo (no key)5 analyses totalNo account
Free account20 units/dayFree sign-up
Builder150 units/dayPaid plan
Pro300 units/dayPaid plan
Team600 units/dayPaid plan

Analysis units depend on input size — a small IAM policy costs 1 unit; large CloudFormation templates cost more. Compare plans →

Commands

CommandDescription
shieldly agent-scan [options]Blast radius of an AI agent's AWS credentials (offline)
shieldly analyze-iam <policy-file>Analyze an IAM policy for security issues
shieldly analyze-cf <template-file>Analyze a CloudFormation template
shieldly api-keys list|create|revokeManage API keys
shieldly completion bash|zsh|installShell completion

Agent blast-radius scan

See what your AI agents' AWS credentials could destroy, exfiltrate, or escalate to. Runs fully offline — your config never leaves your machine, no API key required.

# Scan an IAM policy file
shieldly agent-scan --policy-file agent-policy.json

# Fetch and scan a live role (uses your local AWS credentials, read-only)
shieldly agent-scan --role-arn arn:aws:iam::123456789012:role/my-agent

# Resolve an AWS profile's identity and scan it (users: includes group policies)
shieldly agent-scan --profile agent-profile

# Zero flags: auto-discover agent configs in the current directory
# (.mcp.json, mcp.json, .claude/settings.json, .cursor/.vscode mcp.json,
#  Claude Desktop config) and scan any AWS profiles / role ARNs / hardcoded
#  keys they reference
shieldly agent-scan

Findings are graded overall (CRITICAL / HIGH / MODERATE / LOW) and grouped into six categories: privilege escalation, destructive actions, wildcard grants, data access, cost risk, and missing guardrails. Hardcoded AKIA… keys in agent configs are flagged CRITICAL.

Output & remediation:

shieldly agent-scan --policy-file p.json --json           # machine-readable
shieldly agent-scan --policy-file p.json --sarif > out.sarif  # GitHub Security tab
shieldly agent-scan --policy-file p.json --fix > tightened.json  # least-privilege draft
shieldly agent-scan --policy-file p.json --ignore BR-DATA-S3     # suppress a rule

CI enforcement — declare a permission budget and fail the build when an agent's blast radius exceeds it:

shieldly agent-scan --policy-file agent-policy.json --budget shieldly.policy.yml
# shieldly.policy.yml
version: 1
max-severity: MEDIUM       # CRITICAL | HIGH | MEDIUM | LOW | none
deny-categories:
  - ESCALATION             # always fail on privilege-escalation findings
ignore-rules: []           # accepted false positives, by rule ID
# max-findings: 50

Exit code is 1 on any CRITICAL/HIGH finding (or any budget violation), 0 otherwise — drop it straight into CI. See shieldly.policy.example.yml.

Global options

OptionDescription
--api-key <key>API key (or set SHIELDLY_API_KEY)
--versionShow version
-h, --helpShow help

Use in CI

- name: AI-Powered IAM Analysis
  run: |
    npm install -g @shieldly/cli
    shieldly analyze-iam ./iam-policy.json
  env:
    SHIELDLY_API_KEY: ${{ secrets.SHIELDLY_API_KEY }}

For pull-request gating with PR comments, use the Shieldly GitHub Action instead.

Privacy

Shieldly does not log your policy input. Cache keys are one-way SHA-256 hashes of the input.

Free tools & references (no signup)

No account required — these run in your browser or document the risks:

License

MIT © Shieldly

Amazon Web Services (AWS) is a trademark of Amazon.com, Inc. Shieldly is not affiliated with, endorsed by, or sponsored by Amazon Web Services.

Keywords

aws

FAQs

Package last updated on 12 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts