@axiom-lattice/core 3.0.2 → 3.0.3

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.
package/dist/index.d.mts CHANGED
@@ -5296,9 +5296,20 @@ interface EvalRunService {
5296
5296
  * @param suiteIds - Optional suite filter — only these suites run.
5297
5297
  * Omit to run all suites. Used to keep the validation suite
5298
5298
  * untouched during the fix loop (hold-out isolation).
5299
+ * @param caseIds - Optional case filter — only these cases run (across
5300
+ * the suites selected by `suiteIds`, or all suites if omitted).
5301
+ * Suites with no matching cases are skipped; an error is thrown if
5302
+ * no case matches at all.
5303
+ * @param runConfig - Runtime environment (workspace/project) the eval
5304
+ * executes in. Comes from the CALLER's runConfig, NOT from the eval
5305
+ * project's targetServerConfig. Test cases are environment-agnostic;
5306
+ * the run environment is decided at run time.
5299
5307
  * @returns The newly created run ID
5300
5308
  */
5301
- startRun(tenantId: string, projectId: string, suiteIds?: string[]): Promise<string>;
5309
+ startRun(tenantId: string, projectId: string, suiteIds?: string[], caseIds?: string[], runConfig?: {
5310
+ workspaceId?: string;
5311
+ projectId?: string;
5312
+ }): Promise<string>;
5302
5313
  /**
5303
5314
  * Abort a running evaluation.
5304
5315
  *
@@ -5641,6 +5652,7 @@ declare class LatticeEvalProject {
5641
5652
  calibrateJudge(): Promise<{
5642
5653
  ok: boolean;
5643
5654
  reason?: string;
5655
+ bypassed?: boolean;
5644
5656
  }>;
5645
5657
  /**
5646
5658
  * Run all suites as a batch and build an in-memory report.
@@ -7552,11 +7564,12 @@ declare function serializePluginMeta(plugin: Plugin): PluginMetaOutput;
7552
7564
  declare const BUILTIN_PLUGINS: Plugin[];
7553
7565
 
7554
7566
  /**
7555
- * Document Learning Plugin
7567
+ * Capability Learning Plugin
7556
7568
  *
7557
- * Provides a document-learner agent and learn-document procedural skill.
7558
- * The agent guides users through turning documents into structured skill
7559
- * systems with evaluations following a supervised learning paradigm.
7569
+ * Provides a document-learner agent and learn-capability procedural skill.
7570
+ * The agent guides users through turning source material (documents, API
7571
+ * specs, conversations, spreadsheets) into structured skill systems with
7572
+ * evaluations — following a supervised learning paradigm.
7560
7573
  */
7561
7574
 
7562
7575
  declare const documentLearningPlugin: Plugin;
package/dist/index.d.ts CHANGED
@@ -5296,9 +5296,20 @@ interface EvalRunService {
5296
5296
  * @param suiteIds - Optional suite filter — only these suites run.
5297
5297
  * Omit to run all suites. Used to keep the validation suite
5298
5298
  * untouched during the fix loop (hold-out isolation).
5299
+ * @param caseIds - Optional case filter — only these cases run (across
5300
+ * the suites selected by `suiteIds`, or all suites if omitted).
5301
+ * Suites with no matching cases are skipped; an error is thrown if
5302
+ * no case matches at all.
5303
+ * @param runConfig - Runtime environment (workspace/project) the eval
5304
+ * executes in. Comes from the CALLER's runConfig, NOT from the eval
5305
+ * project's targetServerConfig. Test cases are environment-agnostic;
5306
+ * the run environment is decided at run time.
5299
5307
  * @returns The newly created run ID
5300
5308
  */
5301
- startRun(tenantId: string, projectId: string, suiteIds?: string[]): Promise<string>;
5309
+ startRun(tenantId: string, projectId: string, suiteIds?: string[], caseIds?: string[], runConfig?: {
5310
+ workspaceId?: string;
5311
+ projectId?: string;
5312
+ }): Promise<string>;
5302
5313
  /**
5303
5314
  * Abort a running evaluation.
5304
5315
  *
@@ -5641,6 +5652,7 @@ declare class LatticeEvalProject {
5641
5652
  calibrateJudge(): Promise<{
5642
5653
  ok: boolean;
5643
5654
  reason?: string;
5655
+ bypassed?: boolean;
5644
5656
  }>;
5645
5657
  /**
5646
5658
  * Run all suites as a batch and build an in-memory report.
@@ -7552,11 +7564,12 @@ declare function serializePluginMeta(plugin: Plugin): PluginMetaOutput;
7552
7564
  declare const BUILTIN_PLUGINS: Plugin[];
7553
7565
 
7554
7566
  /**
7555
- * Document Learning Plugin
7567
+ * Capability Learning Plugin
7556
7568
  *
7557
- * Provides a document-learner agent and learn-document procedural skill.
7558
- * The agent guides users through turning documents into structured skill
7559
- * systems with evaluations following a supervised learning paradigm.
7569
+ * Provides a document-learner agent and learn-capability procedural skill.
7570
+ * The agent guides users through turning source material (documents, API
7571
+ * specs, conversations, spreadsheets) into structured skill systems with
7572
+ * evaluations — following a supervised learning paradigm.
7560
7573
  */
7561
7574
 
7562
7575
  declare const documentLearningPlugin: Plugin;