mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 04:12:10 +03:00
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:
@@ -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(", ")}`,
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user