# 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.

- Exact name: `content_article_job_start`
- Category: Atomic Articles
- Required access: write
- Allowed agent roles: admin, content_writer
- MCP endpoint: `https://api.funnels.akera.agency/`

## Annotations

- idempotentHint: true

## Input JSON Schema

```json
{
  "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

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "content_article_job_start",
    "arguments": {}
  }
}
```
