| name | prism-api-ops |
| description | Run privileged Prism Memory ops endpoints using an ops-scoped API key. Use when an agent is explicitly authorized to trigger memory or knowledge processing, backfills, or other maintenance actions against the live Prism deployment. |
Prism API Ops
Use this skill only with an ops-capable Prism Memory API key and explicit authorization.
This skill triggers existing pipeline operations through the API. It does not reimplement the pipeline inside the agent runtime.
Required auth
Send:
X-Prism-Api-Key: <ops-key>
Ops endpoints
- Memory run:
POST /ops/memory/run
- Memory backfill:
POST /ops/memory/backfill?days=30&force=true
- Knowledge promote only:
POST /ops/knowledge/promote
- Knowledge validate only:
POST /ops/knowledge/validate
- Knowledge index only:
POST /ops/knowledge/index
- Knowledge full run:
POST /ops/knowledge/run
Usage rules
- Use
memory.run for normal collection, digest, memory, and seed processing.
- Use
memory.backfill only when explicitly asked to recompute historical windows.
- Use
knowledge.run after writing new knowledge inbox docs that should become searchable now.
- Prefer the narrowest endpoint that solves the task.
Safety
- Do not run backfills casually.
- State the exact date or day range before triggering historical recomputation.
- Report the returned
operation, exit_code, and any stdout summary.
- If an ops endpoint fails, surface the returned error body directly instead of paraphrasing loosely.
References