Changelog
Release history
0.4.0March 2026
Added
agent-tail tail— a drop-in wrapper around the systemtailcommand that resolves the latest session and forwards normal tail flags like-fand-n 100- FAQ coverage for global-install log location and using a hidden folder such as
.agent-tailvia--log-dir/logDir
Improved
- Docs now use a simple install → wrap → tail quickstart flow and explicitly document global installation
- Skills and package READMEs now document both direct
tail tmp/logs/latest/...usage and the newagent-tail tailwrapper
0.3.9March 2026
Fixed
- Changed default endpoint from
/__browser-logsto/api/browser-logs— Next.js treats underscore-prefixed folders as private and excludes them from routing AgentTailScriptnow readsAGENT_TAIL_ENDPOINTfrom the environment so it stays in sync withwithAgentTailwithout requiring the endpoint in two places
0.3.8March 2026
Added
- Next.js 16 support — tested against Next.js 16.1.6 with Turbopack as the default bundler
Fixed
- Renamed internal env vars from
__BROWSER_LOGS_*toAGENT_TAIL_*— Next.js 16 rejects double-underscore prefixed keys in config validation withAgentTailno longer adds an unnecessarywebpackkey to the Next.js config, avoiding conflicts with Turbopack (the default bundler in Next.js 16+)
0.3.6February 2026
Fixed
- Fixed
npx agent-tailfailing with “could not determine executable” — the umbrella package now bundles its own CLI entry point instead of referencing anode_modulespath that isn't included in the published tarball
0.3.5February 2026
Fixed
- Added missing
binfield to theagent-tailumbrella package so the CLI works when installed via the umbrella package
0.3.4February 2026
Added
- Turborepo multi-service example at
example/turborepo/— demonstratesagent-tail init+agent-tail wrapper package with shared session - Monorepo & package runner documentation — new sections in README, features page, and FAQ covering the
agent-tail init && turbo devpattern
Fixed
agent-tail wrapnow passesAGENT_TAIL_SESSIONto child processes so framework plugins (Vite, Next.js) join the existing session instead of creating a new one
0.3.3February 2026
Added
--muteflag foragent-tail run— silence specific services from terminal and combined.log while still capturing their output to individual log files (e.g.--mute fe --mute worker)
0.3.2February 2026
Fixed
- CLI and browser plugins now share the same session directory —
agent-tail runpasses session context to child processes via environment variable so Vite/Next.js plugins join the existing session instead of creating a separate one
0.3.1February 2026
Added
- Cross-platform support for Windows and Linux (path handling, symlinks)
- Diff-style code blocks on homepage and install pages using
@pierre/diffs - Agent setup guide on the install page with copy-paste snippet for agent instructions files
- New FAQ entry for “What gets captured?”
Improved
- CLI is now available as
agent-taildirectly (renamed fromagent-tail-core) - Redesigned docs homepage with How you use it, How agents use it, and Try it sections
- Playground toolbar auto-opens when navigating to /playground
0.3.0February 2026
Improved
- Renamed plugin exports to camelCase:
agentTail,withAgentTail,AgentTailScript
0.2.0February 2026
Added
excludesoption to filter noisy log lines by substring or regex — works in plugins and CLI (--excludeflag)- Umbrella
agent-tailpackage with unified imports (agent-tail/vite,agent-tail/next) - Interactive playground page in the docs
0.1.0February 2026
Initial release. Vite plugin, Next.js plugin, and CLI for piping browser console logs to files on disk.
Added
- Vite plugin with automatic script injection and log ingestion
- Next.js plugin with config wrapper, API route handler, and script component
- CLI commands:
agent-tail run,agent-tail wrap,agent-tail init - Timestamped session directories with latest symlink
- Auto-pruning of old sessions
- Combined log file for multi-server setups
- Gitignore detection and warnings
- Configurable console method interception
- Unhandled error and promise rejection capture