chatcrystal-task-writeback
Installation
SKILL.md
ChatCrystal Task Writeback
Use this skill after meaningful work completes. Let ChatCrystal Core decide whether a memory should be skipped, merged, or created.
Workflow
- Trigger only after substantive work completes and the result produced reusable knowledge.
- Good candidates include:
- a durable fix
- a meaningful pitfall
- a reusable pattern
- an explicit engineering decision
- If
write_task_memoryis available and the runtime has a stable run or session key, call it with:mode: "auto"source_run_key: the stable run or session keytask.goal,task.task_kind,task.project_dir,task.cwd,task.branchtask.source_agentwhen knownmemory.summary: concise and durable, not chattymemory.outcome_type: one ofpitfall,fix,pattern,decisionmemory.root_cause,memory.resolution,memory.error_signatures,memory.files_touched,memory.tagswhen relevant
- Use
mode: "manual"only for an explicit manual save flow, never as a silent fallback for automatic writeback. - Default to project-scoped knowledge. Only use global scope for clearly cross-project knowledge and only in an explicit manual save flow.
- Report the persistence result accurately:
createdmergedskipped
Full Mode
Full mode requires ChatCrystal Core plus MCP access to write_task_memory.
- Do not reimplement skip or merge logic in the skill.
- Trust Core to decide whether the memory should be skipped, merged, or created.
- If the tool reports
skipped, keep the task result but do not force persistence.
Degraded Mode
If ChatCrystal Core or the MCP tool is unavailable, or if no stable run key exists for automatic writeback:
- Do not claim that the memory was saved.
- Emit a structured memory candidate in the response for later save.
- Keep the candidate aligned with the
write_task_memory.memorypayload shape so it can be reused later. - Do not instruct the runtime to auto-install ChatCrystal Core as part of the skill flow.