agenttrace
Local-first Rust TUI/CLI for auditing AI coding-agent sessions: cost, tokens, latency, failures, and health|本地优先 Rust TUI/CLI,审计 AI 编程 Agent 会话的成本、Token、延迟、失败与健康度
File Explorer
Download Latest Version (.zip)- plugin.json
- bug_report.yml
- config.yml
- feature_request.yml
- parser_request.yml
- ci.yml
- dependency-review.yml
- release.yml
- dependabot.yml
- ISSUE_TEMPLATE.md
- PULL_REQUEST_TEMPLATE.md
- agenttrace-demo.gif
- hero-banner.png
- logo-icon.png
- plugin-icon.svg
- readme-detail.png
- readme-overview.png
- readme-real-critical.png
- readme-real-detail.png
- readme-real-diagnostics.png
- readme-real-overview.png
- readme-real-run.gif
- readme-session-list.png
- main.rs
- entrypoints.rs
- Cargo.toml
- demo.rs
- diagnostics.rs
- discovery.rs
- doctor.rs
- governance.rs
- history.rs
- insights.rs
- lib.rs
- parser.rs
- pricing.rs
- reports.rs
- search.rs
- session_cache.rs
- sqlite_sessions.rs
- waste.rs
- demo_contract.rs
- discovery_contract.rs
- Cargo.toml
- app.rs
- explorer.rs
- filters.rs
- i18n.rs
- lib.rs
- presentation.rs
- shared.rs
- tests.rs
- Cargo.toml
- rust-migration-compatibility-v0.6.md
- rust-migration-status-v0.6.md
- demo.tape
- real-run.tape
- ci-integration.md
- codex-plugin.md
- cursor-import.md
- governance-reports.md
- parser-guide.md
- agentops-prompt-rules.md
- demo-playbook.md
- distribution.md
- launch-kit.md
- community-pain-points.md
- README.md
- agenttrace-health-gate.yml
- agenttrace.rb
- README.md
- agenttrace.js
- install.js
- package.test.js
- LICENSE
- package.json
- README.md
- check-cargo-manifests.sh
- check-deterministic-output.sh
- check-docs-commands.sh
- check-output-contract.sh
- check-release-surfaces.sh
- check-report-semantics.sh
- check-rust-real-cli-smoke.sh
- check-rust-release-local.sh
- check-rust-tui-real-smoke.sh
- render-channels.sh
- record-demo.sh
- record-real-marketing.sh
- SKILL.md
- api_conversation_history.json
- api_conversation_history.json
- task_metadata.json
- ui_messages.json
- aggregate-session.sql
- antigravity.jsonl
- copilot-session.jsonl
- detailed-tool-steps.jsonl
- kimi-wire.jsonl
- openclaw-wrapper.json
- pi-session.jsonl
- qwen-stream.jsonl
- tool-step-redaction.jsonl
- workbuddy.jsonl
- msg_assistant.json
- msg_user.json
- part_finish.json
- part_text.json
- part_tool.json
- part_text.json
- ses_abc.json
- claude-code-preamble.jsonl
- codex-rollout-with-aider-text.jsonl
- copilot-attrs-map.jsonl
- cursor-composer-messages.json
- cursor-json-string-values.json
- gemini-checkpoint.json
- gemini-current-chat.json
- kimi-tool-args.json
- README.md
- .codexignore
- .gitignore
- Cargo.lock
- Cargo.toml
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- install.ps1
- install.sh
- LICENSE
- PRIVACY.md
- README.md
- README.zh-CN.md
- ROADMAP.md
- SECURITY.md
# Installation Guide
git clone https://github.com/luoyuctl/agenttrace
Downloads the entire project code from GitHub to your computer.
cd agenttrace
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Homebrew A package manager for macOS/Linux.
- Node.js Node.js must be installed to use npm.
- Rust (rustup) Rust is required to use cargo.
brew install luoyuctl/tap/agenttrace
Installs the pre-built package via Homebrew — no source build required.
npm install -g @zack78/agenttrace
Installs the package published on the npm registry globally — no need to clone the source.
curl -fsSL https://raw.githubusercontent.com/luoyuctl/agenttrace/master/install.sh | sh
Downloads and runs the official install script in one line — this handles the full setup automatically.
cargo install --git https://github.com/luoyuctl/agenttrace agenttrace
Builds and installs the package published on crates.io — no need to clone the repo yourself.
Pulled directly from this repo's README.
3. Node.js
Easynpm install -g @zack78/agenttrace
Installs the package published on the npm registry globally — no need to clone the source.
Pulled directly from this repo's README.
4. Rust
Medium- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo install --git https://github.com/luoyuctl/agenttrace agenttrace
Builds and installs the package published on crates.io — no need to clone the repo yourself.
cargo test
Type this command into your terminal and run it.
cargo build --release -p agenttrace
Compiles the Rust project.
Pulled directly from this repo's README.
