@getaegis/cli 0.9.7 → 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +4 -26
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,31 +15,9 @@ Aegis is a local-first credential isolation proxy for AI agents. It sits between
15
15
 
16
16
  ## How It Works
17
17
 
18
- ```mermaid
19
- graph LR
20
- Agent["🤖 AI Agent<br/><i>No credentials</i>"]
21
- Gate["🛡️ Aegis Gate<br/><i>localhost:3100</i>"]
22
- Check{"② Domain<br/>allowed?"}
23
- API["🌐 Target API<br/><i>slack.com, github.com</i>"]
24
- Ledger["📋 Ledger"]
25
-
26
- Agent -->|"① HTTP request<br/>(no auth headers)"| Gate
27
- Gate --> Check
28
- Check -->|"Yes"| Inject
29
- Inject["③ Inject credential"] -->|"Forward over HTTPS"| API
30
- API -->|"④ Response"| Gate
31
- Gate -->|"⑤ Return response<br/>(credential stripped)"| Agent
32
- Check -->|"No"| Block["🚫 Blocked"]
33
- Gate -.->|"Log every request"| Ledger
34
-
35
- style Agent fill:#1a1f26,stroke:#C8973E,color:#e8ecef
36
- style Gate fill:#1a1f26,stroke:#C8973E,color:#C8973E,stroke-width:2px
37
- style Check fill:#1a1f26,stroke:#C8973E,color:#e8ecef
38
- style Inject fill:#1a1f26,stroke:#C8973E,color:#e8ecef
39
- style API fill:#1a1f26,stroke:#666,color:#e8ecef
40
- style Block fill:#1a1f26,stroke:#e74c3c,color:#e74c3c
41
- style Ledger fill:#1a1f26,stroke:#C8973E,color:#e8ecef
42
- ```
18
+ <p align="center">
19
+ <img src="docs/assets/how-it-works.svg" alt="How Aegis works — agent sends request through Gate, credentials injected at the network boundary" width="900" />
20
+ </p>
43
21
 
44
22
  ## Why?
45
23
 
@@ -214,7 +192,7 @@ See [full comparison](docs/COMPARISON.md) for detailed breakdowns against each a
214
192
  | [Threat Model](docs/THREAT_MODEL.md) | STRIDE analysis — 28 threats, mitigations, residual risks |
215
193
  | [Comparison](docs/COMPARISON.md) | Detailed comparison with .env, Vault, Doppler, Infisical |
216
194
  | [FAQ](docs/FAQ.md) | Common questions and objections |
217
- | [Roadmap](docs/ROADMAP.md) | Feature roadmap from v0.1 to v1.0 |
195
+ | [Roadmap](docs/ROADMAP.md) | Feature roadmap |
218
196
  | [Contributing](CONTRIBUTING.md) | Code style, PR process, architecture overview |
219
197
 
220
198
  ## Install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getaegis/cli",
3
- "version": "0.9.7",
3
+ "version": "1.0.0",
4
4
  "mcpName": "io.github.getaegis/aegis",
5
5
  "description": "Credential isolation for AI agents. Store, guard, and record — your agent never sees your API keys.",
6
6
  "type": "module",