docs: restore project goals and scope to README

This commit is contained in:
Nathan Flurry 2026-01-25 04:06:25 -08:00
parent 924bacae4e
commit ab2c1c2b62
7 changed files with 897 additions and 527 deletions

View file

@ -137,6 +137,26 @@
}
}
},
"/v1/health": {
"get": {
"tags": [
"meta"
],
"operationId": "get_health",
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HealthResponse"
}
}
}
}
}
}
},
"/v1/sessions/{session_id}": {
"post": {
"tags": [
@ -789,6 +809,17 @@
}
}
},
"HealthResponse": {
"type": "object",
"required": [
"status"
],
"properties": {
"status": {
"type": "string"
}
}
},
"MessageRequest": {
"type": "object",
"required": [
@ -1405,6 +1436,10 @@
}
},
"tags": [
{
"name": "meta",
"description": "Service metadata"
},
{
"name": "agents",
"description": "Agent management"

View file

@ -19,6 +19,9 @@ export interface paths {
"/v1/agents/{agent}/modes": {
get: operations["get_agent_modes"];
};
"/v1/health": {
get: operations["get_health"];
};
"/v1/sessions/{session_id}": {
post: operations["create_session"];
};
@ -117,6 +120,9 @@ export interface components {
events: components["schemas"]["UniversalEvent"][];
hasMore: boolean;
};
HealthResponse: {
status: string;
};
MessageRequest: {
message: string;
};
@ -343,6 +349,15 @@ export interface operations {
};
};
};
get_health: {
responses: {
200: {
content: {
"application/json": components["schemas"]["HealthResponse"];
};
};
};
};
create_session: {
parameters: {
path: {