agentsope/agentsop-prompt-history-inspect
| the framework sent to the model, before changing anything else. Activate when an LM call produced an unexpected output (wrong answer, schema violation, refusal, truncation, cost spike, latency spike, infinite loop, "model got dumber after upgrade"). The skill enforces a 30-second inspect step BEFORE any prompt edit, model swap, retry, or temperature CrewAI `step_callback`, LangChain `set_debug`/`set_verbose`, Aider `/diff`+`--verbose`, raw OpenAI/Anthropic via `OPENAI_LOG=debug`/`ANTHROPIC_LOG=debug` or HTTPX event hooks. Do NOT activate for first-time prompt authoring, exploratory prompt design, or non-LM bugs.
npx skills add https://github.com/agentsope/SkillAlchemy --skill agentsop-prompt-history-inspect
> *"The prompt you wrote is not the prompt the model received."*
> — Operating axiom for every framework that templates, injects few-shots, appends tool definitions, or wraps system messages.
Activate this skill the moment an LM call surprises you, BEFORE any other debug move.
| Trigger | Signal |
|---|---|
| Output wrong | "Why did it answer X?" / hallucinated fact / wrong format / refusal |
| Output truncated | mid-sentence cut, partial JSON, missing fields |
| Output empty / repeats | model returns "", repeats the same token, loops |
| Behaviour changed | "It worked yesterday" / "It worked on GPT-4o but not on Llama-3" |
| Cost / latency spike | tokens jumped 3× without code change → something got injected |
| Tool call wrong | wrong tool picked, args malformed, tool call missing |
| Schema validation failed | Pydantic / Outlines / guidance grammar refused output |
| Eval regression | metric dropped after upgrading framework version |
| Production bug | a user-facing thread produced a wrong answer — need to see what the LM saw |
Do NOT activate when:
The trigger is universal across the stack. Any framework that *templates* a prompt — DSPy, LangChain, LangGraph, CrewAI, LlamaIndex, Aider, Guidance, Outlines — has a layer between "what you wrote" and "what the model received." This skill is the first-line probe into that gap.
┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐
│ What you wrote │ ≠ │ What was rendered│ ≠ │ What the LM saw │
│ (template, │ │ (after few-shot │ │ (after provider │
│ signature, etc) │ │ injection, tool │ │ reformatting, │
│ │ │ defs appended, │ │ message squash, │
│ │ │ system msg, │ │ token truncation)
│ │ │ history, etc) │ │ │
└──────────────────┘ └──────────────────┘ └──────────────────┘
layer 1 layer 2 layer 3
(your code) (framework render) (provider transport)
Three mental shifts the agent must internalize:
inspect_history(n=1). LangChain gives you set_debug(True). Raw SDKs give you OPENAI_LOG=debug or HTTPX event hooks. You learn one cheat sheet (§7) once and the SOP applies everywhere.The 30-second test. Before you do *anything* else, you should be able to print the exact final prompt text in <30 seconds. If you can't — you're not set up to debug LMs. Fix that first.
A four-step ritual. Do them in order. Do not skip ahead.
Look up the framework on the §7 cheat sheet. Run the inspect command. Get the actual text of:
For DSPy: dspy.inspect_history(n=1) [dspy.ai/api/utils/inspect_history/].
For LangChain: from langchain.globals import set_debug; set_debug(True) [python.langchain.com/api_reference/core/globals/langchain_core.globals.set_debug.html].
For raw SDKs: export OPENAI_LOG=debug or ANTHROPIC_LOG=debug github.com/openai/openai-python, [github.com/anthropics/anthropic-sdk-python].
Write down (mentally or in a scratch file): *what did I expect the prompt to contain?* Then compare to the dump. Look for:
None / empty / {var} literal).{% if %}).Now classify the bug into one of three layers (mental model §2):
max_tokens, restructure to avoid role coercion).Apply the minimum change at the identified layer. Re-run. Re-dump. Confirm the prompt now matches expectation. *Then* check whether the bug is fixed.
Critical anti-pattern: do not skip step 4's re-dump. Many "fixes" change Layer 1 when the real bug is Layer 2 — the prompt still looks broken on re-dump, even if the visible symptom changed.
Predict / ChainOfThought / ReAct returned wrong output, OR a compile run hung mid-trial.import dspy; dspy.inspect_history(n=1) — increase n to see the last few calls. For per-LM history: lm.inspect_history(n=3).inspect_history shows *only LM calls*, not retriever/tool calls — for those, wire mlflow.dspy.autolog() [[github.com/stanfordnlp/dspy issue #784 for n-parameter quirks]. from langchain.globals import set_debug, set_verbose
set_debug(True) # most verbose — full prompt + response + chain internals
# OR for less noise:
set_verbose(True) # prompt + response only, no chain internals
Scope: process-global. Toggle off when done.
history = list(graph.get_state_history(config)) # newest → oldest
for snap in history:
print(snap.config["configurable"]["checkpoint_id"], snap.values)
# Replay from a checkpoint:
graph.invoke(None, config={"configurable": {
"thread_id": "...", "checkpoint_id": "<chosen id>"}})
# Fork by modifying state:
graph.update_state(config, {"some_field": "new value"})
Agent(..., verbose=True) # prints agent thoughts + tool I/O
Crew(..., verbose=True)
# Per-step structured capture:
def my_step(step_output):
print("STEP:", step_output) # AgentAction / AgentFinish / observation
Agent(..., step_callback=my_step)
step_callback parameter), docs.crewai.com/en/observability/overview. CrewAI's internal log is thin — for production observability also wire mlflow.crewai.autolog() or Langtrace [docs.crewai.com/how-to/langtrace-observability]. /diff # see exactly what Aider just changed
/tokens # see how big the context actually got
/ls # see which files are in chat vs read-only
Plus CLI: aider --verbose prints the full prompt sent to the model on each turn.
--verbose) the rendered prompt.git diff HEAD~1 for verification — Aider auto-commits, so the diff is also in git history.client.chat.completions.create(...) (OpenAI) or client.messages.create(...) (Anthropic) directly, and the response is wrong. No framework templating layer to blame. # OpenAI:
export OPENAI_LOG=debug # also: OPENAI_LOG=info for less verbose
# Anthropic:
export ANTHROPIC_LOG=debug
Both SDKs use the stdlib logging module — the env var sets the logger level.
debug level, the Authorization header (including the API key) is printed in plaintext github.com/openai/openai-python issue #1196, [issue #1082]. Never commit a debug-level log file. Strip keys before sharing.additional_drop_params or extra_body did), and OPENAI_LOG=debug is too noisy or formats badly.httpx.Client with event hooks to the SDK: import httpx, json
from openai import OpenAI
def log_request(req):
print("REQUEST:", req.method, req.url)
print(json.dumps(json.loads(req.content), indent=2))
client = OpenAI(http_client=httpx.Client(event_hooks={"request": [log_request]}))
http_client=).langsmith, phoenix, langfuse) for the platform-specific UI. *This skill enforces the first-move SOP; those skills provide the UI.*tests/fixtures/prompt-bug-<id>.txt. Add a test that asserts the *next* render does not contain the bad pattern. (For LangChain, snapshot the prompt.format(**inputs) output; for DSPy, snapshot what inspect_history printed.)困境 (Dilemma): A RAG pipeline retrieves 10 passages and asks the LM to synthesize. Outputs miss obvious facts that are in the retrieved passages. User's first instinct: "the model is bad / the retriever is bad / let me re-rank."
约束 (Constraints):
MapReduceDocumentsChain wrapper.决策步骤 (Decision steps):
set_debug(True) from langchain.globals [python.langchain.com/api_reference/core/globals/langchain_core.globals.set_debug.html]. Re-run.stuff chain (all 10 passages in one prompt — fits in 128k) or write better chunk-summary prompts. Re-dump to confirm all 10 passages now appear.结果 (Outcome): Wrong layer would have been: a week of re-ranker tuning. Right layer: 10 minutes of template fix. Visible *only* via rendered-prompt dump.
可提取的操作 (Extractable operation): When a RAG pipeline misses obvious retrieved facts, dump the prompt and count how many retrieved chunks actually appear. The framework probably dropped some.
困境: A LangChain or CrewAI agent worked fine with 3 tools. After adding 4 more tools, accuracy dropped and latency tripled. User suspects the model "gets confused by more tools."
约束:
决策步骤:
tools=[...] array alone (OP-8).enum lists in params — describe them in natural language.结果: Without inspect, the user would "fix" by removing tools (losing capability) or switching models (expensive). Inspect reveals the tool-schema is the cost driver.
可提取的操作: More tools = silent prompt inflation. Always inspect tool-block token count before blaming the model.
困境: A MIPROv2-compiled program for GPT-4o hits 85% on dev. Re-pointed at Llama-3-8B, drops to 41%. User assumes Llama is just weaker.
约束:
compiled.json saved with demos + instructions tuned to GPT-4o.dspy.configure(lm=...) changed.决策步骤:
dspy.inspect_history(n=3) on Llama-3-8B [dspy.ai/api/utils/inspect_history/].compiled.json contain verbose, GPT-4o-style chains-of-thought (5–8 sentences per demo). Llama-3-8B copies the *length* but skips the *reasoning structure* — producing plausible-shaped but wrong outputs.dspy-sop]: recompile against Llama-3-8B. *But* without the inspect step, the user would not have known the demos were the bottleneck (vs. the instructions, or the signature).结果: Inspect reveals *what changed* in the rendered prompt; doctrine says *what to do* about it. Skipping inspect leads to "Llama is bad" — wrong root cause.
可提取的操作: Compiled-prompt artefacts are model-coupled. Inspect-dump on the new model is mandatory before declaring the model "weaker."
困境: A LangGraph customer-support agent gave a confidently wrong answer in production. User logs show only the final output, not intermediate state. No local repro.
约束:
决策步骤:
history = list(graph.get_state_history({"configurable": {"thread_id": "<prod-id>"}}))
messages field in each StateSnapshot.values — that's the rendered prompt as seen by the LM [langchain-ai.github.io/langgraph/concepts/time-travel/].graph.invoke(None, config=...) to "replay" — that re-executes LM calls and incurs cost [time-travel docs caveat]. Reading state history is read-only and free.结果: Time-travel reads state without re-paying for LLM calls. The bug is visible in the inspected state, not in the final output alone.
可提取的操作: For production bugs, get_state_history is read-only and free; invoke(None, config=...) is replay and costs LM calls. Inspect first, replay only if necessary.
PromptTemplate.format(...) output is *not* the same as dumping what hit the wire — the framework adds messages, system instructions, tool schemas after that point. Prefer SDK-level (OPENAI_LOG=debug) or HTTPX-hook (OP-7) over template-render for production debugging.set_debug(True) / OPENAI_LOG=debug on in production. Both leak request bodies, and OPENAI_LOG=debug / ANTHROPIC_LOG=debug print the API key in plaintext [openai-python issue #1196]. Always scope to debug sessions; toggle off when done.graph.invoke(None, config=...) to debug. Re-executes LM calls and tools, paying real cost, possibly mutating real systems. Read state history; replay only when needed [time-travel docs].inspect_history as the *only* observability. DSPy's inspect_history shows LM calls only — not retrievers, not tools, not subgraphs. For multi-component pipelines, layer it with MLflow / LangSmith tracing [dspy.ai/tutorials/observability/].10. Sharing a debug log without scrubbing keys. Strip Authorization: headers before pasting into chat / issues / Slack.
| Framework | First-move command | What it shows | Source |
|---|---|---|---|
| DSPy | dspy.inspect_history(n=1) | Last LM call: system / user / assistant / response | dspy.ai/api/utils/inspect_history/ |
| DSPy (per-LM) | lm.inspect_history(n=3) | Last N calls for a specific LM instance | dspy.ai/tutorials/observability/ |
| LangChain (max) | from langchain.globals import set_debug; set_debug(True) | Prompt + response + chain internals for every call | python.langchain.com/api_reference/core/globals/langchain_core.globals.set_debug.html |
| LangChain (lighter) | set_verbose(True) | Prompt + response only | python.langchain.com/api_reference/langchain/globals/langchain.globals.set_verbose.html |
| LangGraph | graph.get_state_history(config) | Per-step state including messages (rendered LM input) | langchain-ai.github.io/langgraph/concepts/time-travel/ |
| LangGraph (fork) | graph.update_state(config, {...}) then graph.invoke(None, config={"checkpoint_id": ...}) | Replay/fork from any past checkpoint (re-pays LM cost) | docs.langchain.com/oss/python/langgraph/use-time-travel |
| CrewAI | Agent(..., verbose=True) + Crew(..., verbose=True) | Agent thoughts, tool I/O, final answer | docs.crewai.com/en/concepts/agents |
| CrewAI (structured) | Agent(..., step_callback=fn) | Per-step AgentAction / observation captured in your callback | docs.crewai.com/en/concepts/agents, docs.crewai.com/en/observability/overview |
| LlamaIndex | Settings.callback_manager = CallbackManager(LlamaDebugHandler(...)]) then handler.get_llm_inputs_outputs() | All LLM inputs/outputs during a query | [docs.llamaindex.ai (debugging guide) |
| Aider | /diff (last turn) + aider --verbose (full rendered prompt) | Per-turn diff and full prompt sent | aider.chat/docs/usage/commands.html |
| OpenAI SDK | export OPENAI_LOG=debug | Full HTTP request + response (incl. API key — strip!) | github.com/openai/openai-python README §Logging |
| Anthropic SDK | export ANTHROPIC_LOG=debug | Full HTTP request + response (incl. API key — strip!) | github.com/anthropics/anthropic-sdk-python README §Logging |
| Any SDK (clean) | Custom httpx.Client(event_hooks={"request": log_fn]}) passed via http_client= | Structured JSON body of every request | [til.simonwillison.net/httpx/openai-log-requests-responses |
| Production traces | Open the run in LangSmith / LangFuse / Phoenix / MLflow | Rendered prompt + response for a specific production thread | Per-platform skill |
LM call surprised you?
│
Yes ──► STOP. Do not edit the prompt. Do not retry. Do not swap models.
│
▼
What framework?
DSPy → dspy.inspect_history(n=1)
LangChain → set_debug(True)
LangGraph → graph.get_state_history(config)
CrewAI → step_callback + verbose=True
Aider → /diff AND aider --verbose
Raw OpenAI/Anth → OPENAI_LOG=debug / ANTHROPIC_LOG=debug
Clean dump → httpx event hook (OP-7)
Production bug → LangSmith / LangFuse / Phoenix trace
│
▼
Diff dump against expectation. Identify layer (1/2/3 — §3 Step 3).
│
▼
Fix at correct layer. Re-dump. Confirm prompt now matches.
│
▼
NOW check if the bug is fixed. If not, repeat from inspect.
This skill is adjacent to but distinct from trace-UI skills:
langsmith, phoenix, langfuse, mlflow provide the UI for inspecting traces.prompt-history-inspect provides the SOP (inspect-first discipline) and the cross-framework command lookup.Use them together: this skill says *when* and *why* to inspect; the platform skills say *where* the UI lives. For local dev, the framework-native commands in §7 are usually enough.
inspect_history API: dspy.ai/api/utils/inspect_history/set_debug: python.langchain.com/api_reference/core/globals/langchain_core.globals.set_debug.htmlset_verbose: python.langchain.com/api_reference/langchain/globals/langchain.globals.set_verbose.htmlstep_callback, verbose): docs.crewai.com/en/concepts/agentsTake agentsope/agentsop-prompt-history-inspect from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.