بنقرة واحدة
verify-traces
Verifies tracing works correctly after integration by running both code review and live trace testing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Verifies tracing works correctly after integration by running both code review and live trace testing.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Deploy agents to OpenShift with auto-detected cluster config and refresh MLflow tracking tokens.
Add integration deployment tests (health-check on OpenShift) to any agent in the agentic-starter-kits repo — standard, external-registry, or pre-deployed. Creates conftest.py, test_deployment.py, __init__.py, adds test-integration Makefile target, and updates the CI workflow matrix. Use when implementing integration tests, deployment tests, or health-check tests for a new agent.
Validate whether a new agent template or example belongs in the agentic-starter-kits repo. Two modes: idea mode (interactive questionnaire, no code yet) or existing agent mode (auto-extract from code). Produces a GitHub Discussion draft with fit score and recommendations. Use when proposing a new agent, reviewing an existing contribution's fit, or before writing code for a new template.
Add behavioral testing (pytest + EvalHub) to an agent in the agentic-starter-kits repo. Covers runner compatibility, test files, golden queries, thresholds, EvalHub fixture, Containerfile, docs, and MLflow tracing verification. Use when implementing behavioral tests for a new agent or when the user mentions btest, behavioral tests, eval coverage, or test harness integration.
Adds manual MLflow trace wrapping for tool and agent spans in Level B and C agents where autolog doesn't cover everything.
Researches and classifies a framework's MLflow autolog support level (A, B, or C) to determine what manual tracing is needed.
| name | verify-traces |
| description | Verifies tracing works correctly after integration by running both code review and live trace testing. |
| argument-hint | <agent_path> |
| disable-model-invocation | true |
Usage:
/verify-traces <agent_path>Example:/verify-traces agents/autogen/chat_agent
You are verifying that MLflow tracing works correctly after integrating it into a new agent template. This is the final validation step in the tracing integration workflow.
The agent path is: $ARGUMENTS
You also need the coverage level (A, B, or C). If not provided, determine it by reading the agent's tracing.py. If it has wrap_func_with_mlflow_trace() and a framework autolog, it's Level B. If it has wrap_func_with_mlflow_trace() but no framework autolog, it's Level C. If it has neither, it's Level A.
You must execute every step yourself — do NOT tell the user to do it manually or suggest they run commands. You are responsible for running all commands, starting servers, sending requests, and inspecting traces. Do not stop partway through and summarize what the user should do next.
Invoke the review-tracing-code skill (i.e., /agentic-starter-kits-skills:review-tracing-code). Read the agent's tracing.py, main.py, and any manual wrapping files. Check each item in the review checklist and produce the code review report.
Invoke the test-tracing skill (i.e., /agentic-starter-kits-skills:test-tracing). This means YOU must:
.env from .env.exampleDo not skip any of these steps or ask the user to do them.
Combine the outputs from both steps into a single verification report:
## Tracing Verification Report: <agent_name>
### Code Review
<output from review-tracing-code>
### Live Test Results
<output from test-tracing>
### Overall Status: PASS / FAIL
If FAIL, list specific issues and which skill to re-run to fix them (e.g., "Missing tool wrapping in streaming path — re-run add-manual-tracing").
Before finishing, check whether this skill file needs updating. If any of the following are true, propose the specific changes to the user and only update this file if they approve:
If nothing needed changing, move on.