npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

atifact

v0.6.0

Published

Convert HAR files and Claude Code CLI logs to ATIF-format agent trajectories

Readme

atifact

Convert agent logs to ATIF trajectories. One command. Zero dependencies.

Turn HAR files, Claude Code logs, and Copilot CLI logs into standardized ATIF v1.6 trajectory JSON — ready for debugging, visualization, fine-tuning, and RL pipelines.

Use with AI agents

Give your AI coding agent the atifact skill so it can extract trajectories on your behalf:

npx skills add waldekmastykarz/atifact

Once installed, ask your agent to "extract the trajectory from this HAR file", "convert Claude Code logs to ATIF", or "convert Copilot CLI logs" and it will handle the rest.

Install

npm install -g atifact

Quick start

# Convert a HAR file (auto-detected)
atifact session.har

# Convert Claude Code logs
atifact claude-log.jsonl

# Convert Copilot CLI logs
atifact copilot-session.jsonl

# Pipe to stdout (returns JSON array of trajectories)
atifact session.har --json | jq '.[0].steps | length'

Output: <input>.trajectory.json in ATIF v1.6 format. Copilot CLI logs with subagents produce additional <input>.trajectory.<name>.json files.

--json mode outputs a JSON array of all trajectories (main first, then subagents) to stdout with no files written.

Supported inputs

| Format | Source | Flag | |---|---|---| | HAR | OpenAI Chat Completions API, OpenAI Responses API, Anthropic Messages API | har | | JSONL | Claude Code CLI session logs | claude-code-jsonl | | JSONL | Copilot CLI session logs | copilot-cli-jsonl |

Format is auto-detected from file contents (not extension). Force it with -f:

atifact myfile.log -f claude-code-jsonl
atifact myfile.log -f copilot-cli-jsonl

Usage

atifact <input-file> [options]

| Option | Description | |---|---| | -o, --output <prefix> | Output path prefix (default: input file path). Main: <prefix>.trajectory.json, subagents: <prefix>.trajectory.<name>.json | | -f, --format <fmt> | Force input format: har, claude-code-jsonl, copilot-cli-jsonl | | --json | Write JSON array of all trajectories to stdout (no files written) | | -q, --quiet | Suppress progress messages | | -h, --help | Show help | | --version | Print version |

Exit codes

| Code | Meaning | |---|---| | 0 | Success | | 1 | Runtime error (parse failure, I/O error) | | 2 | Invalid usage (bad arguments, missing file) |

Output format

atifact produces ATIF v1.6 JSON with:

  • Steps — user messages, agent responses, tool calls, and observations
  • Metrics — token counts, costs, cached tokens per step
  • Tool calls — structured function name + arguments with observation results
  • Subagent trajectories — Copilot CLI subagents (task tool calls) produce separate trajectory files, linked via subagent_trajectory_ref
  • Final metrics — aggregated totals across the trajectory
  • All timestamps preserved as ISO 8601 from source data
  • Null/undefined fields excluded for compact output

Examples

HAR → trajectory

atifact recording.har -o my-trajectory
# Writes: my-trajectory.trajectory.json

Claude Code → trajectory, piped

atifact ~/.claude/projects/*/sessions/*.jsonl --json --quiet > trajectory.json

Copilot CLI → trajectory with subagents

atifact copilot-session.jsonl
# Writes: copilot-session.jsonl.trajectory.json
# Writes: copilot-session.jsonl.trajectory.<subagent-name>.json (per subagent)

Count agent steps

atifact session.har --json | jq '[.[0].steps[] | select(.source == "agent")] | length'

Requirements

  • Node.js 22+

License

MIT