← All plugins
observability
v1.0.0Read traces and logs for a running environment.
Agent Plugins1 Skill1 MCP serverStreamable HTTP
By Ravi Kanchikare0 GitHub starsUpdated 3 hours ago
Get the plugin
git clone https://github.com/ravikanchikare/desktop-shell-pluginsClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/observability/.
Plugin files
plugins/observability/
├── plugin.json├── skills/trace-reader/SKILL.md└── mcp.json
Included Skills1
trace-readerskills/trace-reader/SKILL.md
Read traces for a run and explain what the agent saw and decided. Use when correlating a chat turn with the tool calls and responses behind it.
MCP servers1
httpbinStreamable HTTP
- url
- http://127.0.0.1/mcp
Plugin manifests1
plugins/observability/plugin.json
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "observability",
"version": "1.0.0",
"description": "Read traces and logs for a running environment.",
"author": {
"name": "Ravi Kanchikare"
},
"keywords": [
"observability",
"traces"
],
"extensions": {
"com.desktop.shell": {
"publisher": "Ravi Kanchikare",
"openapi": {
"spec": "./com.desktop.shell/openapi-specs/httpbin.yaml",
"operations": {
"allow": [
"get_get",
"get_status_code"
]
}
}
}
}
}