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
`Transcript has ${transcriptProvider.lineCount} entr${transcriptProvider.lineCount===1 ? 'y' : 'ies'} but eval defines ${totalTests} test(s). Each transcript entry maps positionally to one test case.`,
2282
+
`Transcript has ${transcriptProvider.lineCount} entr${transcriptProvider.lineCount===1 ? 'y' : 'ies'} but eval defines ${totalTests} test(s). Each transcript entry must map to one test case by test_id.`,
Offline grading is useful when you want to evaluate skills with agents that don't have a direct API integration — import the session transcript and run deterministic graders.
If another tool owns the original `evals.json`, keep that file as the source and run it through the read adapter. Convert only when you need to edit the AgentV-native form.
Copy file name to clipboardExpand all lines: apps/web/src/content/docs/docs/next/targets/coding-agents.mdx
+13-8Lines changed: 13 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,6 @@ targets:
110
110
| `claude-cli` | Claude CLI subprocess. | Default Claude path; captures structured stream output when available. |
111
111
| `claude-sdk` | Claude Agent SDK in an AgentV child runner. | Explicit SDK path; useful when SDK-native events matter more than matching a local CLI invocation. |
112
112
| `copilot-cli` | Copilot CLI subprocess/protocol path. | Active Copilot eval run through the installed process. |
113
-
| `copilot-log` | Passive Copilot session-log reader. | Zero-cost transcript grading for existing sessions; it does not run a new agent. |
114
113
| `copilot-sdk` | Copilot SDK in an AgentV child runner. | Explicit SDK path with child-process isolation. |
115
114
116
115
Every coding-agent provider returns a structured target execution envelope.
@@ -271,15 +270,20 @@ targets:
271
270
api_format: responses
272
271
```
273
272
274
-
Read an existing Copilot session log without running a new agent:
273
+
Replay an existing Copilot session without running a new agent by importing the
274
+
native log into AgentV transcript rows, then using the generic replay target:
Offline grading is useful when you want to evaluate skills with agents that don't have a direct API integration — import the session transcript and run deterministic graders.
0 commit comments