atifact
/install atifact
Extract Agent Trajectories with atifact
Convert agent session recordings (HAR files, Claude Code JSONL logs, Copilot CLI JSONL logs) into structured ATIF v1.6 trajectory JSON using the atifact CLI.
Prerequisites
Verify the CLI is available:
command -v atifact
If not installed, install globally:
npm install -g atifact
Supported input formats
| Format | File type | Description |
|---|---|---|
har |
.har |
HAR files with OpenAI (Chat Completions, Responses API) or Anthropic (Messages API) requests |
claude-code-jsonl |
.jsonl |
Claude Code CLI session logs |
copilot-cli-jsonl |
.jsonl |
Copilot CLI session logs |
Format is auto-detected from file contents (not extension). Use --format / -f to force a specific format when auto-detection fails.
Usage
Basic conversion
The --output / -o option takes a prefix, not a filename. Output files are derived from the prefix:
- Main trajectory:
\x3Cprefix>.trajectory.json - Subagent trajectories:
\x3Cprefix>.trajectory.\x3Cname>.json
Default prefix is the input file path:
atifact session.har
# Writes: session.har.trajectory.json
Specify output prefix
atifact session.har -o out
# Writes: out.trajectory.json
# If subagents exist: out.trajectory.\x3Cname>.json
Force input format
Use when auto-detection picks the wrong format for .jsonl files:
atifact session.jsonl -f claude-code-jsonl
atifact session.jsonl -f copilot-cli-jsonl
Pipe JSON to stdout
Use --json with --quiet to suppress diagnostics and get clean JSON on stdout. Output is a JSON array of all trajectories (main first, then subagents). No files are written.
atifact session.har --json --quiet
Combine with other tools:
atifact session.har --json --quiet | jq '.[0].steps | length'
CLI options
| Option | Alias | Description |
|---|---|---|
\x3Cinput-file> |
Path to the input file (required) | |
--output |
-o |
Output path prefix. Main: \x3Cprefix>.trajectory.json, subagents: \x3Cprefix>.trajectory.\x3Cname>.json (default: input file path) |
--format |
-f |
Force input format: har, claude-code-jsonl, copilot-cli-jsonl |
--json |
Write JSON array of all trajectories to stdout (no files written). First element is main, rest are subagents. | |
--quiet |
-q |
Suppress progress messages (stderr only) |
Exit codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Runtime error (parse failure, I/O error) |
| 2 | Invalid usage (bad arguments, missing file) |
Workflow
- Identify the input file and its format (HAR or JSONL).
- For
.jsonlfiles, determine the source (Claude Code or Copilot CLI) to use the correct--formatif auto-detection fails. - Run
atifactwith the input file. Use-oto set the output prefix (e.g.,atifact /path/to/session.har -o /path/to/session). The main trajectory is written to\x3Cprefix>.trajectory.json. - Report the output file path(s) and key metrics (total steps, total cost) from the generated trajectory.
Notes
- HAR files may contain multiple API formats (OpenAI + Anthropic); all are parsed.
- Multi-turn HAR conversations are deduplicated (each request carries full history).
- Utility calls (e.g., gpt-4o-mini title generation) are excluded from the trajectory.
- Tool results from request N are attached as observations to the agent step from request N-1.
- Copilot CLI logs with subagent
tasktool calls produce separate trajectory files per subagent. The main trajectory references them viasubagent_trajectory_refwithtrajectory_pathpointing to the sibling file. - All timestamps are preserved from source data as-is (ISO 8601).
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install atifact - After installation, invoke the skill by name or use
/atifact - Provide required inputs per the skill's parameter spec and get structured output
What is atifact?
This skill should be used when the user asks to "extract agent trajectory", "convert HAR to trajectory", "get trajectory from session", "parse agent session"... It is an AI Agent Skill for Claude Code / OpenClaw, with 107 downloads so far.
How do I install atifact?
Run "/install atifact" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is atifact free?
Yes, atifact is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does atifact support?
atifact is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created atifact?
It is built and maintained by Waldek Mastykarz (@waldekmastykarz); the current version is v0.7.0.