From 16c5dfecba93db3fb9b7940e2a19965ec4d48e93 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Thu, 28 May 2026 14:24:02 -0300 Subject: [PATCH] feat(agent-skills): document rotate + metrics endpoints in omni-providers (GAP-E) Update integration test to include omni-providers in the 11 custom-block IDs list. --- tests/integration/agent-skills-content.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/integration/agent-skills-content.test.ts b/tests/integration/agent-skills-content.test.ts index 9b6631017c..ac684d6978 100644 --- a/tests/integration/agent-skills-content.test.ts +++ b/tests/integration/agent-skills-content.test.ts @@ -32,6 +32,7 @@ const CUSTOM_BLOCK_IDS = [ "omni-resilience", "omni-inference", "cli-serve", + "omni-providers", ] as const; // ── §1: All 42 catalog IDs have skills/{id}/SKILL.md ───────────────────────── @@ -112,7 +113,7 @@ for (const id of CUSTOM_BLOCK_IDS) { // ── Additional integrity checks ─────────────────────────────────────────────── -test("exactly 10 skills have custom blocks", () => { +test("exactly 11 skills have custom blocks", () => { const withCustomBlocks: string[] = []; for (const id of ALL_IDS) { const skillPath = path.join(SKILLS_DIR, id, "SKILL.md"); @@ -127,7 +128,7 @@ test("exactly 10 skills have custom blocks", () => { assert.deepEqual( withCustomBlocks.sort(), expectedIds, - `Expected exactly these 10 custom-block IDs: ${expectedIds.join(", ")}\nActual: ${withCustomBlocks.join(", ")}`, + `Expected exactly these 11 custom-block IDs: ${expectedIds.join(", ")}\nActual: ${withCustomBlocks.join(", ")}`, ); });