by unixzii
A browser-based explorer for agent session logs.
# Add to your Claude Code skills
git clone https://github.com/unixzii/agent-explorerGuides for using ai agents skills like agent-explorer.
Last scanned: 7/1/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-01T08:14:05.793Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}agent-explorer is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by unixzii. A browser-based explorer for agent session logs. It has 56 GitHub stars.
Yes. agent-explorer passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/unixzii/agent-explorer" and add it to your Claude Code skills directory (see the Installation section above).
agent-explorer is primarily written in TypeScript. It is open-source under unixzii on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh agent-explorer against similar tools.
No comments yet. Be the first to share your thoughts!
A browser-based explorer for agent session logs. Open a JSONL file and browse the full session across three linked views: a chronological timeline, a conversation view, and an event detail inspector.
Parsing runs entirely in the browser — nothing is uploaded.
pnpm install
pnpm dev
Open the URL printed by Vite (typically http://localhost:5173).
pnpm build # production build
pnpm preview # preview the production build
pnpm test # run tests
pnpm lint # run oxlint
The app inspects the first lines of a JSONL file and picks the best-matching adapter. If no format scores above the detection threshold, loading fails with an error.
| Format | Description |
|---|---|
| Claude Code transcript | Per-line user / assistant events with message.content blocks |
| Codex rollout | Envelope records such as session_meta, turn_context, event_msg, and response_item |
Support of more file formats is on the way.
MIT — see LICENSE.