chore: archive v1.0 MVP milestone

Archive roadmap and requirements to milestones/, reorganize ROADMAP.md,
evolve PROJECT.md with shipped state, create retrospective.

4 phases, 11 plans, 16/16 requirements — all complete.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 15:23:04 +01:00
co-authored by Claude Opus 4.6
parent c8659d0579
commit 1230fd1b9d
7 changed files with 245 additions and 204 deletions
+22 -72
View File
@@ -1,10 +1,10 @@
---
gsd_state_version: 1.0
milestone: v1.0
milestone_name: milestone
status: Milestone complete
stopped_at: Completed 04-power-user-features 04-02-PLAN.md
last_updated: "2026-03-26T13:45:31.552Z"
milestone_name: MVP
status: v1.0 milestone complete
stopped_at: Milestone v1.0 archived
last_updated: "2026-03-26T14:50:00.000Z"
progress:
total_phases: 4
completed_phases: 4
@@ -16,98 +16,48 @@ progress:
## Project Reference
See: .planning/PROJECT.md (updated 2026-03-24)
See: .planning/PROJECT.md (updated 2026-03-26)
**Core value:** Network traffic patterns are instantly recognizable as distinct sounds — a ping sounds different from HTTPS noise, which sounds different from a port scan.
**Current focus:** Phase 04 — power-user-features
**Current focus:** Planning next milestone
## Current Position
Phase: 04
Plan: Not started
Phase: All v1.0 phases complete
Plan: N/A
## Performance Metrics
**Velocity:**
- Total plans completed: 0
- Average duration: —
- Total execution time: —
**By Phase:**
| Phase | Plans | Total | Avg/Plan |
|-------|-------|-------|----------|
| - | - | - | - |
**Recent Trend:**
- Last 5 plans: —
- Trend: —
*Updated after each plan completion*
| Phase 01 P01 | 4 | 2 tasks | 6 files |
| Phase 01 P03 | 8 | 2 tasks | 4 files |
| Phase 01-capture-and-classification P02 | 3min | 1 tasks | 4 files |
| Phase 01-capture-and-classification P04 | 15min | 2 tasks | 2 files |
| Phase | Duration | Tasks | Files |
|-------|----------|-------|-------|
| Phase 01 P01 | 4min | 2 tasks | 6 files |
| Phase 01 P02 | 3min | 1 tasks | 4 files |
| Phase 01 P03 | 8min | 2 tasks | 4 files |
| Phase 01 P04 | 15min | 2 tasks | 2 files |
| Phase 02 P01 | 15min | 2 tasks | 8 files |
| Phase 02 P02 | 10min | 2 tasks | 4 files |
| Phase 02 P03 | 3min | 2 tasks | 3 files |
| Phase 03-pipeline-integration-and-mvp P01 | 15min | 2 tasks | 6 files |
| Phase 03 P01 | 15min | 2 tasks | 6 files |
| Phase 03 P02 | 5min | 1 tasks | 1 files |
| Phase 04-power-user-features P01 | 3min | 2 tasks | 9 files |
| Phase 04-power-user-features P02 | 4min | 1 tasks | 2 files |
| Phase 04 P01 | 3min | 2 tasks | 9 files |
| Phase 04 P02 | 4min | 1 tasks | 2 files |
## Accumulated Context
### Decisions
Decisions are logged in PROJECT.md Key Decisions table.
Recent decisions affecting current work:
- Use `github.com/gopacket/gopacket` v1.5.0 (community fork) — NOT `google/gopacket` which is unmaintained
- Use `github.com/packetcap/go-pcap` for live capture (pure Go, no CGo for capture layer)
- Use `github.com/sjzar/go-lame` v0.0.9 for MP3 encoding (embeds LAME C source, CGo required at build time only)
- Audio synthesis: hand-rolled additive sine oscillators + EMA amplitude smoothing (no external audio library)
- Frequency table: register-separated harmonics (low drones = bulk traffic, mid = control, high = interactive)
- [Phase 01]: Go installed to /home/dev/tools/go-install/go (no sudo); PATH export required each session
- [Phase 01]: Classifier uses ordered []Rule slice with first-match-wins; no switch statement (D-02)
- [Phase 01]: ICMP checked before TCP/UDP in Classify to handle packets with no port info
- [Phase 01]: DefaultWindowMs=500: 500ms windows balance temporal resolution against snapshot frequency for audio synthesis
- [Phase 01]: io.Writer injection in PrintSummary/PrintWindowLine enables test capture via bytes.Buffer and production use via os.Stderr
- [Phase 01-capture-and-classification]: Use net.Interfaces() for listing (go-pcap has no FindAllDevs equivalent); privileges not required for enumeration
- [Phase 01-capture-and-classification]: StartCapture uses 512-buffered channel with atomic drop counter to prevent backpressure blocking capture goroutine
- [Phase 01-capture-and-classification]: Dynamic link type detection via handle.LinkType() not hardcoded LinkTypeEthernet
- [Phase 01-04]: Cobra RunE + signal.NotifyContext for clean shutdown: context cancellation is the single stop signal propagating through all three pipeline stages
- [Phase 01-04]: Three-stage pipeline: capture -> classify goroutine -> aggregate via buffered channels; 1024-buffered classified channel absorbs burst processing
- [Phase 02]: go-lame v0.0.9 used for MP3 encoding (embedded LAME C source, no system library needed)
- [Phase 02]: go-audio/wav excluded — writing PCM bytes directly to LameWriter is simpler (per Claude's Discretion grant in CONTEXT.md)
- [Phase 02]: GainPerLayer applied in bank.go during mixing to ensure 11 max layers sum to 1.0 (D-10)
- [Phase 02]: int16 conversion uses float * 32767 to avoid positive overflow at exactly +1.0
- [Phase 02]: RunSynthesis takes snapshot slice (not channel) enabling zero-packet guard before file creation
- [Phase 02]: EncodeMP3 and RunSynthesis are separate functions for independent testability
- [Phase 03-01]: hashBucket uses (dstPort*31 + protoNum*7) % 4 for deterministic 4-bucket unknown class assignment
- [Phase 03-01]: TestHashBucketDistribution uses minimal custom rules (not DefaultRules) because DefaultRules catch-all OtherTCP/OtherUDP prevent hashBucket from being reached
- [Phase 03-02]: PrintSummary called before RunSynthesis per D-08 — user sees traffic stats before waiting for encoding to complete
- [Phase 03-02]: Audio duration computed from snapshot count * DefaultWindowMs (not wall-clock) to avoid truncation for short captures
- [Phase 04-power-user-features]: OpenCapture/StartCapture accept filter string; empty = no filter (backward compatible with live mode)
- [Phase 04-power-user-features]: AggregatePcap: synchronous drain of events channel then assign to windows by Timestamp offset; gap windows pre-initialized with empty maps
- [Phase 04-02]: bpfFilter and readPath are package-level globals for Cobra flag binding (same pattern as other flags)
- [Phase 04-02]: runPcapMode checks for empty snapshots after PrintSummary so user sees zero-count table before error
- [Phase 04-02]: deriveOutputPath uses filepath.Ext (last extension only) matching tcpdump convention
All decisions archived in PROJECT.md Key Decisions table and `.planning/milestones/v1.0-ROADMAP.md`.
### Pending Todos
None yet.
None.
### Blockers/Concerns
- Phase 2: Frequency mapping requires subjective listening validation — specific Hz values not determined by research; must test during Phase 2
- Phase 3: Auto-clustering algorithm choice (hash-bucketing vs k-means) deferred until synthesis engine exists to evaluate perceptual results
- macOS privilege model (BPF device vs CAP_NET_RAW) not verified by research — flag if macOS is a target during Phase 1
None — all v1.0 blockers resolved.
## Session Continuity
Last session: 2026-03-26T13:42:19.476Z
Stopped at: Completed 04-power-user-features 04-02-PLAN.md
Last session: 2026-03-26T14:50:00.000Z
Stopped at: Milestone v1.0 archived
Resume file: None