You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/opencode/src/skill/validate/SKILL.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,13 +47,13 @@ Parse `$ARGUMENTS` to determine the mode and construct the command:
47
47
- If it contains `--from` → date range mode: `uv run --with python-dotenv --with requests python "$VALIDATE_SCRIPT" --project-root "$PROJECT_ROOT" --from-time "<from>" --to-time "<to>" --user-id "<user_id>"`
48
48
- Otherwise → single trace ID: `uv run --with python-dotenv --with requests python "$VALIDATE_SCRIPT" --project-root "$PROJECT_ROOT" --trace-ids "$ARGUMENTS"`
49
49
50
-
Run the command using the Bash tool with `timeout: 900000` (milliseconds) to allow up to ~15 minutes for long-running validations:
50
+
Run the command using the Bash tool with `timeout: 3600000` (milliseconds) to allow up to ~60 minutes for long-running validations:
51
51
52
52
```bash
53
53
uv run --with python-dotenv --with requests python "$VALIDATE_SCRIPT" --project-root "$PROJECT_ROOT"<appropriate_args>
54
54
```
55
55
56
-
**IMPORTANT**: Always pass `timeout: 900000` to the Bash tool when running this command. The default 2-minute bash timeout is too short for validation jobs.
56
+
**IMPORTANT**: Always pass `timeout: 3600000` to the Bash tool when running this command. The default 2-minute bash timeout is too short for validation jobs.
57
57
58
58
The script will:
59
59
- Call the Altimate backend directly (no Langfuse dependency)
@@ -241,7 +241,18 @@ For EACH category:
241
241
- **Common Strengths**: Patterns of success observed across traces
242
242
- **Common Weaknesses**: Recurring issues found across traces
243
243
- **Recommendations**: Actionable improvements based on the analysis
244
+
245
+
Finally generate all the failed claims in the below markdown format from all the traces
246
+
247
+
| # | Trace ID |Claim | Claimed | Source Tool ID | Actual Text | Actual Data | Error | Root Cause |
0 commit comments