Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Convert canonical training examples to ShareGPT format for training frameworks
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | 806% | 0% |
| case-04 | ✗→✓ | ▲ Improved | -11% | 0% |
| case-07 | ✗→✓ | ▲ Improved | -51% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -24% | 0% |
| case-09 | ✗→✓ | ▲ Improved | -6% | 0% |
Convert canonical training example records (@agentic/code/frameworks/training-complete/schemas/example-record.yaml) into ShareGPT-format JSONL — the multi-turn conversation schema popularized by Axolotl, LLaMA-Factory, and the open-source dialogue tuning community.
dialogue task examples where turn roles matter<input-glob> (required) — glob of canonical records--output <path> (optional) — default: .aiwg/training/exports/sharegpt-<timestamp>.jsonl--validate-round-trip (optional) — reload output and verify invariantsOne JSON object per line with a conversations array of {from, value} turns:
json{"conversations": [{"from": "system", "value": "You are helpful."}, {"from": "human", "value": "Hello"}, {"from": "gpt", "value": "Hi there!"}]}
Role mapping: system → "system", user → "human", assistant → "gpt".
conversations array:input.system → {from: "system", value: ...} (if present)input.user → {from: "human", value: ...}output.assistant → {from: "gpt", value: ...}context_refs chain to reconstruct prior turns if any.--validate-round-trip) — rebuild canonical record from conversations + sidecar.format-convert event.Conversation structure captures input.system, input.user, output.assistant. Preserved via sidecar: id, task_type, full metadata, reasoning_trace. Tool calls are inlined into the gpt turn value (serialized JSON) when small; otherwise routed to sidecar.
<output>.metadata.yaml holds per-line: id, task_type, full metadata.*, output.reasoning_trace, large output.tool_calls, and any context_refs that could not be reconstructed as prior turns.
--validate-round-trip reconstructs all round-trip invariants.format-convert event logged with input/output/rejection counts.@agentic/code/addons/semantic-memory/skills/memory-log-append/SKILL.md — logging the format-convert eventOther measured skills in the registry, with their headline benchmark lift.