Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion src/scenarios/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ import {
ResourcesNotFoundErrorScenario
} from './server/resources';

import { SkillsDirectoryReadScenario } from './server/skills/directory';
import { SkillsIndexScenario } from './server/skills/index';
import { SkillsManifestScenario } from './server/skills/manifest';

import {
PromptsListScenario,
PromptsGetSimpleScenario,
Expand Down Expand Up @@ -151,7 +155,15 @@ const pendingClientScenariosList: ClientScenario[] = [
new TasksDispatchScenario(),
new TasksStatusNotificationsScenario(),
new TasksRequiredTaskErrorScenario(),
new TasksMrtrCompositionScenario()
new TasksMrtrCompositionScenario(),

// SEP-2640 Skills extension. Pending because the everything-server does not
// implement io.modelcontextprotocol/skills; targeted runs point at a
// SEP-2640-conformant fixture via
// `npm start -- server --scenario sep-2640-skills-* --url <fixture>`.
new SkillsDirectoryReadScenario(),
new SkillsIndexScenario(),
new SkillsManifestScenario()
];

// All client scenarios
Expand Down Expand Up @@ -203,6 +215,12 @@ const allClientScenariosList: ClientScenario[] = [
// Resources error handling (SEP-2164)
new ResourcesNotFoundErrorScenario(),

// Skills extension (SEP-2640). Fixture-dependent (needs a SEP-2640 server);
// each scenario SKIPs cleanly when the extension is not declared.
new SkillsDirectoryReadScenario(),
new SkillsIndexScenario(),
new SkillsManifestScenario(),

// Prompts scenarios
new PromptsListScenario(),
new PromptsGetSimpleScenario(),
Expand Down
Loading
Loading