@wix/evalforge-types 0.21.0 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27,14 +27,17 @@ export interface TraceContext {
27
27
  /**
28
28
  * Agent-agnostic execution context.
29
29
  *
30
- * Contains all the information an agent adapter needs to execute a skill
30
+ * Contains all the information an agent adapter needs to execute skills
31
31
  * against a test scenario. This abstraction allows different agent
32
32
  * implementations (Claude Code, Cursor, Aider, etc.) to receive the
33
33
  * same execution context.
34
+ *
35
+ * When running a skills group, all skills are provided and the agent
36
+ * has access to all of them together (e.g. all written to .claude/skills/).
34
37
  */
35
38
  export interface AgentExecutionContext {
36
- /** The skill to execute (contains skillMd content) */
37
- skill: Skill;
39
+ /** The skills to execute (each contains skillMd content). Run all together as a group. */
40
+ skills: Skill[];
38
41
  /** The test scenario containing the trigger prompt */
39
42
  scenario: TestScenario;
40
43
  /** Working directory for the execution */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/evalforge-types",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "description": "Unified types for EvalForge agent evaluation system",
5
5
  "files": [
6
6
  "build"
@@ -46,5 +46,5 @@
46
46
  "artifactId": "evalforge-types"
47
47
  }
48
48
  },
49
- "falconPackageHash": "dd1b66b435e8b08bf00fbdc1de02908cece45b1816e2873a5082a827"
49
+ "falconPackageHash": "f67ac21e3b7c27217415021b6e6eae018d6deee731e94ae02891b4c3"
50
50
  }