From 99696bd668a56aaf4128a36e574d7653f4630786 Mon Sep 17 00:00:00 2001 From: Aswin Prakash Thiyagarajan Date: Thu, 30 Jul 2026 15:01:59 -0400 Subject: [PATCH] [OPIK-7648] Scaffold /find skill (skeleton SKILL.md) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Skeleton only — intent, transport, and definition of done are specified; implementation steps are TODO. Part of 'Opik for Agents' (OPIK-7623). Co-Authored-By: Claude Opus 4.8 (1M context) --- src/opik_mcp/skills/find/SKILL.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/opik_mcp/skills/find/SKILL.md diff --git a/src/opik_mcp/skills/find/SKILL.md b/src/opik_mcp/skills/find/SKILL.md new file mode 100644 index 0000000..de7e25e --- /dev/null +++ b/src/opik_mcp/skills/find/SKILL.md @@ -0,0 +1,23 @@ +--- +name: find +description: Surface the traces worth attention in a workspace — errors, regressions, outliers, low online-eval scores — plus Diagnostics issues. Scoped to online/production signal. +last_updated: "2026-07-30" +source_commit: "TODO" +--- + +# Find — surface the traces worth attention + +> **Scaffold — not yet implemented.** Behavior is specified below; the steps are TODO. + +## Intent +Rank live/production traces by signal (errors, latency, regressions, low online-eval scores) and surface Diagnostics issues, so the developer sees what needs attention without hunting. Hands a chosen trace to `/explain`. + +## Scope +Online / production signal only. Offline experiment results are the output of `/compare` and `/evaluate`, not re-discovered here. + +## Transport +Reads Diagnostics via the SDK REST client (`rest_client.agent_insights`) or the hosted MCP `issue` entity when connected (recommended). Does not require the MCP. + +## Definition of done +- [ ] Returns a ranked shortlist of traces/issues worth attention, including low online-eval scores. +- [ ] Works over the SDK; uses the MCP when present; does not surface offline results.