ce-modality-extension
Extend CE to non-tabular data modalities (vision, audio, timeseries, text) via ADR-033 plugin contracts, modality naming rules, and extension safety guardrails.
npx skills add majiayu000/claude-skill-registry --skill ce-modality-extension --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# CE Modality Extension You are implementing or evaluating a modality extension plugin per ADR-033. Modality extensions keep the CE core dependency-light while enabling non-tabular inputs via separately packaged plugins. --- ## Core principle (ADR-033 + ADR-001) Modality-specific runtime code MUST NOT be added directly to `calibrated_explanations` core. A thin shim module (`calibrated_explanations.vision`, `calibrated_explanations.audio`) is allowed; it must raise `MissingExtensionError` if the extension package is absent. --- ## Canonical modality taxonomy | Canonical name | Aliases (registry-normalised) | |---|---| | `"tabular"` | — (default) | | `"image"` | `"vision"` | | `"audio"` | — | | `"text"` | — | | `"timeseries"` | `"time_series"` | | `"multimodal"` | `"multi-modal"` | | `"x-<vendor>-<name>"` | Custom extension namespace | --- ## `plugin_meta` for a modality extension ```python plugin_meta = { "schema_version": 1, "name": "mypkg.vision.explanation", "version": "0.1.0", "provider": "author/org", "capabilities": ["explanation:factual"], "trusted": False, # ADR-033 required for non-tabular: "data_modalities": ("image",), # normalised canonical name(s) "plugin_api_version":
- Core principle (ADR-033 + ADR-001)
- Canonical modality taxonomy
- pluginmeta for a modality extension
- Compatibility policy (ADR-033 §1.4)
- Shim module pattern
- Monorepo multi-package structure (ADR-033 §7)
- CI smoke test (ADR-033 §8)
- Release timeline (ADR-033)
- Out of Scope
- Evaluation Checklist
What does the ce-modality-extension skill do?
Extend CE to non-tabular data modalities (vision, audio, timeseries, text) via ADR-033 plugin contracts, modality naming rules, and extension safety guardrails.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill ce-modality-extension --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
