Invoke Skill Meeting Prep
post
/api/v1/skills/meeting.prep/invokeProduce a pre-meeting briefing for a client meeting β recent topics, open action items, talking points, suggested questions. Read-only; pairs with meeting.followup for the post-meeting half.
Request bodyapplication/json
| Field | Type | Description |
|---|---|---|
client_idrequired | string (uuid) | β |
meeting_daterequired | string (date) | β |
meeting_type | "initial" | "quarterly_review" | "annual" | "planning" | "advisory_board" | "ad_hoc" | βinitialquarterly_reviewannualplanningadvisory_boardad_hoc |
attendees | string[] | Optional attendee names β drives addressee-aware talking points. |
agenda_topics | string[] | If provided, focus on these topics rather than scanning broadly. |
lookback_days | integer | Trailing window of comms/topics/workstream activity to summarise. |
Responses
200Skill executed successfully
| Field | Type | Description | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
skillrequired | string | β | ||||||||||||||||||||||||||||||||||||
outputrequired | object | βshow nested
| ||||||||||||||||||||||||||||||||||||
correlation_idrequired | string | β |
401Authentication required
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
403Insufficient permissions
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
404Skill not found
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
429Rate limit exceeded
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
5XXInternal server error
| Field | Type | Description | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
errorrequired | object | βshow nested
|
curl https://api.dev.arch.ie/api/v1/skills/meeting.prep/invoke \
-X POST \
-H "Authorization: Bearer sk_..." \
-H "Content-Type: application/json" \
-d '{
"client_id": "00000000-0000-0000-0000-000000000000",
"meeting_date": "string",
"meeting_type": "initial",
"attendees": [
"string"
],
"agenda_topics": [
"string"
],
"lookback_days": 0
}'