You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -194,7 +194,7 @@ The engine boot path starts in `server-rs/src/main.rs`, initializes environment
194
194
|`execution/core/`| Modular skill framework foundation |
195
195
|`directives/`| Governance, identity, orchestration, and provider operating instructions |
196
196
|`docs/`| Architecture, operations, API reference, OpenAPI, and security docs |
197
-
|`data/`| Local runtime data, including the default `tadpole.db`|
197
+
|`data/`| Local runtime data (initialized on first boot with SQLite database `tadpole.db` and agent/model seed configs)|
198
198
|`dist/`| Production dashboard build served by the Rust engine |
199
199
|`tests/`| Shared frontend test setup and e2e support |
200
200
@@ -227,21 +227,24 @@ Detached windows are available at `/detached-view`, `/detached/swarm-pulse`, and
227
227
228
228
## API
229
229
230
-
The Rust engine binds to `127.0.0.1:8000` by default. All application APIs are nested under `/v1`.
230
+
The Rust engine binds to `127.0.0.1:8000` by default. Application APIs are nested under `/v1` alongside root operational endpoints `/health` and `/metrics`.
231
231
232
232
Public routes:
233
233
234
234
| Method | Route | Purpose |
235
235
| --- | --- | --- |
236
+
|`GET`|`/health`| Engine health check (root unauthenticated ping) |
236
237
|`GET`|`/v1/engine/health`| Engine health check (unauthenticated ping) |
0 commit comments