open-multi-agent-kit 0.78.6 → 0.78.7
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/AGENTS.md +1 -1
- package/CHANGELOG.md +26 -0
- package/MATURITY.md +2 -2
- package/README.md +19 -4
- package/dist/brand/night-city.theme.json +80 -0
- package/dist/brand/palette.d.ts +73 -177
- package/dist/brand/palette.js +115 -39
- package/dist/brand/rust-forge.theme.json +216 -0
- package/dist/brand/theme-compiled.d.ts +61 -0
- package/dist/brand/theme-compiled.js +241 -0
- package/dist/brand/theme.js +50 -37
- package/dist/cli/release-promotion-gate.d.ts +8 -1
- package/dist/cli/release-promotion-gate.js +20 -9
- package/dist/cli/root.d.ts +1 -0
- package/dist/cli/root.js +2 -1
- package/dist/cli/theme/index.d.ts +11 -2
- package/dist/cli/theme/index.js +6 -1
- package/dist/cli/theme/oklab-quantize.d.ts +29 -0
- package/dist/cli/theme/oklab-quantize.js +105 -0
- package/dist/cli/theme/render-table.d.ts +59 -0
- package/dist/cli/theme/render-table.js +112 -0
- package/dist/cli/theme/status-frame.d.ts +10 -0
- package/dist/cli/theme/status-frame.js +22 -0
- package/dist/cli/theme/terminal-capability.d.ts +6 -1
- package/dist/cli/theme/terminal-capability.js +20 -4
- package/dist/cli/theme/theme-doc.d.ts +22 -0
- package/dist/cli/theme/theme-doc.js +97 -0
- package/dist/cli/theme/theme-registry.js +39 -18
- package/dist/cli/theme/tier-explain.d.ts +21 -0
- package/dist/cli/theme/tier-explain.js +60 -0
- package/dist/cli/ui/green-rain-renderer.js +3 -2
- package/dist/cli/ui/neon-grid-renderer.js +4 -3
- package/dist/cli/ui/rust-forge-renderer.js +17 -3
- package/dist/cli/ui/system24-renderer.d.ts +18 -1
- package/dist/cli/ui/system24-renderer.js +39 -16
- package/dist/cli/v2/chat-repl.js +3 -1
- package/dist/cli/v2/cli-v2-skeleton.d.ts +6 -0
- package/dist/cli/v2/cli-v2-skeleton.js +121 -9
- package/dist/cli/v2/interactive-prompt.d.ts +1 -0
- package/dist/cli/v2/interactive-prompt.js +6 -2
- package/dist/commands/chat/core.js +2 -2
- package/dist/commands/chat/runtime.js +2 -0
- package/dist/commands/chat/utils.js +12 -4
- package/dist/commands/cockpit/render.js +102 -64
- package/dist/commands/cockpit/utils.d.ts +2 -0
- package/dist/commands/design.js +18 -16
- package/dist/commands/doctor/checks.d.ts +0 -1
- package/dist/commands/doctor/checks.js +1 -36
- package/dist/commands/doctor/report.js +0 -11
- package/dist/commands/init/content.d.ts +1 -1
- package/dist/commands/init/content.js +3 -11
- package/dist/commands/init.js +2 -2
- package/dist/commands/mcp/config.d.ts +32 -0
- package/dist/commands/mcp/config.js +264 -0
- package/dist/commands/mcp/doctor-fix.d.ts +12 -0
- package/dist/commands/mcp/doctor-fix.js +261 -0
- package/dist/commands/mcp/doctor.d.ts +55 -0
- package/dist/commands/mcp/doctor.js +401 -0
- package/dist/commands/mcp/list.d.ts +1 -0
- package/dist/commands/mcp/list.js +56 -0
- package/dist/commands/mcp/shared.d.ts +47 -0
- package/dist/commands/mcp/shared.js +192 -0
- package/dist/commands/mcp/test.d.ts +5 -0
- package/dist/commands/mcp/test.js +457 -0
- package/dist/commands/mcp.d.ts +8 -104
- package/dist/commands/mcp.js +5 -1603
- package/dist/contracts/proof.d.ts +1 -1
- package/dist/goal/control-loop.d.ts +15 -0
- package/dist/goal/control-loop.js +39 -5
- package/dist/hud/render.d.ts +2 -0
- package/dist/hud/render.js +7 -1
- package/dist/mcp/secret-scanner.d.ts +6 -0
- package/dist/mcp/secret-scanner.js +44 -11
- package/dist/memory/graph-delta-log.d.ts +137 -0
- package/dist/memory/graph-delta-log.js +650 -0
- package/dist/memory/graph-viewer.js +13 -32
- package/dist/memory/local-graph-memory-store.d.ts +36 -3
- package/dist/memory/local-graph-memory-store.js +255 -10
- package/dist/orchestration/log-streamer.js +13 -8
- package/dist/orchestration/routing.d.ts +4 -0
- package/dist/orchestration/routing.js +28 -3
- package/dist/orchestration/state-persister.js +8 -1
- package/dist/providers/anthropic-messages-runner.d.ts +17 -0
- package/dist/providers/anthropic-messages-runner.js +197 -0
- package/dist/providers/model-registry.d.ts +1 -1
- package/dist/providers/model-registry.js +37 -3
- package/dist/providers/provider-runtime.js +27 -11
- package/dist/providers/thinking-levels.js +4 -1
- package/dist/providers/types.d.ts +3 -3
- package/dist/runtime/contracts/weakness-remediation.d.ts +9 -1
- package/dist/runtime/contracts/weakness-remediation.js +9 -1
- package/dist/runtime/router-v2-scoring.d.ts +8 -3
- package/dist/runtime/router-v2-scoring.js +27 -22
- package/dist/runtime/runtime-router.d.ts +5 -0
- package/dist/runtime/runtime-router.js +40 -8
- package/dist/runtime/sandbox-profile.d.ts +29 -0
- package/dist/runtime/sandbox-profile.js +101 -0
- package/dist/runtime/slash-commands.js +300 -2
- package/dist/runtime/tool-dispatch-contracts.d.ts +15 -0
- package/dist/runtime/tool-dispatch-contracts.js +12 -0
- package/dist/runtime/weights-config.d.ts +90 -0
- package/dist/runtime/weights-config.js +249 -0
- package/dist/schema/envelope.schema.d.ts +18 -18
- package/dist/schema/evidence.schema.d.ts +2 -2
- package/dist/schema/proof-bundle.schema.d.ts +6 -6
- package/dist/schema/proof-bundle.schema.js +0 -1
- package/dist/schema/provider.schema.d.ts +2 -2
- package/dist/schema/run-manifest.schema.d.ts +16 -16
- package/dist/theme/ansi.js +9 -2
- package/dist/theme/extended-palette.d.ts +85 -0
- package/dist/theme/extended-palette.js +108 -0
- package/dist/theme/layout.js +29 -8
- package/dist/theme/metrics.js +5 -5
- package/dist/theme/parallel.js +25 -15
- package/dist/ui/omk-sigil.js +5 -14
- package/dist/ui/omk-working-sweep.js +5 -15
- package/dist/util/chat-agent-mode.d.ts +11 -0
- package/dist/util/chat-agent-mode.js +41 -8
- package/dist/util/chat-cockpit.d.ts +9 -0
- package/dist/util/chat-cockpit.js +77 -20
- package/dist/util/fs/core.d.ts +5 -0
- package/dist/util/fs/core.js +35 -0
- package/dist/util/fs/internal.d.ts +14 -0
- package/dist/util/fs/internal.js +169 -0
- package/dist/util/fs/kimi-sync.d.ts +41 -0
- package/dist/util/fs/kimi-sync.js +495 -0
- package/dist/util/fs/logo.d.ts +2 -0
- package/dist/util/fs/logo.js +78 -0
- package/dist/util/fs/manifest.d.ts +6 -0
- package/dist/util/fs/manifest.js +40 -0
- package/dist/util/fs/mcp-diagnose.d.ts +15 -0
- package/dist/util/fs/mcp-diagnose.js +204 -0
- package/dist/util/fs/mcp-runtime-config.d.ts +23 -0
- package/dist/util/fs/mcp-runtime-config.js +412 -0
- package/dist/util/fs/paths.d.ts +13 -0
- package/dist/util/fs/paths.js +82 -0
- package/dist/util/fs/preflight.d.ts +27 -0
- package/dist/util/fs/preflight.js +271 -0
- package/dist/util/fs.d.ts +8 -128
- package/dist/util/fs.js +8 -1757
- package/dist/util/terminal-layout.js +5 -1
- package/dist/util/version.js +2 -1
- package/docs/2026-06-11/critical-issues.md +20 -0
- package/docs/2026-06-11/improvements.md +14 -0
- package/docs/2026-06-11/init-checklist.md +25 -0
- package/docs/2026-06-11/plan.md +20 -0
- package/docs/ARCHITECTURE_ANALYSIS_CODEGRAPH.md +223 -0
- package/docs/adr/0001-no-native-rust-lane.md +52 -0
- package/docs/codex-oauth-setup.md +14 -0
- package/docs/decisions/2026-06-10-git-history-bloat.md +61 -0
- package/docs/decisions/ADR-theme-dark-only-assets.md +43 -0
- package/docs/getting-started.md +1 -1
- package/docs/headroom-omk-final-summary.md +188 -0
- package/docs/headroom-omk-integration.md +394 -0
- package/docs/headroom-omk-setup-guide.md +422 -0
- package/docs/headroom-omk-usage-examples.md +371 -0
- package/docs/provider-maturity.md +1 -1
- package/docs/versioning.md +3 -3
- package/package.json +10 -10
- package/readmeasset/.npmignore +2 -0
- package/readmeasset/ASSET_INDEX.md +7 -5
- package/readmeasset/ASSET_PROVENANCE.md +21 -5
- package/readmeasset/omk-control-surfaces.svg +55 -0
- package/readmeasset/omk-core-loop.svg +1 -0
- package/readmeasset/omk-logo-mark.svg +1 -0
- package/readmeasset/omk-release-assertions.svg +51 -0
- package/dist/native/linux-x64/omk-safety +0 -0
- package/dist/util/native-safety.d.ts +0 -28
- package/dist/util/native-safety.js +0 -118
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
# Headroom OMK 사용 예시
|
|
2
|
+
|
|
3
|
+
## 1. 기본 컨텍스트 압축
|
|
4
|
+
|
|
5
|
+
### 예시 1: 대용량 코드 출력 압축
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
사용자: 이 대용량 코드 출력을 압축해줘
|
|
9
|
+
|
|
10
|
+
에이전트: headroom_compress 도구를 사용하여 컨텍스트를 압축하겠습니다.
|
|
11
|
+
|
|
12
|
+
[에이전트가 headroom_compress 도구를 사용]
|
|
13
|
+
|
|
14
|
+
결과: 60-95% 토큰 절약, 답변 품질 유지
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### 예시 2: 로그 파일 압축
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
사용자: 이 에러 로그를 분석해줘 (10,000줄)
|
|
21
|
+
|
|
22
|
+
에이전트: 먼저 headroom으로 로그를 압축하겠습니다.
|
|
23
|
+
|
|
24
|
+
[에이전트가 headroom_compress 도구를 사용]
|
|
25
|
+
|
|
26
|
+
결과: 10,000줄 로그 → 1,000줄로 압축, 토큰 90% 절약
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## 2. 병렬 서브에이전트 작업
|
|
30
|
+
|
|
31
|
+
### 예시 1: 코드베이스 보안 분석
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
사용자: 3개의 다른 코드베이스를 병렬로 분석해줘
|
|
35
|
+
|
|
36
|
+
에이전트: 3개의 병렬 서브에이전트를 생성하겠습니다.
|
|
37
|
+
|
|
38
|
+
[에이전트가 spawn_parallel_agents 도구를 사용]
|
|
39
|
+
|
|
40
|
+
결과:
|
|
41
|
+
- 에이전트 1: SQL 인젝션 취약점 스캔
|
|
42
|
+
- 에이전트 2: 인증 결함 검사
|
|
43
|
+
- 에이전트 3: 권한 부여 문제 분석
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### 예시 2: 멀티 프로젝트 빌드
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
사용자: 5개의 마이크로서비스를 병렬로 빌드해줘
|
|
50
|
+
|
|
51
|
+
에이전트: 5개의 병렬 빌드 에이전트를 생성하겠습니다.
|
|
52
|
+
|
|
53
|
+
[에이전트가 spawn_parallel_agents 도구를 사용]
|
|
54
|
+
|
|
55
|
+
결과:
|
|
56
|
+
- 각 에이전트가 다른 서비스를 빌드
|
|
57
|
+
- 모든 빌드가 병렬로 실행
|
|
58
|
+
- 결과가 통합되어 보고
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
## 3. 목표 지향적 오케스트레이션
|
|
62
|
+
|
|
63
|
+
### 예시 1: REST API 구축
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
사용자: JWT 인증이 있는 REST API를 구축해줘
|
|
67
|
+
|
|
68
|
+
에이전트: 이 목표를 위해 여러 서브에이전트를 오케스트레이션하겠습니다.
|
|
69
|
+
|
|
70
|
+
[에이전트가 orchestrate_goal 도구를 사용]
|
|
71
|
+
|
|
72
|
+
결과:
|
|
73
|
+
- API 설계사: 엔드포인트 및 스키마 설계
|
|
74
|
+
- 인증 전문가: JWT 인증 구현
|
|
75
|
+
- 데이터베이스 엔지니어: 데이터베이스 스키마 설계
|
|
76
|
+
- 테스트 작성자: 포괄적인 테스트 작성
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### 예시 2: 실시간 알림 시스템
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
사용자: 실시간 알림 시스템을 구축해줘
|
|
83
|
+
|
|
84
|
+
에이전트: 이 목표를 위해 5개의 서브에이전트를 오케스트레이션하겠습니다.
|
|
85
|
+
|
|
86
|
+
[에이전트가 orchestrate_goal 도구를 사용]
|
|
87
|
+
|
|
88
|
+
결과:
|
|
89
|
+
- WebSocket 전문가
|
|
90
|
+
- 데이터베이스 설계자
|
|
91
|
+
- API 개발자
|
|
92
|
+
- 프론트엔드 통합자
|
|
93
|
+
- 테스트 자동화 전문가
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
## 4. 통합 사용 예시
|
|
97
|
+
|
|
98
|
+
### 예시 1: 보안 감사 with 토큰 절약
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
사용자: 대규모 코드베이스의 보안 감사를 수행해줘
|
|
102
|
+
|
|
103
|
+
에이전트: 먼저 코드베이스를 분석하고, 병렬로 보안 검사를 수행하겠습니다.
|
|
104
|
+
|
|
105
|
+
1단계: 코드베이스 탐색 (대용량)
|
|
106
|
+
→ headroom_compress로 탐색 결과 압축
|
|
107
|
+
→ 토큰 80% 절약
|
|
108
|
+
|
|
109
|
+
2단계: 병렬 보안 검사
|
|
110
|
+
→ 4개의 병렬 에이전트 생성
|
|
111
|
+
→ 각각 다른 보안 측면 검사
|
|
112
|
+
|
|
113
|
+
3단계: 결과 통합
|
|
114
|
+
→ coordinate_agent_results로 결과 병합
|
|
115
|
+
→ 포괄적인 보안 보고서 생성
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### 예시 2: 코드 리팩토링 with 오케스트레이션
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
사용자: 레거시 인증 시스템을 리팩토링해줘
|
|
122
|
+
|
|
123
|
+
에이전트: 이 목표를 위해 오케스트레이션을 사용하겠습니다.
|
|
124
|
+
|
|
125
|
+
1단계: 현재 시스템 분석
|
|
126
|
+
→ 코드 분석 에이전트
|
|
127
|
+
→ 대용량 코드 압축 with headroom
|
|
128
|
+
|
|
129
|
+
2단계: 새 패턴 설계
|
|
130
|
+
→ 패턴 설계 에이전트
|
|
131
|
+
→ 설계 문서 압축
|
|
132
|
+
|
|
133
|
+
3단계: 마이그레이션 계획
|
|
134
|
+
→ 마이그레이션 플래너 에이전트
|
|
135
|
+
→ 계획 문서 압축
|
|
136
|
+
|
|
137
|
+
4단계: 테스트 작성
|
|
138
|
+
→ 테스트 작성 에이전트
|
|
139
|
+
→ 테스트 코드 압축
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## 5. 고급 사용 예시
|
|
143
|
+
|
|
144
|
+
### 예시 1: 적응형 오케스트레이션
|
|
145
|
+
|
|
146
|
+
```
|
|
147
|
+
사용자: 복잡한 데이터 파이프라인을 구축해줘
|
|
148
|
+
|
|
149
|
+
에이전트: 적응형 오케스트레이션을 사용하겠습니다.
|
|
150
|
+
|
|
151
|
+
[에이전트가 orchestrate_goal 도구를 사용 with strategy: "adaptive"]
|
|
152
|
+
|
|
153
|
+
결과:
|
|
154
|
+
- 의존성 기반 실행
|
|
155
|
+
- 이전 에이전트 완료 후 다음 에이전트 시작
|
|
156
|
+
- 자동 조정 및 최적화
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### 예시 2: 파이프라인 오케스트레이션
|
|
160
|
+
|
|
161
|
+
```
|
|
162
|
+
사용자: 머신러닝 모델 학습 파이프라인을 구축해줘
|
|
163
|
+
|
|
164
|
+
에이전트: 파이프라인 오케스트레이션을 사용하겠습니다.
|
|
165
|
+
|
|
166
|
+
[에이전트가 orchestrate_goal 도구를 사용 with strategy: "pipeline"]
|
|
167
|
+
|
|
168
|
+
결과:
|
|
169
|
+
- 데이터 수집 → 전처리 → 모델 학습 → 평가 → 배포
|
|
170
|
+
- 각 단계가 이전 단계 결과를 사용
|
|
171
|
+
- 순차적 but 효율적 실행
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
## 6. 토큰 절약 최적화
|
|
175
|
+
|
|
176
|
+
### 예시 1: 반복적 압축
|
|
177
|
+
|
|
178
|
+
```
|
|
179
|
+
사용자: 대규모 코드 리뷰를 수행해줘
|
|
180
|
+
|
|
181
|
+
에이전트: 반복적 압축을 사용하여 토큰을 최적화하겠습니다.
|
|
182
|
+
|
|
183
|
+
1단계: 코드 탐색 (대용량)
|
|
184
|
+
→ headroom_compress로 탐색 결과 압축
|
|
185
|
+
→ 토큰 90% 절약
|
|
186
|
+
|
|
187
|
+
2단계: 상세 분석 (중간 크기)
|
|
188
|
+
→ 압축된 컨텍스트 사용
|
|
189
|
+
→ 추가 압축 필요시 다시 압축
|
|
190
|
+
|
|
191
|
+
3단계: 최종 보고서 (소규모)
|
|
192
|
+
→ 압축된 결과 사용
|
|
193
|
+
→ 최소한의 토큰으로 보고서 생성
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
### 예시 2: 컨텍스트 윈도우 관리
|
|
197
|
+
|
|
198
|
+
```
|
|
199
|
+
사용자: 긴 대화에서 컨텍스트를 관리해줘
|
|
200
|
+
|
|
201
|
+
에이전트: headroom을 사용하여 컨텍스트 윈도우를 관리하겠습니다.
|
|
202
|
+
|
|
203
|
+
[에이전트가 자동으로 컨텍스트 압축]
|
|
204
|
+
|
|
205
|
+
결과:
|
|
206
|
+
- 대화 시작: 원본 컨텍스트
|
|
207
|
+
- 대화 중반: 압축된 컨텍스트 (60-95% 절약)
|
|
208
|
+
- 대화 후반: 추가 압축 필요시 자동 압축
|
|
209
|
+
- 컨텍스트 윈도우 한계 방지
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
## 7. 에이전트 장비 설정
|
|
213
|
+
|
|
214
|
+
### 예시 1: 보안 전문 에이전트 장비
|
|
215
|
+
|
|
216
|
+
```
|
|
217
|
+
사용자: 보안 전문 에이전트를 장비해줘
|
|
218
|
+
|
|
219
|
+
에이전트: equip_agent 도구를 사용하여 에이전트를 장비하겠습니다.
|
|
220
|
+
|
|
221
|
+
[에이전트가 equip_agent 도구를 사용]
|
|
222
|
+
|
|
223
|
+
결과:
|
|
224
|
+
- Skills: 보안 스캐너, 취약점 분석기, 침입 탐지기
|
|
225
|
+
- Hooks: 사전 커밋 검사, 사후 커밋 분석
|
|
226
|
+
- MCP Servers: 취약점 데이터베이스, 보안 패턴 저장소
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
### 예시 2: 데이터베이스 전문 에이전트 장비
|
|
230
|
+
|
|
231
|
+
```
|
|
232
|
+
사용자: 데이터베이스 전문 에이전트를 장비해줘
|
|
233
|
+
|
|
234
|
+
에이전트: equip_agent 도구를 사용하여 에이전트를 장비하겠습니다.
|
|
235
|
+
|
|
236
|
+
[에이전트가 equip_agent 도구를 사용]
|
|
237
|
+
|
|
238
|
+
결과:
|
|
239
|
+
- Skills: 데이터베이스 설계, 마이그레이션, 최적화
|
|
240
|
+
- Hooks: 백업, 복원, 무결성 검사
|
|
241
|
+
- MCP Servers: PostgreSQL, Redis, Elasticsearch
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
## 8. 모니터링 및 통계
|
|
245
|
+
|
|
246
|
+
### 예시 1: 압축 통계 확인
|
|
247
|
+
|
|
248
|
+
```
|
|
249
|
+
사용자: headroom 압축 통계를 보여줘
|
|
250
|
+
|
|
251
|
+
에이전트: headroom_stats 도구를 사용하여 통계를 확인하겠습니다.
|
|
252
|
+
|
|
253
|
+
[에이전트가 headroom_stats 도구를 사용]
|
|
254
|
+
|
|
255
|
+
결과:
|
|
256
|
+
- 총 압축 횟수: 150회
|
|
257
|
+
- 평균 절약률: 75%
|
|
258
|
+
- 총 절약된 토큰: 1,500,000개
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
### 예시 2: 오케스트레이터 상태 확인
|
|
262
|
+
|
|
263
|
+
```
|
|
264
|
+
사용자: 오케스트레이터 상태를 확인해줘
|
|
265
|
+
|
|
266
|
+
에이전트: orchestrator_status 도구를 사용하여 상태를 확인하겠습니다.
|
|
267
|
+
|
|
268
|
+
[에이전트가 orchestrator_status 도구를 사용]
|
|
269
|
+
|
|
270
|
+
결과:
|
|
271
|
+
- 현재 목표: REST API 구축
|
|
272
|
+
- 활성 에이전트: 5개
|
|
273
|
+
- 완료된 에이전트: 3개
|
|
274
|
+
- 실패한 에이전트: 0개
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
## 9. 문제 해결
|
|
278
|
+
|
|
279
|
+
### 예시 1: 압축 실패 시
|
|
280
|
+
|
|
281
|
+
```
|
|
282
|
+
사용자: 압축이 실패했어
|
|
283
|
+
|
|
284
|
+
에이전트: headroom_install 도구를 사용하여 headroom을 재설치하겠습니다.
|
|
285
|
+
|
|
286
|
+
[에이전트가 headroom_install 도구를 사용 with force: true]
|
|
287
|
+
|
|
288
|
+
결과: headroom 재설치, 압축 기능 복구
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
### 예시 2: 에이전트 스폰 실패 시
|
|
292
|
+
|
|
293
|
+
```
|
|
294
|
+
사용자: 에이전트가 스폰되지 않아
|
|
295
|
+
|
|
296
|
+
에이전트: check_parallel_agents 도구를 사용하여 상태를 확인하겠습니다.
|
|
297
|
+
|
|
298
|
+
[에이전트가 check_parallel_agents 도구를 사용]
|
|
299
|
+
|
|
300
|
+
결과: 에이전트 상태 확인, 문제 진단, 해결책 제시
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
## 10. 통합 워크플로우
|
|
304
|
+
|
|
305
|
+
### 예시 1: 완전한 개발 워크플로우
|
|
306
|
+
|
|
307
|
+
```
|
|
308
|
+
사용자: 새로운 기능을 개발해줘
|
|
309
|
+
|
|
310
|
+
에이전트: 완전한 개발 워크플로우를 시작하겠습니다.
|
|
311
|
+
|
|
312
|
+
1단계: 요구사항 분석
|
|
313
|
+
→ 오케스트레이터가 목표 설정
|
|
314
|
+
→ 분석 에이전트 생성
|
|
315
|
+
|
|
316
|
+
2단계: 설계
|
|
317
|
+
→ 설계 에이전트 생성
|
|
318
|
+
→ 설계 문서 압축 with headroom
|
|
319
|
+
|
|
320
|
+
3단계: 구현
|
|
321
|
+
→ 구현 에이전트 생성 (병렬)
|
|
322
|
+
→ 코드 압축 with headroom
|
|
323
|
+
|
|
324
|
+
4단계: 테스트
|
|
325
|
+
→ 테스트 에이전트 생성
|
|
326
|
+
→ 테스트 결과 압축
|
|
327
|
+
|
|
328
|
+
5단계: 배포
|
|
329
|
+
→ 배포 에이전트 생성
|
|
330
|
+
→ 배포 로그 압축
|
|
331
|
+
|
|
332
|
+
결과: 토큰 70% 절약, 개발 시간 50% 단축
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
### 예시 2: 지속적 통합 워크플로우
|
|
336
|
+
|
|
337
|
+
```
|
|
338
|
+
사용자: CI/CD 파이프라인을 구축해줘
|
|
339
|
+
|
|
340
|
+
에이전트: 지속적 통합 워크플로우를 구축하겠습니다.
|
|
341
|
+
|
|
342
|
+
1단계: 코드 변경 감지
|
|
343
|
+
→ Git 훅 에이전트
|
|
344
|
+
→ 변경사항 압축
|
|
345
|
+
|
|
346
|
+
2단계: 빌드
|
|
347
|
+
→ 빌드 에이전트 (병렬)
|
|
348
|
+
→ 빌드 로그 압축
|
|
349
|
+
|
|
350
|
+
3단계: 테스트
|
|
351
|
+
→ 테스트 에이전트 (병렬)
|
|
352
|
+
→ 테스트 결과 압축
|
|
353
|
+
|
|
354
|
+
4단계: 배포
|
|
355
|
+
→ 배포 에이전트
|
|
356
|
+
→ 배포 로그 압축
|
|
357
|
+
|
|
358
|
+
결과: 자동화된 CI/CD, 토큰 80% 절약
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
## 결론
|
|
362
|
+
|
|
363
|
+
이 예시들은 headroom과 OMK의 통합이如何提供하는지 보여줍니다:
|
|
364
|
+
|
|
365
|
+
1. **토큰 절약**: 60-95% 토큰 절약 through headroom 압축
|
|
366
|
+
2. **병렬 처리**:多个 서브에이전트가 동시에 작업
|
|
367
|
+
3. **목표 오케스트레이션**: 복잡한 목표를 향한协调된 작업
|
|
368
|
+
4. **유연한 장비**: 각 에이전트에特定한 skills, hooks, MCP 서버
|
|
369
|
+
5. **모니터링 및 통계**: 압축效果 및 에이전트状态 모니터링
|
|
370
|
+
|
|
371
|
+
이러한 도구들을 사용하여 OMK 워크플로우를 효율적인 컨텍스트 압축과 병렬 에이전트 오케스트레이션으로 향상시키세요.
|
package/docs/versioning.md
CHANGED
|
@@ -4,11 +4,11 @@ OMK uses two version fields in release artifacts:
|
|
|
4
4
|
|
|
5
5
|
| Field | Current value | Source | Meaning |
|
|
6
6
|
| --- | --- | --- | --- |
|
|
7
|
-
| Package version | `0.78.
|
|
7
|
+
| Package version | `0.78.7` | `package.json`, `package-lock.json` | npm/package source version. |
|
|
8
8
|
| Runtime version | `v1.2` | `src/version.ts`, JSON schemas | Contract/runtime family used by OMK envelopes. |
|
|
9
9
|
| Release channel | `pre-1.0` | `src/version.ts` | Pre-1.0 package channel. |
|
|
10
10
|
|
|
11
|
-
`0.78.
|
|
11
|
+
`0.78.7` is the package source version for the `v1.2` runtime contract family.
|
|
12
12
|
Use `v1.2` only for runtime contracts; do not substitute it for the package version.
|
|
13
13
|
|
|
14
14
|
## Contract versions
|
|
@@ -44,6 +44,6 @@ The `version --json` command emits one `omk.contract.v1` envelope whose data pay
|
|
|
44
44
|
|
|
45
45
|
## Documentation rules
|
|
46
46
|
|
|
47
|
-
- Use `0.78.
|
|
47
|
+
- Use `0.78.7` when referring to the current package source version.
|
|
48
48
|
- Use `v1.2` only for the runtime contract family.
|
|
49
49
|
- Keep historical changelog entries unchanged unless the text is not clearly historical.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "open-multi-agent-kit",
|
|
3
|
-
"version": "0.78.
|
|
3
|
+
"version": "0.78.7",
|
|
4
4
|
"description": "Provider-neutral multi-agent control plane for coding workflows: route agents, verify evidence, orchestrate MCP-aware DAGs, and control the loop from the omk CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -28,24 +28,24 @@
|
|
|
28
28
|
"prepare": "npm run build",
|
|
29
29
|
"yaml:check": "node scripts/validate-yaml.mjs",
|
|
30
30
|
"schema:check": "node scripts/validate-json-contracts.mjs",
|
|
31
|
+
"theme:check": "node scripts/theme-check.mjs --out proof/theme-check",
|
|
32
|
+
"assets:build": "node scripts/assets-build.mjs",
|
|
33
|
+
"assets:check": "node scripts/assets-check.mjs",
|
|
34
|
+
"color:gate": "node scripts/color-literal-gate.mjs",
|
|
31
35
|
"proof:index": "node scripts/build-proof-index.mjs",
|
|
32
36
|
"proof:check": "node scripts/proof-check.mjs",
|
|
33
37
|
"version:check": "node scripts/check-version-consistency.mjs",
|
|
34
38
|
"contract:check": "npm run build:clean && npm run schema:check && node scripts/check-json-stdout.mjs",
|
|
35
39
|
"verify:contracts": "npm run contract:check",
|
|
36
|
-
"
|
|
37
|
-
"release:
|
|
40
|
+
"verify:no-persona": "node scripts/verify-no-persona.mjs",
|
|
41
|
+
"release:check": "npm run verify:no-kimi && npm run verify:no-persona && npm run contract:check && npm run schema:check && npm run version:check && npm run proof:check && npm run smoke:execution && npm run pack:dry && npm run audit:package && npm run smoke:pack && OMK_RELEASE_DEMO=1 node scripts/release-gate.mjs",
|
|
42
|
+
"release:full": "npm run verify && npm run verify:no-kimi && npm run verify:no-persona && npm run contract:check && npm run schema:check && npm run version:check && npm run proof:check && npm run smoke:execution && npm run pack:dry && npm run audit:package && npm run smoke:pack && OMK_RELEASE_DEMO=1 node scripts/release-gate.mjs",
|
|
38
43
|
"regression:matrix": "node scripts/regression-proof-matrix.mjs",
|
|
39
|
-
"release:rc": "npm run verify && npm run verify:no-kimi && npm run
|
|
44
|
+
"release:rc": "npm run verify && npm run verify:no-kimi && npm run verify:no-persona && npm run contract:check && npm run schema:check && npm run version:check && npm run proof:check && npm run smoke:execution && npm run pack:dry && npm run audit:package && npm run smoke:pack && OMK_RELEASE_DEMO=1 node scripts/release-gate.mjs",
|
|
40
45
|
"smoke:no-kimi:chat": "OMK_MCP_PREFLIGHT=off OMK_PROJECT_ROOT=\"$PWD\" node dist/cli.js chat --provider auto --mode agent --execution ask --layout plain --mcp-scope none --smoke --json",
|
|
41
46
|
"smoke:no-kimi:codex": "OMK_MCP_PREFLIGHT=off OMK_PROJECT_ROOT=\"$PWD\" node dist/cli.js chat --provider codex --mode agent --execution ask --layout plain --mcp-scope none --smoke --json",
|
|
42
47
|
"smoke:no-kimi:doctor": "OMK_PROJECT_ROOT=\"$PWD\" node dist/cli.js doctor --json",
|
|
43
|
-
"verify:no-kimi": "npm run build:clean && npm run smoke:no-kimi:doctor && npm run smoke:no-kimi:chat && npm run smoke:no-kimi:codex && npm run
|
|
44
|
-
"rust:check": "node scripts/rust-safety-check.mjs",
|
|
45
|
-
"rust:build": "cargo build -p omk-safety",
|
|
46
|
-
"native:build": "node scripts/build-native.mjs",
|
|
47
|
-
"native:normalize": "node scripts/normalize-native-artifacts.mjs",
|
|
48
|
-
"native:no-kimi:turn": "OMK_MCP_PREFLIGHT=off OMK_PROJECT_ROOT=\"$PWD\" node --test test/no-kimi-native-turn.test.mjs",
|
|
48
|
+
"verify:no-kimi": "npm run build:clean && npm run smoke:no-kimi:doctor && npm run smoke:no-kimi:chat && npm run smoke:no-kimi:codex && npm run no-kimi:default-surface && npm run test:no-kimi:runtime-routing",
|
|
49
49
|
"no-kimi:default-surface": "node scripts/no-kimi-default-surface.mjs",
|
|
50
50
|
"test:no-kimi:runtime-routing": "node --test --test-timeout=300000 test/provider-router.test.mjs test/runtime-router.test.mjs && node --test --test-timeout=300000 --test-name-pattern='authority provider write-risk routes|configured non-Kimi authority|implicit default authority|unavailable DeepSeek|external direct fallback|Super OMK config|scoreProviders includes|computeProviderRouteScore|runtime fallback' test/provider-routing.test.mjs && node --test test/no-kimi-cli-hud-surface.test.mjs test/v2-regression.test.mjs",
|
|
51
51
|
"legacy-identity:check": "node scripts/no-legacy-identity-surface.mjs",
|
package/readmeasset/.npmignore
CHANGED
|
@@ -30,8 +30,10 @@ Curated OMK//CONTROL assets in this directory. Assets are provenance-covered and
|
|
|
30
30
|
| `omk-evidence-loop-0.78.0.webp` | repo-only | Evidence bundle and verify gate crop | omk-runtime-flow-0.78.0.webp | `900x774` | `WEBP` | 60808 |
|
|
31
31
|
| `omk-runtime-flow-wide.webp` | repo-only | Runtime flow wide strip | omk-runtime-flow-0.78.0.webp | `1485x178` | `WEBP` | 45258 |
|
|
32
32
|
| `omk-architecture-strip.webp` | repo-only | TUI command timeline and evidence ledger strip | omk-tui-0.78.0.webp | `1536x273` | `WEBP` | 71128 |
|
|
33
|
-
| `omk-core-loop.svg` | yes | OMK Core Loop | local SVG render from OMK palette | `1200x420` | `SVG` |
|
|
34
|
-
| `omk-
|
|
35
|
-
| `omk-
|
|
36
|
-
| `omk-
|
|
37
|
-
| `omk-
|
|
33
|
+
| `omk-core-loop.svg` | yes | OMK Core Loop | local SVG render from OMK palette | `1200x420` | `SVG` | 2731 |
|
|
34
|
+
| `omk-control-surfaces.svg` | yes | Operator control surfaces | local SVG render from OMK palette | `1200x420` | `SVG` | 3325 |
|
|
35
|
+
| `omk-release-assertions.svg` | yes | Release assertion card | local SVG render from OMK palette | `1200x420` | `SVG` | 3052 |
|
|
36
|
+
| `omk-provider-lanes.svg` | repo-only | Provider Lanes | local SVG render from OMK palette | `1200x420` | `SVG` | 2753 |
|
|
37
|
+
| `omk-evidence-ledger.svg` | repo-only | Evidence Ledger | local SVG render from OMK palette | `1200x420` | `SVG` | 2411 |
|
|
38
|
+
| `omk-badges.svg` | repo-only | OMK Badges | local SVG render from OMK palette | `1200x420` | `SVG` | 2405 |
|
|
39
|
+
| `omk-logo-mark.svg` | yes | Vector OMK logo mark | local SVG render from OMK palette | `512x512` | `SVG` | 649 |
|
|
@@ -87,8 +87,24 @@
|
|
|
87
87
|
| `omk-evidence-loop-0.78.0.webp` | omk-runtime-flow-0.78.0.webp | Evidence bundle and verify gate crop | `900x774` | `WEBP` | 60808 | `2c4bf27d738710461b9979144759e06a99729ffcc97f53d1bd985b503b0f99da` |
|
|
88
88
|
| `omk-runtime-flow-wide.webp` | omk-runtime-flow-0.78.0.webp | Runtime flow wide strip | `1485x178` | `WEBP` | 45258 | `9edac732cd8de0533e345337392f3dca464a9d8a2f08d8b7a464b685a8da45ce` |
|
|
89
89
|
| `omk-architecture-strip.webp` | omk-tui-0.78.0.webp | TUI command timeline and evidence ledger strip | `1536x273` | `WEBP` | 71128 | `c76b825863260ecff832e31d986b91d341903f929faa62727511a594cb714cfe` |
|
|
90
|
-
| `omk-core-loop.svg` |
|
|
91
|
-
| `omk-
|
|
92
|
-
| `omk-
|
|
93
|
-
| `omk-
|
|
94
|
-
| `omk-
|
|
90
|
+
| `omk-core-loop.svg` | themes/night-city.theme.json via scripts/assets-build.mjs | OMK Core Loop | `1200x420` | `SVG` | 2731 | `0f60a453833c541a05db3b509f9d56fae02c38c89334c7c57357f281cad439f2` |
|
|
91
|
+
| `omk-control-surfaces.svg` | themes/night-city.theme.json via scripts/assets-build.mjs | Operator control surfaces | `1200x420` | `SVG` | 3325 | `2295e2048336452a7abef90c0636107be36845946976fd79563f10092b22bd99` |
|
|
92
|
+
| `omk-release-assertions.svg` | themes/night-city.theme.json via scripts/assets-build.mjs | Release assertion card | `1200x420` | `SVG` | 3052 | `8040d23c46bf48fd7f946f9ff491dcad8aa41ce023b7b062ff5475667c8f283d` |
|
|
93
|
+
| `omk-provider-lanes.svg` | themes/night-city.theme.json via scripts/assets-build.mjs | Provider Lanes | `1200x420` | `SVG` | 2753 | `d7d85098e02e78d37d10a9886a041a8546bfa8438dd3f29bb157ce848bfd0b83` |
|
|
94
|
+
| `omk-evidence-ledger.svg` | themes/night-city.theme.json via scripts/assets-build.mjs | Evidence Ledger | `1200x420` | `SVG` | 2411 | `01f0d66d2ba9915d9975bd7f93bb790e7ab0e11adbaedf84b4e5c25be6fe837c` |
|
|
95
|
+
| `omk-badges.svg` | themes/night-city.theme.json via scripts/assets-build.mjs | OMK Badges | `1200x420` | `SVG` | 2405 | `4a4c94daca5d81e10a1ca185d3c07d4dfa6ac732363ecbc4bdbde841d4624cf6` |
|
|
96
|
+
| `omk-logo-mark.svg` | themes/night-city.theme.json via scripts/assets-build.mjs | Vector OMK logo mark | `512x512` | `SVG` | 649 | `f5ba6323a9bf471b3c6001d063b90087dece0491ef15c4f0f1ea314785bef124` |
|
|
97
|
+
|
|
98
|
+
## Theme-derived SVG assets (2026-06-10)
|
|
99
|
+
|
|
100
|
+
- Source of truth: `themes/night-city.theme.json` (`omk.theme.v1` contract, contrast-gated by `npm run theme:check`).
|
|
101
|
+
- Generator: `scripts/assets-build.mjs` resolves every `fill`/`stroke`/`stop-color` value from theme primitives and embeds a provenance comment; geometry, layout, and text are preserved.
|
|
102
|
+
- Regeneration command: `npm run assets:build` (re-run after any theme token change; the `@<hash>` suffix is the first 12 hex of the theme file's SHA-256).
|
|
103
|
+
- Light variant: not built — dark-only by ADR, see `docs/decisions/ADR-theme-dark-only-assets.md`. Non-dark themes are refused unless every used pair passes the 4.5/3.0 WCAG gates inline.
|
|
104
|
+
- derived-from: omk.theme.v1/night-city@e5daf40d789d — `omk-badges.svg`
|
|
105
|
+
- derived-from: omk.theme.v1/night-city@e5daf40d789d — `omk-control-surfaces.svg`
|
|
106
|
+
- derived-from: omk.theme.v1/night-city@e5daf40d789d — `omk-core-loop.svg`
|
|
107
|
+
- derived-from: omk.theme.v1/night-city@e5daf40d789d — `omk-evidence-ledger.svg`
|
|
108
|
+
- derived-from: omk.theme.v1/night-city@e5daf40d789d — `omk-logo-mark.svg`
|
|
109
|
+
- derived-from: omk.theme.v1/night-city@e5daf40d789d — `omk-provider-lanes.svg`
|
|
110
|
+
- derived-from: omk.theme.v1/night-city@e5daf40d789d — `omk-release-assertions.svg`
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<!-- derived-from: omk.theme.v1/night-city@e5daf40d789d -->
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="420" viewBox="0 0 1200 420" role="img" aria-labelledby="title desc">
|
|
3
|
+
<title id="title">OMK operator surfaces</title>
|
|
4
|
+
<desc id="desc">OMK operator surfaces: CLI, provider router, MCP scope, evidence gate, replay ledger, and package audit.</desc>
|
|
5
|
+
<defs>
|
|
6
|
+
<linearGradient id="panel" x1="0" x2="1" y1="0" y2="1">
|
|
7
|
+
<stop offset="0" stop-color="#070B14"/>
|
|
8
|
+
<stop offset="1" stop-color="#101826"/>
|
|
9
|
+
</linearGradient>
|
|
10
|
+
<linearGradient id="lane" x1="0" x2="1">
|
|
11
|
+
<stop offset="0" stop-color="#00D6FF"/>
|
|
12
|
+
<stop offset="0.5" stop-color="#00FFC2"/>
|
|
13
|
+
<stop offset="1" stop-color="#FF47B2"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
16
|
+
<rect width="1200" height="420" rx="34" fill="url(#panel)"/>
|
|
17
|
+
<rect x="28" y="28" width="1144" height="364" rx="24" fill="none" stroke="#00D6FF" stroke-width="2"/>
|
|
18
|
+
<text x="60" y="72" fill="#E8F8FF" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" font-size="34" font-weight="800">OMK//CONTROL SURFACES</text>
|
|
19
|
+
<text x="60" y="110" fill="#9DB3C7" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" font-size="18">operator-visible assertions, not hidden agent folklore</text>
|
|
20
|
+
<path d="M92 232 H1108" stroke="url(#lane)" stroke-width="8" stroke-linecap="round"/>
|
|
21
|
+
|
|
22
|
+
<g font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" text-anchor="middle">
|
|
23
|
+
<g transform="translate(112 232)">
|
|
24
|
+
<circle r="38" fill="#070B14" stroke="#00D6FF" stroke-width="4"/>
|
|
25
|
+
<text y="7" fill="#00D6FF" font-size="22" font-weight="800">CLI</text>
|
|
26
|
+
<text y="72" fill="#E8F8FF" font-size="16">doctor/chat</text>
|
|
27
|
+
</g>
|
|
28
|
+
<g transform="translate(308 232)">
|
|
29
|
+
<circle r="38" fill="#070B14" stroke="#00FFC2" stroke-width="4"/>
|
|
30
|
+
<text y="7" fill="#00FFC2" font-size="22" font-weight="800">ROUTE</text>
|
|
31
|
+
<text y="72" fill="#E8F8FF" font-size="16">provider policy</text>
|
|
32
|
+
</g>
|
|
33
|
+
<g transform="translate(504 232)">
|
|
34
|
+
<circle r="38" fill="#070B14" stroke="#9D4EDD" stroke-width="4"/>
|
|
35
|
+
<text y="7" fill="#9D4EDD" font-size="22" font-weight="800">MCP</text>
|
|
36
|
+
<text y="72" fill="#E8F8FF" font-size="16">scoped tools</text>
|
|
37
|
+
</g>
|
|
38
|
+
<g transform="translate(700 232)">
|
|
39
|
+
<circle r="38" fill="#070B14" stroke="#FFB000" stroke-width="4"/>
|
|
40
|
+
<text y="7" fill="#FFB000" font-size="22" font-weight="800">GATE</text>
|
|
41
|
+
<text y="72" fill="#E8F8FF" font-size="16">evidence</text>
|
|
42
|
+
</g>
|
|
43
|
+
<g transform="translate(896 232)">
|
|
44
|
+
<circle r="38" fill="#070B14" stroke="#FF47B2" stroke-width="4"/>
|
|
45
|
+
<text y="7" fill="#FF47B2" font-size="22" font-weight="800">LEDGER</text>
|
|
46
|
+
<text y="72" fill="#E8F8FF" font-size="16">replay/inspect</text>
|
|
47
|
+
</g>
|
|
48
|
+
<g transform="translate(1088 232)">
|
|
49
|
+
<circle r="38" fill="#070B14" stroke="#FF5874" stroke-width="4"/>
|
|
50
|
+
<text y="7" fill="#FF5874" font-size="22" font-weight="800">AUDIT</text>
|
|
51
|
+
<text y="72" fill="#E8F8FF" font-size="16">package-safe</text>
|
|
52
|
+
</g>
|
|
53
|
+
</g>
|
|
54
|
+
<text x="600" y="366" fill="#9DB3C7" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" font-size="18" text-anchor="middle">Every claim routes through a visible command, artifact, or proof bundle.</text>
|
|
55
|
+
</svg>
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<!-- derived-from: omk.theme.v1/night-city@e5daf40d789d -->
|
|
1
2
|
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="420" viewBox="0 0 1200 420">
|
|
2
3
|
<rect width="1200" height="420" fill="#070B14"/>
|
|
3
4
|
<defs><filter id="glow"><feGaussianBlur stdDeviation="3" result="b"/><feMerge><feMergeNode in="b"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs>
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
<!-- derived-from: omk.theme.v1/night-city@e5daf40d789d -->
|
|
1
2
|
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512">
|
|
2
3
|
<rect width="512" height="512" rx="96" fill="#070B14"/>
|
|
3
4
|
<path d="M256 48 424 144v224L256 464 88 368V144Z" fill="#101826" stroke="#00D6FF" stroke-width="16"/>
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<!-- derived-from: omk.theme.v1/night-city@e5daf40d789d -->
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="420" viewBox="0 0 1200 420" role="img" aria-labelledby="title desc">
|
|
3
|
+
<title id="title">OMK release assertions</title>
|
|
4
|
+
<desc id="desc">Package, binary, gate, and package-safety assertions for open-multi-agent-kit releases.</desc>
|
|
5
|
+
<defs>
|
|
6
|
+
<linearGradient id="bg" x1="0" x2="1" y1="0" y2="1">
|
|
7
|
+
<stop offset="0" stop-color="#070B14"/>
|
|
8
|
+
<stop offset="0.52" stop-color="#101826"/>
|
|
9
|
+
<stop offset="1" stop-color="#070B14"/>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient id="cyanMagenta" x1="0" x2="1">
|
|
12
|
+
<stop offset="0" stop-color="#00D6FF"/>
|
|
13
|
+
<stop offset="0.5" stop-color="#00FFC2"/>
|
|
14
|
+
<stop offset="1" stop-color="#FF47B2"/>
|
|
15
|
+
</linearGradient>
|
|
16
|
+
<filter id="glow" x="-20%" y="-20%" width="140%" height="140%">
|
|
17
|
+
<feGaussianBlur stdDeviation="3" result="blur"/>
|
|
18
|
+
<feMerge>
|
|
19
|
+
<feMergeNode in="blur"/>
|
|
20
|
+
<feMergeNode in="SourceGraphic"/>
|
|
21
|
+
</feMerge>
|
|
22
|
+
</filter>
|
|
23
|
+
</defs>
|
|
24
|
+
<rect width="1200" height="420" rx="34" fill="url(#bg)"/>
|
|
25
|
+
<rect x="24" y="24" width="1152" height="372" rx="24" fill="none" stroke="url(#cyanMagenta)" stroke-width="3" filter="url(#glow)"/>
|
|
26
|
+
<path d="M54 96 H1146" stroke="#00D6FF" stroke-width="1" stroke-dasharray="8 14" opacity="0.72"/>
|
|
27
|
+
<text x="60" y="72" fill="#E8F8FF" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" font-size="34" font-weight="800">OMK//RELEASE ASSERTIONS</text>
|
|
28
|
+
<text x="60" y="112" fill="#9DB3C7" font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" font-size="18">npm truth surface for open-multi-agent-kit</text>
|
|
29
|
+
|
|
30
|
+
<g font-family="ui-monospace, SFMono-Regular, Menlo, Consolas, monospace" font-size="21">
|
|
31
|
+
<rect x="60" y="148" width="500" height="58" rx="14" fill="#101826" stroke="#00D6FF"/>
|
|
32
|
+
<text x="86" y="184" fill="#00D6FF" font-weight="700">assert package.name</text>
|
|
33
|
+
<text x="330" y="184" fill="#E8F8FF">open-multi-agent-kit</text>
|
|
34
|
+
|
|
35
|
+
<rect x="640" y="148" width="500" height="58" rx="14" fill="#101826" stroke="#00FFC2"/>
|
|
36
|
+
<text x="666" y="184" fill="#00FFC2" font-weight="700">assert bins</text>
|
|
37
|
+
<text x="826" y="184" fill="#E8F8FF">omk + MCP + ACP</text>
|
|
38
|
+
|
|
39
|
+
<rect x="60" y="226" width="500" height="58" rx="14" fill="#101826" stroke="#FFB000"/>
|
|
40
|
+
<text x="86" y="262" fill="#FFB000" font-weight="700">assert gates</text>
|
|
41
|
+
<text x="252" y="262" fill="#E8F8FF">version proof pack audit smoke</text>
|
|
42
|
+
|
|
43
|
+
<rect x="640" y="226" width="500" height="58" rx="14" fill="#101826" stroke="#FF47B2"/>
|
|
44
|
+
<text x="666" y="262" fill="#FF47B2" font-weight="700">assert excluded</text>
|
|
45
|
+
<text x="880" y="262" fill="#E8F8FF">local state + secrets</text>
|
|
46
|
+
|
|
47
|
+
<rect x="60" y="304" width="1080" height="58" rx="14" fill="#070B14" stroke="#9D4EDD"/>
|
|
48
|
+
<text x="86" y="340" fill="#9D4EDD" font-weight="700">assert release_truth</text>
|
|
49
|
+
<text x="346" y="340" fill="#E8F8FF">tagged checks + registry verification before claims</text>
|
|
50
|
+
</g>
|
|
51
|
+
</svg>
|
|
Binary file
|