Agent skill · Data & Analytics

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-ml/ce-modality-extension/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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":

What's inside
Steps it walks through
  1. Core principle (ADR-033 + ADR-001)
  2. Canonical modality taxonomy
  3. pluginmeta for a modality extension
  4. Compatibility policy (ADR-033 §1.4)
  5. Shim module pattern
  6. Monorepo multi-package structure (ADR-033 §7)
  7. CI smoke test (ADR-033 §8)
  8. Release timeline (ADR-033)
  9. Out of Scope
  10. Evaluation Checklist
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going