# Quickstart

> AWS Doctor Plugin Quickstart

- Skill: `javimosch/quickstart-2056` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/quickstart-2056`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/quickstart-2056/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/quickstart-2056

---

# AWS Doctor Plugin Quickstart

## Overview
The `aws-doctor` plugin provides commands to audit AWS resources for security vulnerabilities, cost optimization opportunities, and best practice compliance.

## Available Commands

### version
Display the installed aws-doctor version.
```bash
aws-doctor version
```

### scan
Scan AWS resources for issues.
```bash
aws-doctor scan [options]
```
Common options:
- `--profile <name>` - AWS profile to use
- `--region <region>` - AWS region to scan
- `--output <format>` - Output format (json, yaml, table)

### report
Generate a detailed analysis report.
```bash
aws-doctor report [options]
```

### audit
Perform a comprehensive AWS audit.
```bash
aws-doctor audit [options]
```

## Prerequisites
- AWS credentials configured via `aws configure`
- Valid AWS account with appropriate permissions

## Examples

Scan with a specific AWS profile:
```
aws-doctor scan --profile production --region us-east-1
```

Generate an audit report:
```
aws-doctor audit --output json > audit-report.json
```

