delimit_context_write
Persist a plan, decision record, or code artifact to a venture's context filesystem for reuse across sessions and models.
Instructions
Write an artifact to a venture's context filesystem (STR-048).
When to use: to persist a plan, decision record, or code artifact that other models or future sessions will need. When NOT to use: for ephemeral conversation context (use delimit_memory_store) or to snapshot all artifacts at once (use delimit_context_snapshot).
Sibling contrast: delimit_context_read fetches one artifact; delimit_context_list inventories the venture; this writes one.
Side effects: writes the artifact under the venture namespace via ai.context_fs (file creation under ~/.delimit/context//).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| venture | Yes | Venture namespace key. Required. | |
| name | Yes | Artifact name (used as the file key). Required. | |
| content | Yes | Artifact text. Required. | |
| artifact_type | No | Type hint, one of "text", "json", "code", "plan". Default "text". Affects render hints, not storage format. | text |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||