feat: add MiMo Code platform support#1496
Open
matintohidi wants to merge 4 commits into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR adds MiMo Code as a supported Graphify platform, wiring it into skill generation (split bundle + references), the CLI installer registry, and the README so users can install Graphify for MiMo via graphify install --platform mimo.
Changes:
- Added a new
platform.mimoentry to the skillgen platform registry and generation baselines. - Introduced the generated MiMo skill bundle (
graphify/skill-mimo.md) plus agraphify/skills/mimo/references/sidecar, with expected snapshots for drift detection. - Updated the CLI platform registry and README to expose MiMo as a supported platform.
Reviewed changes
Copilot reviewed 22 out of 22 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tools/skillgen/platforms.toml | Registers the new mimo platform as a split bundle with agent-tool-disk dispatch and verbose extraction. |
| tools/skillgen/gen.py | Adds a v8 baseline reference mapping for mimo generation. |
| graphify/main.py | Adds mimo to _PLATFORM_CONFIG and project install/uninstall routing. |
| README.md | Documents MiMo as a supported platform and adds install commands. |
| graphify/skill-mimo.md | Generated MiMo SKILL.md bundle content. |
| graphify/skills/mimo/references/add-watch.md | MiMo references sidecar: add/watch flow. |
| graphify/skills/mimo/references/exports.md | MiMo references sidecar: export/benchmark flows. |
| graphify/skills/mimo/references/extraction-spec.md | MiMo references sidecar: semantic extraction subagent spec. |
| graphify/skills/mimo/references/github-and-merge.md | MiMo references sidecar: GitHub clone + merge flows. |
| graphify/skills/mimo/references/hooks.md | MiMo references sidecar: hook + CLAUDE.md integration. |
| graphify/skills/mimo/references/query.md | MiMo references sidecar: query/path/explain flows. |
| graphify/skills/mimo/references/transcribe.md | MiMo references sidecar: transcription flow for video/audio. |
| graphify/skills/mimo/references/update.md | MiMo references sidecar: incremental update + cluster-only flow. |
| tools/skillgen/expected/graphify__skill-mimo.md | Expected snapshot for MiMo SKILL.md (drift detection). |
| tools/skillgen/expected/graphify__skills__mimo__references__add-watch.md | Expected snapshot for MiMo references/add-watch.md. |
| tools/skillgen/expected/graphify__skills__mimo__references__exports.md | Expected snapshot for MiMo references/exports.md. |
| tools/skillgen/expected/graphify__skills__mimo__references__extraction-spec.md | Expected snapshot for MiMo references/extraction-spec.md. |
| tools/skillgen/expected/graphify__skills__mimo__references__github-and-merge.md | Expected snapshot for MiMo references/github-and-merge.md. |
| tools/skillgen/expected/graphify__skills__mimo__references__hooks.md | Expected snapshot for MiMo references/hooks.md. |
| tools/skillgen/expected/graphify__skills__mimo__references__query.md | Expected snapshot for MiMo references/query.md. |
| tools/skillgen/expected/graphify__skills__mimo__references__transcribe.md | Expected snapshot for MiMo references/transcribe.md. |
| tools/skillgen/expected/graphify__skills__mimo__references__update.md | Expected snapshot for MiMo references/update.md. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Add dedicated elif cmd == "mimo" dispatch block to handle graphify mimo install and graphify mimo uninstall, matching the pattern used by pi, devin, and other platform commands. Previously, running graphify mimo install would fall through all elif checks and show generic help. Now it properly: - Installs skill to ~/.mimo/skills/graphify/ (user scope) - Installs to .mimo/skills/graphify/ with --project flag - Writes AGENTS.md section via _project_install - Supports uninstall with full cleanup - Appears in graphify --help output
…di/graphify into feat/add-mimo-platform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
Install
graphify install --platform mimo
Test plan
Closes #1495