metaxy
This skill should be used when the user asks to "define a feature", "create a BaseFeature class", "track feature versions", "set up metadata store", "field-level lineage", "FieldSpec", "FeatureDep", "run metaxy CLI", "metaxy migrations", or needs guidance on metaxy feature definitions, versioning, metadata stores, CLI commands, or testing patterns.
npx skills add majiayu000/claude-skill-registry --skill metaxy-anam-org-metaxy --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.
# Metaxy Metaxy is a metadata layer for multimodal Data and ML pipelines that manages and tracks feature versions, dependencies, and data lineage across complex computational graphs. ## Core Concepts ### Feature Definitions To define a feature, create a class inheriting from `mx.BaseFeature` with a `FeatureSpec` metaclass argument: ```python import metaxy as mx class Video( mx.BaseFeature, spec=mx.FeatureSpec( key="media/video", id_columns=["video_id"], fields=["audio", "frames"], # Logical fields: describe data contents for versioning ), ): # Metadata columns: stored in the metadata store, tracked by metaxy video_id: str path: str duration: float height: int width: int ``` **Important distinction**: `fields` in `FeatureSpec` are logical field specs that describe the data contents for versioning and lineage tracking. Class attributes are metadata columns stored in the metadata store. They serve different purposes and should not overlap. To add dependencies between features, use the `deps` parameter with `FeatureDep`. To specify field-level lineage (for partial data dependencies), use `FieldSpec` with `FieldDep` or `FieldsMapping`. ### Data Versioning Metaxy automatically tracks sam
- Core Concepts
- Feature Definitions
- Data Versioning
- Metadata Stores
- Feature Graph
- CLI
- Testing
- Examples
- Documentation
mx graph render # Terminal visualization mx push --store dev # Push graph to store mx list features --verbose # List features with dependencies mx graph render # Visualize feature graph mx metadata status --all-features # Check metadata freshness (expensive!) mx mcp # Start MCP server for AI assistants
What does the metaxy skill do?
This skill should be used when the user asks to "define a feature", "create a BaseFeature class", "track feature versions", "set up metadata store", "field-level lineage", "FieldSpec", "FeatureDep", "run metaxy CLI", "metaxy migrations", or needs guidance on metaxy feature definitions, versioning, metadata stores, CLI commands, or testing patterns.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill metaxy-anam-org-metaxy --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.
