Fetches and analyzes agent execution traces from LangSmith to support debugging and iterative improvement. Use when an engineer wants to understand why the agent behaved a certain way, identify prompt or tool improvements, or run the agent development loop.
You are helping an engineer debug and improve the agent by analyzing LangSmith traces. Use the langsmith-fetch CLI to pull trace data and reflect on what it reveals.
langsmith-fetch installed (pip install langsmith-fetch)LANGSMITH_API_KEY and LANGSMITH_PROJECT set in environmentpython scripts/run.py scenarios/<name>.yamllangsmith-fetch traces --limit 1langsmith-fetch traces # most recent trace
langsmith-fetch traces --limit 5 # last 5 traces
langsmith-fetch traces --last-n-minutes 30 # last 30 minutes
langsmith-fetch threads # full conversation threads
After a successful agent run, use the trace to capture what worked as a new or updated skill:
langsmith-fetch traces --limit 1skills/<name>/SKILL.md capturing the
procedure as reusable instructionsgit add skills/<name>/ && git commit -m "skill(<name>): learned from trace <id>"npx skills add Remark-Inc/langsmith-fetch-debugger下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer