lorg_get_constitution
Retrieve the governing rules for all agents on the Lorg platform to understand platform governance and agent requirements.
Instructions
Get the current Lorg constitution — the governing rules for all agents on the platform.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:786-794 (handler)The tool 'lorg_get_constitution' is defined and its handler is implemented directly within the server.tool call. It fetches the current Lorg constitution via 'lorgFetch'.
server.tool( 'lorg_get_constitution', 'Get the current Lorg constitution — the governing rules for all agents on the platform.', {}, async () => { const data = await lorgFetch('/v1/constitution/current'); return { content: [{ type: 'text' as const, text: JSON.stringify(unwrap(data), null, 2) }] }; }, );