|
1 | | -# AegisOps -- Multimodal Incident Architecture System |
| 1 | +# AegisOps -- Multimodal Incident Review System |
2 | 2 |
|
3 | 3 | [](https://github.com/KIM3310/AegisOps/actions) |
4 | 4 | [](https://www.typescriptlang.org/) |
|
11 | 11 |
|
12 | 12 | 1. Open the Cloudflare demo or local UI and run one incident scenario. |
13 | 13 | 2. Inspect the replay eval suite before trusting live model output. |
14 | | -3. Run `npm run verify` to cover typecheck, tests, replay evals, architecture smoke, and build. |
15 | | -4. Architecture export/handoff artifacts as the architecture-facing proof, not just the chat flow. |
| 14 | +3. Run `npm run verify` to cover typecheck, tests, replay evals, surface smoke, and build. |
| 15 | +4. Review export and handoff artifacts as operator-facing proof, not just the chat flow. |
16 | 16 |
|
17 | | -## Product and System Surface |
| 17 | +## System Overview |
18 | 18 |
|
19 | 19 | | Lens | Current answer | |
20 | 20 | |---|---| |
21 | | -| Audience | SOC, IT operations, managed service, and incident-response teams that need clearer handoff after noisy incidents. | |
22 | | -| Architecture path | Validate the demo, README, architecture notes, and quality gate before deeper workflow architecture. | |
23 | | -| System signal | Multimodal incident analysis, schema-conformant reports, replay evals, follow-up Q&A, and export paths. | |
24 | | -| Safety boundary | Browser never receives provider keys; demo mode is deterministic and no-key by default. | |
25 | | -| Fast path | `npm run verify`, live Cloudflare Pages demo, replay eval suite, and architecture smoke script. | |
| 21 | +| Users | SOC, IT operations, managed service, and incident-response teams that need clearer handoff after noisy incidents. | |
| 22 | +| Technical path | Validate the demo, README, architecture notes, and quality gate before deeper workflow review. | |
| 23 | +| System scope | Multimodal incident analysis, schema-conformant reports, replay evals, follow-up Q&A, and export paths. | |
| 24 | +| Operating boundary | Browser never receives provider keys; demo mode is deterministic and no-key by default. | |
| 25 | +| Evaluation path | `npm run verify`, live Cloudflare Pages demo, replay eval suite, and surface smoke script. | |
26 | 26 |
|
27 | | -## System Fast Path |
| 27 | +## Evaluation Path |
28 | 28 |
|
29 | | -- **First minute:** Open the Cloudflare demo, run one incident scenario, then inspect replay eval coverage. |
| 29 | +- **Start here:** Open the Cloudflare demo, run one incident scenario, then inspect replay eval coverage. |
30 | 30 | - **Local demo:** Run `npm install && npm run dev`; the UI runs on `http://127.0.0.1:3000` and API on `http://127.0.0.1:8787`. |
31 | | -- **Verification:** Run `npm run verify`; it covers typecheck, tests, replay evals, architecture smoke, and build. |
| 31 | +- **Checks:** Run `npm run verify`; it covers typecheck, tests, replay evals, surface smoke, and build. |
32 | 32 |
|
33 | 33 | ## Service Launch Playbook |
34 | 34 |
|
35 | | -- [Service launch playbook](docs/service-launch-playbook.md) maps the repository to architecture audiences, operating gates, operating boundaries, and risk controls. |
| 35 | +- [Service launch playbook](docs/service-launch-playbook.md) maps the repository to intended audiences, operating gates, operating boundaries, and risk controls. |
36 | 36 |
|
37 | 37 | ## Architecture Notes |
38 | 38 |
|
39 | | -- [Architecture guide](docs/architecture-evidence-map.md) summarizes the project angle, first files to inspect, runtime commands, and known boundaries. |
| 39 | +- [Architecture guide](docs/architecture-evidence-map.md) summarizes the system scope, first files to inspect, runtime commands, and known boundaries. |
40 | 40 | - [Quality notes](docs/quality-gate.md) lists the local checks, CI surface, and release expectations for this repository. |
41 | 41 | - [Enterprise readiness notes](docs/enterprise-readiness.md) outlines security, data, operations, integration, and handoff expectations. |
42 | 42 |
|
@@ -140,7 +140,7 @@ If no API key is set, the system runs in **demo mode** -- deterministic output, |
140 | 140 | ### Verify the build |
141 | 141 |
|
142 | 142 | ```bash |
143 | | -npm run verify # typecheck + test + replay evals + architecture smoke + build |
| 143 | +npm run verify # typecheck + test + replay evals + surface smoke + build |
144 | 144 | ``` |
145 | 145 |
|
146 | 146 | --- |
@@ -264,7 +264,7 @@ Set `GOOGLE_APPLICATION_CREDENTIALS` + `GCP_PROJECT_ID` to persist incident arti |
264 | 264 | AegisOps/ |
265 | 265 | App.tsx # React app root |
266 | 266 | types.ts # Shared TypeScript types |
267 | | - constants.ts # Sample presets, architecture lenses |
| 267 | + constants.ts # Sample presets, review lenses |
268 | 268 | components/ # React UI components (26 files) |
269 | 269 | hooks/ # React hooks (app state, auth, storage) |
270 | 270 | services/ # Frontend service clients (Google APIs, Gemini, export) |
@@ -303,7 +303,7 @@ AegisOps/ |
303 | 303 | npm test # Unit tests (Vitest, 29 test files) |
304 | 304 | npm run typecheck # TypeScript strict mode check |
305 | 305 | npm run eval:replays # Replay eval suite (4 scenarios / 32 checks) |
306 | | -npm run architecture:smoke # Architecture surface smoke tests |
| 306 | +npm run architecture:smoke # Review surface smoke tests |
307 | 307 | npm run verify # All of the above + build |
308 | 308 | ``` |
309 | 309 |
|
@@ -335,15 +335,13 @@ Built by [Doeon Kim](https://github.com/KIM3310) |
335 | 335 |
|
336 | 336 | ## Cloud + AI Architecture |
337 | 337 |
|
338 | | -This repository includes a neutral cloud and AI engineering blueprint that maps the current proof surface to runtime boundaries, data contracts, model-risk controls, deployment posture, and validation hooks. |
339 | | - |
340 | 338 | - [Cloud + AI architecture blueprint](docs/cloud-ai-architecture.md) |
341 | 339 | - [Machine-readable architecture manifest](docs/architecture/blueprint.json) |
342 | 340 | - Validation command: `python3 scripts/validate_architecture_blueprint.py` |
343 | 341 |
|
344 | 342 | ## Enterprise Productization |
345 | 343 |
|
346 | | -- [Product operating model](docs/product-operating-model.md) defines the architecture inspection, trust boundary, trust boundary, operating checks, and service path for this repository. |
| 344 | +- [Product operating model](docs/product-operating-model.md) defines the product scope, trust boundary, operating checks, and service path for this repository. |
347 | 345 |
|
348 | 346 | ## System Architecture |
349 | 347 |
|
|
0 commit comments