Start a managed Atomic Article job
Queue a managed Sandcastle Content Writer job. Akera pins a signed multi-skill runtime, materializes the six exact private knowledge documents before agent creation, enforces context-before-transcript release, runs independent review, and stops at human Gate 2.
Behavior
- Read-only hint
- Not declared
- Destructive hint
- Not declared
- Idempotent hint
- True
- Open-world hint
- Not declared
Parameters
| Name | Type | Requirement | Description |
|---|---|---|---|
workspaceId | string | Required | No additional description. |
sourceIds | array | Required | No additional description. |
provider | string | Required | No additional description. |
model | string | Required | No additional description. |
idempotencyKey | string | Required | No additional description. |
Input JSON Schema
Generated from the registered input schema
{
"type": "object",
"properties": {
"workspaceId": {
"type": "string",
"minLength": 1
},
"sourceIds": {
"minItems": 1,
"maxItems": 20,
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
},
"provider": {
"type": "string",
"enum": [
"claude_code",
"codex"
]
},
"model": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"idempotencyKey": {
"type": "string",
"minLength": 8,
"maxLength": 200
}
},
"required": [
"workspaceId",
"sourceIds",
"provider",
"model",
"idempotencyKey"
],
"$schema": "https://json-schema.org/draft/2020-12/schema"
}Call shape
Use an MCP client rather than sending this JSON directly. The client handles protocol negotiation, sessions, and authentication.
Protocol request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "content_article_job_start",
"arguments": {}
}
}