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.
This commit is contained in:
diegosouzapw
2026-05-28 14:24:02 -03:00
parent 9ec7e4bebf
commit 16c5dfecba

View File

@@ -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(", ")}`,
);
});