Langsmith Cli
Description
A coding agent-first CLI for interacting with LangSmith.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
langsmith-cli
An agent-first CLI for querying and managing [LangSmith](https://smith.langchain.com) resources.
Built for AI coding agents (deepagents, Claude Code, Cursor, etc.) and developers who need fast, scriptable access to projects, traces, runs, datasets, evaluators, experiments, and threads.
Installation
Install script (recommended)
macOS / Linux:
curl -fsSL https://cli.langsmith.com/install.sh | sh
Windows (PowerShell):
irm https://cli.langsmith.com/install.ps1 | iex
Upgrade
langsmith self-update
GitHub releases
Download the latest binary for your platform from [GitHub Releases](https://github.com/langchain-ai/langsmith-cli/releases).
Authentication
Set your API key as an environment variable:
export LANGSMITH_API_KEY="lsv2_pt_..."
Optionally set defaults:
export LANGSMITH_ENDPOINT="https://api.smith.langchain.com" # For self-hosted
export LANGSMITH_WORKSPACE_ID="" # Default workspace
export LANGSMITH_PROJECT="my-default-project" # Default project for queries
Or save the credentials in a profile:
langsmith auth login # OAuth
langsmith profile create prod # API key, taken from $LANGSMITH_API_KEY
Profiles live in `~/.langsmith/config.json`, written owner-only; the CLI warns if it is readable by other users.
Other settings can be passed as flags:
langsmith --workspace trace list --project my-app
Quick Start
# List tracing projects
langsmith project list
# List recent traces in a project
langsmith trace list --project my-app --limit 5
# Get a specific trace with full detail
langsmith trace get --project my-app --full
# List LLM calls with token counts
langsmith run list --project my-app --run-type llm --include-metadata
# List datasets
langsmith dataset list
# List experiments for a dataset
langsmith experiment lis
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11