agentsclimarketplace

Langsmith observability

Skill dor-rondel/agent-skills-mcp/resources/langgraph/langsmith-observability

Use this skill when launching the local LangGraph visual development server (Studio), verifying LangSmith tracing environment variables, or testing agent telemetry.From its SKILL.md

Install
npx -y skills add dor-rondel/agent-skills-mcp --skill langsmith-observability

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

4 things to look at

  • reads credentialsReads from 2 credential sources: `.env` and 1 more.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 4 commands, including `uv run langgraph dev` and 3 more.
  • fetches URLsInstructs the agent to fetch 1 URL, including http://127.0.0.1:2024/ok.

SKILL.md

2.1 KB, 426 tokens by cl100k_base, as published. Nobody here has run it

LangGraph & LangSmith Observability Workflow

This skill manages local agent debugging, tracing configurations, and interaction with LangGraph Studio for real-time state manipulation.

🛠️ Tracing & Studio Prerequisites

Before starting local dev servers, verify that your local .env contains active tracking credentials to automatically pipe node executions into LangSmith:

LANGSMITH_TRACING=true
LANGSMITH_API_KEY=ls__your_api_key_here
LANGSMITH_PROJECT=langgraph-agent-dev
LANGSMITH_ENDPOINT=https://api.smith.langchain.com

🏃‍♂️ Core Observability Commands

1. Launch Local LangGraph Dev Server (Studio)

Boot the lightweight local development server. This parses your langgraph.json configuration, auto-loads the .env parameters, and opens the local streaming visual UI:

uv run langgraph dev

2. Verify Local API Liveness

If the studio UI or client SDK is failing to stream transitions, verify that the local routing daemon is responsive (Default port: 2024):

curl -s http://127.0.0.1:2024/ok

3. Check LangGraph Project Validation

Explicitly validate your graph mappings, dependencies, and configuration schema defined inside langgraph.json without booting the server:

uv run langgraph validation validate

4. Check LangGraph Project Validation

Explicitly validate your graph mappings, dependencies, and configuration schema defined inside langgraph.json without booting the server:

uv run langgraph validation validate

⚙️ Environment Integrity Rules

  1. Never Hardcode Keys: Ensure all ls__ tokens are extracted natively from environment parameters.
  2. Handle Sync Blocks: If the UI logs blockages, remind the runtime environment that nodes contain synchronous code by invoking the server with the blocking allowances:
uv run langgraph dev --allow-blocking

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.