Nytt verktøy som samler feature-status fra fire kilder: 1. Spec-sammendrag fra docs/features/ og docs/concepts/ 2. Relaterte oppgaver fra tasks.md (fuzzy-matching på nøkkel) 3. Nylige git-commits (fil-endringer + commit-meldinger) 4. Ubesvart feedback fra PG (spec-noder med discusses-edge) DATABASE_URL er valgfri — feedback hoppes over uten tilkobling. Prøver også /tmp/maskinrommet.env som fallback. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
539 B
TOML
18 lines
539 B
TOML
[package]
|
|
name = "synops-feature-status"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "synops-feature-status"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4", features = ["derive"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
sqlx = { version = "0.8", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "chrono", "json"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["v7", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
regex = "1"
|