aws-security-mcp 0.7.5 → 0.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -21,15 +21,76 @@ MCP server for automated AWS security scanning — 19 modules, risk scoring, zer
21
21
  - **China Region Support** — full support for aws-cn partition
22
22
  - **CloudFormation StackSet Template** — one-click deployment of cross-account audit roles
23
23
 
24
+ ## Deployment Prerequisites
25
+
26
+ Before installing, make sure you have the following in place. The agent is intentionally lightweight — **nothing needs to be installed on the AWS resources being scanned** (no agent on EC2, no daemon in VPC, no changes to workloads).
27
+
28
+ | # | Item | Purpose | Notes |
29
+ |---|------|---------|-------|
30
+ | 1 | **A host to run the MCP server** | Runs the Node.js process that performs the scans | Any of: a developer workstation (macOS / Linux / Windows), a small EC2 instance (t3.small is plenty), a bastion host, or a CI runner. Needs outbound HTTPS to AWS API endpoints. |
31
+ | 2 | **Node.js ≥ 18** | Runtime for the MCP server | `node --version` to verify |
32
+ | 3 | **An MCP-capable AI client** | Drives the scan via natural language and interprets the results | Any one of: **[Kiro CLI](https://kiro.dev)**, **[Claude Code](https://docs.anthropic.com/claude-code)**, **[Cursor](https://cursor.sh)**, or any other MCP 1.12-compatible client |
33
+ | 4 | **AWS credentials** | Read-only access to the target account(s) | IAM user, IAM role (EC2 instance profile / ECS task role), AWS SSO session, or named CLI profile — anything the AWS SDK credential chain can resolve |
34
+ | 5 | **An IAM identity with scan permissions** | Attached to the credential in (4) | Use [`SecurityAudit`](https://docs.aws.amazon.com/aws-managed-policy/latest/reference/SecurityAudit.html) managed policy, or the minimal custom policy in [Recommended IAM Policy](#recommended-iam-policy) below |
35
+ | 6 | *(optional)* **Cross-account audit role** | Needed only for multi-account / organization-wide scans | Deploy the CloudFormation StackSet template via `get_setup_template` — creates `AWSSecurityMCPAudit` in every member account in one shot |
36
+
37
+ **What is NOT required:**
38
+
39
+ - ❌ No agent / daemon on your EC2 instances, ECS tasks, or Lambda functions
40
+ - ❌ No changes to VPC, Security Groups, or networking on the scanned resources
41
+ - ❌ No AWS Marketplace subscription or commercial license
42
+ - ❌ No outbound connectivity from the scanner to anywhere other than AWS API endpoints (no telemetry, no phone-home)
43
+ - ❌ No AWS root user (the scanner refuses to run under root credentials)
44
+
45
+ ### Reference deployment topology
46
+
47
+ The most common customer deployment is a **single small EC2 instance** in the AWS account to be audited, reached over SSM Session Manager or SSH, with the MCP client (Kiro / Claude Code / Cursor) running on the operator's laptop and the MCP server running on the EC2:
48
+
49
+ ```
50
+ ┌──────────────────────────┐ ┌─────────────────────────────┐
51
+ │ Operator's laptop │ │ Target AWS account │
52
+ │ │ │ │
53
+ │ Kiro CLI / Claude Code │ MCP / │ EC2 (t3.small, IAM role) │
54
+ │ / Cursor │ stdio │ └─ aws-security-mcp │
55
+ │ │ ◄──────► │ (Node.js MCP server) │
56
+ │ │ SSM │ │
57
+ │ │ │ ▼ read-only API calls │
58
+ │ │ │ IAM · EC2 · S3 · RDS · ... │
59
+ └──────────────────────────┘ └─────────────────────────────┘
60
+ ```
61
+
62
+ For single-account work, running the MCP server **directly on the operator's laptop** (steps 1–3 below) is just as valid — the architecture is the same, only the host changes.
63
+
24
64
  ## Quick Start
25
65
 
26
66
  ### 1. Install
27
67
 
68
+ Install the published package from npm (recommended for end users):
69
+
28
70
  ```bash
71
+ npm install -g aws-security-mcp
72
+ ```
73
+
74
+ Verify the binary is on your `PATH`:
75
+
76
+ ```bash
77
+ aws-security-mcp --version
78
+ # 0.7.5
79
+ ```
80
+
81
+ <details>
82
+ <summary>Installing from source (for contributors)</summary>
83
+
84
+ ```bash
85
+ git clone https://github.com/jowhee327/aws-security-agent.git
86
+ cd aws-security-agent
29
87
  npm install
30
88
  npm run build
89
+ npm link # makes `aws-security-mcp` resolvable on your PATH
31
90
  ```
32
91
 
92
+ </details>
93
+
33
94
  ### 2. Configure AWS Credentials
34
95
 
35
96
  The server uses the standard AWS SDK credential chain. Any of the following will work:
@@ -99,11 +160,15 @@ Add in Cursor MCP settings:
99
160
 
100
161
  ### 4. Use
101
162
 
102
- Ask your AI tool to run a security scan:
163
+ Ask your AI tool to run a security scan. The recommended approach is `scan_and_report`, which runs all scanners and generates every report type in a single call — no large data transfer back to the AI tool:
164
+
165
+ > "Use scan_and_report to run a full AWS security scan"
166
+
167
+ Or run individual steps for more control:
103
168
 
104
169
  > "Run a full AWS security scan and generate a report"
105
170
 
106
- Or use the built-in `security-scan` prompt for a guided workflow.
171
+ You can also use the built-in `security-scan` prompt for a guided workflow.
107
172
 
108
173
  For multi-account scanning across an AWS Organization:
109
174
 
@@ -143,6 +208,7 @@ For multi-account scanning across an AWS Organization:
143
208
  | `generate_mlps3_html_report` | Generate a MLPS Level 3 HTML compliance report |
144
209
  | `generate_hw_defense_report` | Generate an HW Defense HTML report (SOP-organized, findings grouped by CVE/control-ID) |
145
210
  | `generate_maturity_report` | Generate a security maturity assessment |
211
+ | `scan_and_report` | Run full scan + generate all reports in one step. Saves HTML/MLPS/HW/MD reports to `~/.aws-security/reports/`. Avoids large data transfer |
146
212
  | `save_results` | Save scan results for the dashboard |
147
213
  | `get_setup_template` | Get CloudFormation StackSet template for cross-account audit role |
148
214
 
@@ -0,0 +1,311 @@
1
+ # AWS Security Agent 🛡️
2
+
3
+ > 面向 **AWS 中国区企业客户** 的自助式安全基线扫描 Agent —— 通过 MCP 协议接入 Kiro CLI / Claude Code,几分钟内产出等保 2.0 / 护网行动级别的中文安全评估报告。
4
+
5
+ ---
6
+
7
+ ## 1. 这个 Agent 是什么?
8
+
9
+ **AWS Security Agent** 是一个基于 **MCP(Model Context Protocol)** 协议的只读安全扫描服务,以 npm 包 `aws-security-mcp` 的形式分发。
10
+
11
+ - **形态**:本地运行的 Node.js MCP Server(Windows / macOS / Linux / 客户自有 EC2 都可)
12
+ - **调用方式**:通过支持 MCP 的 AI 客户端(**Kiro CLI**、**Claude Code**)用自然语言指令触发
13
+ - **产出**:单文件 HTML 报告 + Markdown 报告(中英双语),可直接用于内部评审或审计佐证
14
+ - **许可**:MIT 开源,GitHub 可审计,无商业授权、无使用费、无注册
15
+ - **定位**:**社区项目**,由 AWS 中国区 TAM / CSE / NWCD 共同贡献,**不是 AWS 官方服务**
16
+
17
+ 一句话:**客户自己装、自己跑、数据不出门,几分钟出一份等保能用的安全报告。**
18
+
19
+ ---
20
+
21
+ ## 2. 这个 Agent 解决什么问题?
22
+
23
+ AWS 中国区企业客户每年都要面对两件周期性的安全合规工作,但目前基本靠人工:
24
+
25
+ | 痛点 | 现状 | Agent 解决方式 |
26
+ |---|---|---|
27
+ | **等保 2.0 三级评估**(GB/T 22239-2019) | 工程师手工拼 Trusted Advisor / IAM Access Analyzer / Security Hub / Config 输出,再手动映射到控制项 | `mlps3` profile 直接按 8.1.2–8.1.11 控制族输出证据 |
28
+ | **护网行动备战**(每年 5–8 月) | 红蓝对抗前临时扫互联网暴露面、特权 IAM、未加密数据、日志盲区 | `hw_defense` profile 聚焦 11 项护网高优先级检查 |
29
+ | **中国区服务差异** | Macie 不提供、GuardDuty 分类不同、Security Hub standards pack 滞后 | 原生支持 `aws-cn` partition,自动适配 `cn-north-1` / `cn-northwest-1` |
30
+ | **审计交接困难** | 每次评估都从零开始,依赖工程师个人脚本和隐性知识 | 标准化 19 个扫描模块 + 结构化 JSON + 可复现的单文件报告 |
31
+ | **缺乏官方中文审计产出物** | 现有 AWS 工具报告都是英文,交付监管还要翻译 | 报告默认中文,可切英文,格式对齐国内审计习惯 |
32
+
33
+ E2E 实测:在中等规模 AWS 中国区账号上一次 `scan_all` 返回 **831 条发现**(41 Critical / 343 High / 268 Medium / 179 Low),大部分是 Trusted Advisor 等单一工具无法覆盖的配置漂移。
34
+
35
+ ---
36
+
37
+ ## 3. Agent 都支持哪些场景?
38
+
39
+ ### 三大扫描 Profile
40
+
41
+ | Profile | 扫描模块数 | 用途 | 耗时 |
42
+ |---|---|---|---|
43
+ | **`scan_all`** | 19 | 全面安全态势评估,覆盖 IAM / EC2 / VPC / S3 / RDS / Lambda / CloudTrail / KMS / Config 等 | 5–15 分钟 |
44
+ | **`hw_defense`** | 11 | 护网行动备战,聚焦互联网暴露面 + 特权路径 + 数据 + 日志 | 3–8 分钟 |
45
+ | **`mlps3`** | 按控制族分组 | 等保 2.0 三级证据映射,输出对齐 GB/T 22239-2019 | 5–10 分钟 |
46
+
47
+ ### 典型使用场景
48
+
49
+ - ✅ **合规周期** — 等保三级自评 / 复测,一次扫描出证据
50
+ - ✅ **护网前体检** — 5 月前跑一次,锁定需要修的高危暴露
51
+ - ✅ **发布前 baseline** — DevOps 团队接入 CI/CD(v0.9.0 规划),每次发布前自动扫
52
+ - ✅ **Account handoff** — 接手新账号时快速摸底
53
+ - ✅ **TAM / CSE 协助** — AWS 技术支持快速生成客户账号体检报告
54
+ - ✅ **第三方审计配合** — 把 HTML 报告作为内部工作稿,Markdown 作为正式交付物原料
55
+
56
+ ### 环境矩阵
57
+
58
+ - **AWS partition**:`aws`(全球)+ `aws-cn`(中国区)全支持,自动识别
59
+ - **Region**:按调用时参数决定,单次单 region(多账号多 region 在 v1.0.0 roadmap 上)
60
+ - **操作系统**:Windows / macOS / Linux
61
+ - **部署位置**:工程师工作站 / 内网 bastion / EC2 / CI runner 都行
62
+
63
+ ---
64
+
65
+ ## 4. Agent 的数据源都有哪些?
66
+
67
+ **所有数据全部来自 AWS 公开 API**——只用 `Describe*`、`Get*`、`List*`、`Head*` 四类只读调用。下表列出 19 个扫描模块覆盖的 AWS 服务与 API:
68
+
69
+ | 类别 | 扫描模块 | 主要数据源(AWS API / 服务) |
70
+ |---|---|---|
71
+ | **IAM / 身份** | IAM Users、IAM Roles、IAM Policies、IAM Access Keys、IAM MFA、Password Policy | IAM `ListUsers/Roles/Policies/AccessKeys`、`GetAccountPasswordPolicy`、`GetAccountSummary` |
72
+ | **计算 / 网络** | EC2 Instances、EC2 Security Groups、EBS Snapshots、VPC Flow Logs | EC2 `DescribeInstances/SecurityGroups/Snapshots`、`DescribeFlowLogs` |
73
+ | **存储** | S3 Buckets、S3 Bucket Policies | S3 `ListBuckets`、`GetBucketPolicy/Acl/Encryption/PublicAccessBlock` |
74
+ | **数据库** | RDS Instances | RDS `DescribeDBInstances`、`DescribeDBSnapshots` |
75
+ | **应用 / Serverless** | Lambda Functions | Lambda `ListFunctions`、`GetFunctionConfiguration` |
76
+ | **审计 / 加密** | CloudTrail、KMS Keys、Config Recorders | CloudTrail `DescribeTrails/GetTrailStatus`、KMS `ListKeys/GetKeyRotationStatus`、Config `DescribeConfigurationRecorders` |
77
+ | **暴露面** | Public Endpoints | 跨服务聚合(EC2 + ELB + RDS + API Gateway 等公网可达资源) |
78
+ | **治理** | Tag Compliance | Resource Groups Tagging API |
79
+
80
+ **可选增强数据源**(如果客户启用了这些服务,Agent 会自动消费):
81
+
82
+ - **AWS Security Hub** — 拉取已有 findings 做交叉验证
83
+ - **AWS Config** — 读取 compliance 状态做对照
84
+ - **AWS Trusted Advisor** — 只对 Business / Enterprise Support 客户可见的检查项
85
+ - **AWS Inspector**(EC2 / ECR / Lambda 漏洞) — 中国区已 GA,支持 **agentless 混合扫描**(没装 SSM Agent 的机器自动走 EBS 快照扫描)
86
+ - **AWS GuardDuty** — 行为检测 findings
87
+
88
+ > ⚠️ **不支持 Macie**:中国区未提供,相关扫描器在 `aws-cn` 下自动禁用。
89
+
90
+ ### 数据隐私承诺 🔒
91
+
92
+ - 凭证**只在进程内存**,不落盘、不进日志、不进报告
93
+ - 除必要的 AWS API 调用外,**零出站网络**
94
+ - 报告内容只含资源 ARN、region、发现描述,不含 access key / session token
95
+ - 所有报告 **XSS 安全**:资源名里的恶意字符不会在 HTML 里被执行
96
+
97
+ ---
98
+
99
+ ## 5. AI 在里面都起到了哪些作用?
100
+
101
+ Agent 本身是**确定性扫描器**——扫描逻辑、阈值、控制项映射都是工程代码,**不是 AI 决策**。AI 主要在三个层面提供价值:
102
+
103
+ ### 🎯 场景 1:自然语言驱动的扫描编排
104
+
105
+ 传统做法:工程师写 shell 脚本串起 AWS CLI / boto3 / IAM Access Analyzer 调用。
106
+
107
+ AI 做法:工程师直接对 Kiro CLI / Claude Code 说:
108
+
109
+ > **"帮我在 cn-north-1 跑一次护网备战扫描,输出中文报告"**
110
+
111
+ MCP 客户端(LLM)自动理解意图 → 调用 `hw_defense` 工具 → 填入 `region=cn-north-1` `language=zh` 参数 → 触发扫描。
112
+
113
+ **AI 角色**:意图理解 + 工具选择 + 参数填充。
114
+
115
+ ### 🎯 场景 2:发现的智能解读与优先级建议
116
+
117
+ 扫描产出的原始 JSON 有几百上千条 finding。AI 客户端可以进一步:
118
+
119
+ - **归因分析** — 把 20 个"Security Group 0.0.0.0/0"合并成"同一个 web tier 被多条规则重复暴露"
120
+ - **优先级排序** — 结合业务上下文(生产 tag、面向互联网)调整严重性
121
+ - **修复脚本建议** — 根据 finding 的 ARN + remediation hint,生成具体的 Terraform / CloudFormation / CLI 修复命令
122
+ - **跨 finding 关联** — 发现"IAM User 有 AdministratorAccess + Access Key 180 天未轮换 + MFA 未启用"是同一个人,打包成一条"高危身份"
123
+
124
+ **AI 角色**:语义聚合 + 上下文推理 + 修复代码生成。
125
+
126
+ ### 🎯 场景 3:合规控制项的语义映射(`mlps3` profile 核心)
127
+
128
+ 等保 2.0 控制项用的是描述性语言(例:"应对重要节点进行入侵行为检测"),AWS findings 用的是技术语言(例:"CloudTrail trail lacks log file validation")。
129
+
130
+ AI 帮助:
131
+ - 把自然语言描述的等保条款**拆解为可验证的技术条件**
132
+ - 将扫描 findings **映射回对应的控制项 ID**(如 8.1.3.a、8.1.4.c)
133
+ - 对齐不清晰的控制项时提示"这里需要人工佐证"
134
+
135
+ **AI 角色**:规则翻译 + 控制项映射 + 证据完整性检查。
136
+
137
+ ### 不是 AI 做的事情 ⚠️
138
+
139
+ - ❌ 扫描规则本身不是 LLM 推理(避免不确定性、幻觉)
140
+ - ❌ API 调用列表不是动态生成(静态 allowlist,避免越权)
141
+ - ❌ 严重性评级不是 AI 打分(固定 schema)
142
+ - ❌ 客户数据不会被送给第三方 AI 训练
143
+
144
+ **设计哲学**:**扫描确定性 + 解读智能化**。事实层靠工程,洞察层靠 AI。
145
+
146
+ ---
147
+
148
+ ## 6. 用户需要准备什么?怎么装?
149
+
150
+ ### 前置条件清单 ✅
151
+
152
+ | 项 | 要求 | 说明 |
153
+ |---|---|---|
154
+ | **运行环境** | Node.js **20.x+** | 工程师本机 / bastion / EC2 / CI runner 任意之一 |
155
+ | **MCP 客户端** | Kiro CLI 或 Claude Code | 任选一个,都支持 MCP 协议 |
156
+ | **AWS 凭证** | IAM Role / User / SSO session / EC2 instance profile | 任何标准 SDK credential chain 能解析的形式都行 |
157
+ | **IAM 权限** | 推荐 `SecurityAudit`(AWS 托管策略) | `ReadOnlyAccess` 也行但更宽;也可以用最小权限自定义策略(仓库里有 action 清单) |
158
+ | **网络** | 能访问 AWS API endpoint | 内网需要配好 AWS 出站代理;**无需**任何出到 AWS 以外的网络 |
159
+ | **EC2 端** | **什么都不用装** ❌ | Agent 只读 API,EC2 上**不需要装 SSM Agent、不需要装任何 Agent 二进制**;即使要扫 EC2 OS 漏洞,Inspector 中国区也支持 agentless(EBS 快照)|
160
+
161
+ ### 不需要准备什么 🚫
162
+
163
+ - ❌ AWS 官方账号 / 合作协议
164
+ - ❌ 付费订阅 / license key
165
+ - ❌ 提供生产数据
166
+ - ❌ 开放任何外部网络入站
167
+ - ❌ 修改 EC2 / 容器镜像
168
+ - ❌ 提前 enable Security Hub / Config(有更好,没有也能跑)
169
+
170
+ ### 安装部署(5 分钟搞定)
171
+
172
+ #### Step 1. 安装 Agent
173
+
174
+ ```bash
175
+ npm install -g aws-security-mcp
176
+ ```
177
+
178
+ 验证:
179
+
180
+ ```bash
181
+ aws-security-mcp --version
182
+ # 应输出 0.7.5 或更高
183
+ ```
184
+
185
+ #### Step 2. 配置 AWS 凭证
186
+
187
+ 任选一种:
188
+
189
+ ```bash
190
+ # 方式 A:命名 profile
191
+ aws configure --profile prod-cn
192
+ export AWS_PROFILE=prod-cn
193
+ export AWS_REGION=cn-north-1
194
+
195
+ # 方式 B:SSO
196
+ aws sso login --profile my-sso
197
+ export AWS_PROFILE=my-sso
198
+
199
+ # 方式 C:EC2 instance role(部署在 EC2 上时完全自动,什么都不用配)
200
+ ```
201
+
202
+ 给这个身份附加 **`SecurityAudit`** 托管策略即可。
203
+
204
+ #### Step 3. 在 MCP 客户端里登记 Agent
205
+
206
+ **Kiro CLI** — 编辑 `~/.kiro/mcp.json`:
207
+
208
+ ```json
209
+ {
210
+ "mcpServers": {
211
+ "aws-security": {
212
+ "command": "aws-security-mcp"
213
+ }
214
+ }
215
+ }
216
+ ```
217
+
218
+ **Claude Code** — 编辑 `~/.config/claude-code/mcp.json`(或用 `claude mcp add` 命令):
219
+
220
+ ```json
221
+ {
222
+ "mcpServers": {
223
+ "aws-security": {
224
+ "command": "aws-security-mcp"
225
+ }
226
+ }
227
+ }
228
+ ```
229
+
230
+ #### Step 4. 跑第一次扫描
231
+
232
+ 在客户端里用自然语言直接说:
233
+
234
+ > **"在 cn-north-1 跑一次全量安全扫描,生成中文报告"**
235
+
236
+
237
+
238
+ > **"帮我做护网行动备战扫描"**
239
+
240
+
241
+
242
+ > **"生成等保三级合规评估报告"**
243
+
244
+ 客户端自动调用对应的 MCP 工具 → 5–15 分钟后生成:
245
+
246
+ - `aws-security-report-YYYYMMDD-HHMMSS.html` — 单文件 HTML 报告(内联 CSS/JS,可直接发邮件 / 交审计)
247
+ - `aws-security-report-YYYYMMDD-HHMMSS.md` — Markdown 版本(方便贴 Confluence / 飞书 Wiki)
248
+ - `aws-security-report-YYYYMMDD-HHMMSS.json` — 结构化数据(方便二次处理)
249
+
250
+ #### Step 5. (可选)启动本地 Dashboard
251
+
252
+ ```bash
253
+ aws-security-mcp dashboard
254
+ # 浏览器打开 http://localhost:3000,聚合查看历史扫描趋势
255
+ ```
256
+
257
+ #### Step 6. (可选)把报告归档到自己账号的 S3
258
+
259
+ 配置一个 S3 bucket 作为长期留档,Dashboard 支持自动上传 —— 数据依然**不离开客户账号**。
260
+
261
+ ---
262
+
263
+ ## 运行示意
264
+
265
+ ```
266
+ ┌─────────────────────────┐ ┌───────────────────────┐
267
+ │ 工程师工作站 / EC2 │ │ AWS 账号 (aws-cn) │
268
+ │ │ │ │
269
+ │ ┌─────────────────┐ │ AWS │ ┌─────────────────┐ │
270
+ │ │ Kiro CLI / │ │ API │ │ IAM / EC2 / S3 │ │
271
+ │ │ Claude Code │◄───┼────────┼──┤ RDS / Lambda... │ │
272
+ │ └────────┬────────┘ │ Read │ └─────────────────┘ │
273
+ │ │ MCP │ only │ │
274
+ │ ┌────────▼────────┐ │ │ ┌─────────────────┐ │
275
+ │ │ aws-security- │────┼────────┼─►│ Security Hub* │ │
276
+ │ │ mcp (本地) │ │ │ │ Config*/Inspect*│ │
277
+ │ └────────┬────────┘ │ │ └─────────────────┘ │
278
+ │ │ │ │ * 可选数据源 │
279
+ │ ┌────────▼────────┐ │ └───────────────────────┘
280
+ │ │ HTML/MD 报告 │ │
281
+ │ │ (本地,不外传) │ │
282
+ │ └─────────────────┘ │
283
+ └─────────────────────────┘
284
+ ```
285
+
286
+ ---
287
+
288
+ ## 常见问题快查
289
+
290
+ | 问题 | 答案 |
291
+ |---|---|
292
+ | 会影响生产吗? | 不会。纯只读 API,SDK 层有 allowlist 强制。 |
293
+ | 凭证会上传吗? | 不会。内存中用完即释放,零外部出站。 |
294
+ | EC2 上要装 agent 吗? | **不用**。这是纯 API 扫描工具。 |
295
+ | 多账号怎么办? | v0.7.5 单账号;v1.0.0 会加 StackSet 多账号支持;现阶段可以用脚本循环 assume-role。 |
296
+ | 和 Security Hub 是替代关系吗? | 不是。**互补**。Agent 专注中国区合规映射 + 单文件报告 + 无前置依赖。 |
297
+ | 有官方 AWS 支持吗? | 这是**社区项目**,MIT 开源;有 Enterprise Support 的客户可以在 case 里引用报告。 |
298
+
299
+ ---
300
+
301
+ ## 资源链接
302
+
303
+ - 📦 npm: https://www.npmjs.com/package/aws-security-mcp
304
+ - 💻 GitHub: https://github.com/jowhee327/aws-security-agent
305
+ - 📄 License: MIT
306
+ - 📘 完整 Narrative: `security-agent-narrative.docx`
307
+
308
+ ---
309
+
310
+ **当前版本**:v0.7.5(2025 Q4)
311
+ **下一里程碑**:v0.8.0 双语 Dashboard + PDF 导出(2026 Q1)