Skip to content

Commit af83c80

Browse files
committed
feat: add architecture documentation and extend CLI with session telemetry and local task-tracking UI support
1 parent 8f17654 commit af83c80

3 files changed

Lines changed: 393 additions & 1 deletion

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Project rules live in `.hief/conventions.toml` (machine-readable) and
135135

136136
## Key Documentation
137137

138-
* [Architecture Summary](dev-docs/architecture-summary.md) — Quick overview (start here)
138+
* [Architecture Summary](docs/architecture-summary.md) — Quick overview (start here)
139139
* [Architecture](dev-docs/architecture.md) — Full technical architecture
140140
* [Agent Protocol](dev-docs/agent-protocol.md) — Full interaction protocol
141141
* [Constitution](docs/specs/constitution.md) — Inviolable rules

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ HIEF Server
8282
- **Score history** with regression detection
8383
- **Fail-Closed Wave Gates** — programmatically blocks intent pipeline promotion unless the latest evaluation run passes successfully
8484

85+
### 🌐 MCP Server & Protocol — *"Connect to any agent"*
86+
87+
- **Adaptive Protocol Routing** — dynamically routes workloads across `mcp`, `progressive-mcp`, and `cli` lanes based on token pressure and capabilities
88+
- **Robust Validation & Security** — strict parameter validation with typed error shapes and path traversal rejection
89+
- **Dry-Run Installation**`hief install` scaffolds and previews agent registration payloads safely
90+
8591
### 📝 Documentation Scaffolding — *"How do we start?"*
8692

8793
- **Spec-Driven Development (SDD)**: Scaffold new feature specs from embedded or custom templates.
@@ -234,10 +240,12 @@ hief patterns list # List project patterns
234240
hief patterns create fix-api --title "Fix API" # Create/update a pattern
235241
hief eval run # Run golden set evaluation
236242
hief eval report # Show eval score history
243+
hief session-cost --session-id <id> # Print human-readable session summary and telemetry
237244
hief doctor --fix # Health check + auto-fix
238245
hief hooks install # Install git hooks for auto-indexing
239246
hief hooks watch # Alias for hooks install
240247
hief install # Scaffolds installation with validated dry-run preview
248+
hief ui --port 3190 # Start the local task-tracking web UI
241249
hief docs init # Initialize standard docs structure
242250
hief docs generate spec --name "feature" # Scaffold a new feature spec
243251
hief docs generate harness --name "feature" # Scaffold a new test harness
@@ -307,6 +315,7 @@ templates/ # Doc scaffolding templates
307315
| Document | Description |
308316
|----------|-------------|
309317
| [Manifesto](MANIFESTO.md) | Core beliefs and design philosophy |
318+
| [Task Tracking UI](dev-docs/task-tracking-ui.md) | Local-first task and worktree web UI architecture |
310319
| [Constitution](docs/specs/constitution.md) | Inviolable project rules |
311320
| [Scaffolding Guide](docs/SCAFFOLDING.md) | How the `docs` engine works |
312321
| [CHANGELOG](CHANGELOG.md) | Release history |

0 commit comments

Comments
 (0)