-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathROADMAP.json
More file actions
454 lines (448 loc) · 13.3 KB
/
ROADMAP.json
File metadata and controls
454 lines (448 loc) · 13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
{
"ir_version": "1.0",
"project": "OmniVault",
"repository": "https://github.com/agentplexus/omnivault",
"generated_at": "2026-01-10T00:00:00Z",
"legend": {
"completed": {"emoji": "✅", "description": "Completed"},
"in_progress": {"emoji": "🚧", "description": "In Progress"},
"planned": {"emoji": "📋", "description": "Planned"},
"future": {"emoji": "💡", "description": "Under Consideration"}
},
"areas": [
{"id": "core", "name": "Core Library", "description": "Core interfaces and types"},
{"id": "providers", "name": "Providers", "description": "Secret storage providers"},
{"id": "security", "name": "Security", "description": "Encryption and security features"},
{"id": "daemon", "name": "Daemon", "description": "Background service"},
{"id": "cli", "name": "CLI", "description": "Command-line interface"},
{"id": "client", "name": "Client", "description": "Client libraries"},
{"id": "ui", "name": "UI", "description": "User interface (Swift/macOS)"}
],
"phases": [
{
"id": "library",
"name": "Library Foundation",
"status": "completed",
"order": 0,
"description": "Core Go library for secret management"
},
{
"id": "phase1",
"name": "Phase 1: Encrypted Local Store",
"status": "completed",
"order": 1,
"description": "Encrypted file-based storage for secure local secrets"
},
{
"id": "phase2",
"name": "Phase 2: Daemon",
"status": "completed",
"order": 2,
"description": "Background service for secure secret access"
},
{
"id": "phase3",
"name": "Phase 3: CLI",
"status": "completed",
"order": 3,
"description": "Command-line interface for vault management"
},
{
"id": "phase4",
"name": "Phase 4: Daemon Client Library",
"status": "completed",
"order": 4,
"description": "Go client for daemon IPC communication"
},
{
"id": "phase5",
"name": "Phase 5: PlexusDesktop Integration",
"status": "planned",
"order": 5,
"description": "Swift UI for OmniVault in PlexusDesktop"
}
],
"items": [
{
"id": "vault-interface",
"title": "Core `vault.Vault` interface",
"status": "completed",
"version": "v0.1.0",
"phase": "library",
"type": "Added",
"area": "core",
"priority": "high"
},
{
"id": "builtin-providers",
"title": "Built-in providers (env, file, memory)",
"status": "completed",
"version": "v0.1.0",
"phase": "library",
"type": "Added",
"area": "providers",
"priority": "high"
},
{
"id": "uri-resolver",
"title": "URI-based resolver",
"status": "completed",
"version": "v0.1.0",
"phase": "library",
"type": "Added",
"area": "core",
"priority": "high"
},
{
"id": "provider-arch",
"title": "External provider module architecture",
"status": "completed",
"version": "v0.1.0",
"phase": "library",
"type": "Added",
"area": "providers",
"priority": "high"
},
{
"id": "omnivault-aws",
"title": "omnivault-aws provider module",
"status": "completed",
"version": "v0.1.0",
"phase": "library",
"type": "Added",
"area": "providers",
"priority": "medium"
},
{
"id": "omnivault-keyring",
"title": "omnivault-keyring provider module",
"status": "completed",
"version": "v0.1.0",
"phase": "library",
"type": "Added",
"area": "providers",
"priority": "medium"
},
{
"id": "crypto",
"title": "AES-256-GCM encryption with Argon2id key derivation",
"description": "`internal/store/crypto.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase1",
"type": "Added",
"area": "security",
"priority": "high"
},
{
"id": "encrypted-store",
"title": "Encrypted file store implementing `vault.Vault`",
"description": "`internal/store/encrypted.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase1",
"type": "Added",
"area": "security",
"priority": "high"
},
{
"id": "master-password",
"title": "Master password protection",
"status": "completed",
"version": "v0.2.0",
"phase": "phase1",
"type": "Added",
"area": "security",
"priority": "high"
},
{
"id": "auto-lock",
"title": "Configurable auto-lock timeout",
"status": "completed",
"version": "v0.2.0",
"phase": "phase1",
"type": "Added",
"area": "security",
"priority": "medium"
},
{
"id": "paths",
"title": "Platform-specific paths (~/.omnivault/)",
"description": "`internal/config/paths.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase2",
"type": "Added",
"area": "daemon",
"priority": "high"
},
{
"id": "protocol",
"title": "IPC protocol definitions",
"description": "`internal/daemon/protocol.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase2",
"type": "Added",
"area": "daemon",
"priority": "high"
},
{
"id": "server",
"title": "HTTP server over Unix socket",
"description": "`internal/daemon/server.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase2",
"type": "Added",
"area": "daemon",
"priority": "high"
},
{
"id": "session-mgmt",
"title": "Lock/unlock session management",
"status": "completed",
"version": "v0.2.0",
"phase": "phase2",
"type": "Added",
"area": "daemon",
"priority": "high"
},
{
"id": "cli-main",
"title": "CLI entrypoint",
"description": "`cmd/omnivault/main.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase3",
"type": "Added",
"area": "cli",
"priority": "high"
},
{
"id": "cli-secrets",
"title": "Secret commands (get, set, list, delete)",
"description": "`cmd/omnivault/secrets.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase3",
"type": "Added",
"area": "cli",
"priority": "high"
},
{
"id": "cli-vault",
"title": "Vault commands (init, lock, unlock, status)",
"description": "`cmd/omnivault/init.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase3",
"type": "Added",
"area": "cli",
"priority": "high"
},
{
"id": "cli-daemon",
"title": "Daemon control commands",
"description": "`cmd/omnivault/daemon.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase3",
"type": "Added",
"area": "cli",
"priority": "high"
},
{
"id": "client",
"title": "Unix socket client",
"description": "`internal/client/client.go`",
"status": "completed",
"version": "v0.2.0",
"phase": "phase4",
"type": "Added",
"area": "client",
"priority": "high"
},
{
"id": "auto-start",
"title": "Automatic daemon startup on first use",
"status": "planned",
"phase": "phase4",
"type": "Added",
"area": "client",
"priority": "medium"
},
{
"id": "connection-pool",
"title": "Connection pooling",
"status": "planned",
"phase": "phase4",
"type": "Added",
"area": "client",
"priority": "low"
},
{
"id": "swift-models",
"title": "Swift models for secret info and vault status",
"description": "`VaultModels.swift`",
"status": "planned",
"phase": "phase5",
"type": "Added",
"area": "ui",
"priority": "high"
},
{
"id": "swift-client",
"title": "Swift Unix socket client",
"description": "`VaultDaemonClient.swift`",
"status": "planned",
"phase": "phase5",
"type": "Added",
"area": "ui",
"priority": "high"
},
{
"id": "swift-manager",
"title": "Swift state management",
"description": "`VaultManager.swift`",
"status": "planned",
"phase": "phase5",
"type": "Added",
"area": "ui",
"priority": "high"
},
{
"id": "swift-ui",
"title": "Secret list UI",
"description": "`VaultView.swift`",
"status": "planned",
"phase": "phase5",
"type": "Added",
"area": "ui",
"priority": "high"
},
{
"id": "swift-lock-ui",
"title": "Lock/unlock UI",
"status": "planned",
"phase": "phase5",
"type": "Added",
"area": "ui",
"priority": "medium"
},
{
"id": "swift-edit-ui",
"title": "Add/edit secret UI",
"status": "planned",
"phase": "phase5",
"type": "Added",
"area": "ui",
"priority": "medium"
}
],
"sections": [
{
"id": "overview",
"title": "Overview",
"order": 1,
"content": [
{"type": "text", "value": "OmniVault is a unified Go library for secret management. This roadmap covers the evolution from a library to a complete local secret management solution with daemon and CLI."}
]
},
{
"id": "daemon-api",
"title": "Daemon API",
"order": 20,
"content": [
{
"type": "table",
"headers": ["Endpoint", "Method", "Description"],
"rows": [
["`/status`", "GET", "Daemon status (running, locked, secret count)"],
["`/secrets`", "GET", "List all secrets (metadata only)"],
["`/secret/:path`", "GET", "Get secret value"],
["`/secret/:path`", "PUT", "Set secret"],
["`/secret/:path`", "DELETE", "Delete secret"],
["`/lock`", "POST", "Lock the vault"],
["`/unlock`", "POST", "Unlock with master password"]
]
}
]
},
{
"id": "socket-path",
"title": "Socket Path",
"order": 21,
"content": [
{
"type": "table",
"headers": ["Platform", "Path"],
"rows": [
["macOS/Linux", "`~/.omnivault/omnivaultd.sock`"],
["Windows", "`\\\\.\\pipe\\omnivault`"]
]
}
]
},
{
"id": "cli-commands",
"title": "CLI Commands",
"order": 30,
"content": [
{
"type": "code",
"language": "bash",
"value": "# Vault initialization\nomnivault init # Initialize new vault with master password\n\n# Secret operations\nomnivault set <path> [value] # Set secret (prompts if no value)\nomnivault get <path> # Get secret value\nomnivault list [prefix] # List secrets\nomnivault delete <path> # Delete secret\n\n# Vault control\nomnivault lock # Lock the vault\nomnivault unlock # Unlock with master password\nomnivault status # Show vault status\n\n# Daemon control\nomnivault daemon start # Start daemon\nomnivault daemon stop # Stop daemon\nomnivault daemon status # Daemon status"
}
]
},
{
"id": "security",
"title": "Security Model",
"order": 40,
"content": [
{"type": "text", "value": "### Encryption"},
{"type": "list", "items": [
"**Algorithm**: AES-256-GCM (authenticated encryption)",
"**Key Derivation**: Argon2id (memory-hard, resistant to GPU attacks)",
"**Salt**: Random 32 bytes per vault",
"**Nonce**: Random 12 bytes per secret"
]},
{"type": "text", "value": "### Master Password"},
{"type": "list", "items": [
"Never stored, only used to derive encryption key",
"Minimum 8 characters enforced",
"Session-based unlock with configurable timeout"
]},
{"type": "text", "value": "### Storage"},
{"type": "list", "items": [
"Encrypted vault file: `~/.omnivault/vault.enc`",
"Metadata stored separately: `~/.omnivault/vault.meta`",
"No plaintext secrets on disk"
]}
]
},
{
"id": "data-format",
"title": "Data Format",
"order": 50,
"content": [
{"type": "text", "value": "### Vault File Structure"},
{
"type": "code",
"value": "~/.omnivault/\n├── vault.enc # Encrypted secrets (AES-256-GCM)\n├── vault.meta # Unencrypted metadata (salt, created date)\n├── omnivaultd.sock # Unix socket (runtime)\n└── omnivaultd.pid # Daemon PID file (runtime)"
},
{"type": "text", "value": "### Secret Metadata (in vault.meta)"},
{
"type": "code",
"language": "json",
"value": "{\n \"version\": 1,\n \"created_at\": \"2024-01-01T00:00:00Z\",\n \"salt\": \"base64-encoded-salt\",\n \"argon2_params\": {\n \"time\": 3,\n \"memory\": 65536,\n \"threads\": 4\n }\n}"
}
]
}
],
"version_history": [
{"version": "v0.2.0", "date": "2026-01-10", "status": "completed", "summary": "CLI, daemon, encrypted store"},
{"version": "v0.1.0", "date": "2025-01-01", "status": "completed", "summary": "Core library with providers"}
]
}