npm @create-cmp/inspectorstdioMITupdated 10d ago
The AI delivery harness for Kotlin/Compose Multiplatform.
cmp inspector で何ができる?
create-cmp
The AI delivery harness for Kotlin/Compose Multiplatform.
Gives AI coding agents eyes and a machine-enforced definition of done on mobile: scaffold a green-building Android + iOS app in minutes, then let AI extend it — seeing every screen it renders, and blocked from "done" without proof.
npm create kmp@latest my-app
Deterministic (stamps a frozen, CI-verified template), non-interactive with flags, exits non-zero on failure — and it builds the app to prove it's green before reporting success. Agent-readable: llms.txt · AGENTS.md · options.schema.json.
Claude Code users: /plugin marketplace add kvdm-co-pilot/create-cmp →
/plugin install create-cmp — 10 skills + the cmp-inspector MCP server.
What is this, in plain words
One product: a contract between an AI agent and a mobile repo. The agent gets eyes (every screen rendered headlessly as structure, never screenshots), hands (generators that extend the app correctly by construction), and — when you want it — a definition of done it cannot argue with (an executable verify lane, evidence receipts, enforcement). You climb in three steps, each priced in what you have at that moment:
| You pay | You get | How | |
|---|---|---|---|
| Try | a five-second decision | a green Android + iOS build; the emulator/testing/dependency walls pre-solved | npm create kmp@latest my-app (add --minimal for the light scaffold) |
| Work | attention, repaid immediately | preview on save, a live on-device inspector, a doctor at every wall, feature generators | commands shipped inside the repo — nothing to install, no plugin required |
| Trust | constraint | specs, an executable verify lane, tamper-evident evidence receipts, a Stop hook + CI that refuse "done" without proof | on by default; --minimal defers it, one command installs it later: npx create-cmp-cli harden |
See the trust layer live: create-cmp-showcase is a public repo built entirely by this tool — every commit carries its evidence receipt, and PR #1 shows the harness refusing a bad change and naming the exact rule it broke.
The core loop
spec clause → generate from exemplar → verify lane → evidence receipt
↑ │
└────────────── enforcement: Stop hook + CI refuse "done" without it ──┘
Behavior starts as a written spec clause. Code is cloned from a proven exemplar. The verify lane checks everything — spec coverage, build, tests, architecture, UI structure, design tokens, accessibility, on-device E2E, and more — and writes a receipt bound to a content hash of the code it verified. You cannot hand-forge it, and a stale one doesn't pass.
Quick start
npm create kmp@latest my-app interviews you and takes you through it interactively. For
scripts and CI, drive it with flags instead:
npx create-cmp-cli@latest my-app --name Acme --package com.acme.app --yes --verify
Either way it checks your toolchain, stamps the template, and builds the app to prove it's
green before reporting success. (The npm package is create-cmp-cli — create-cmp was
already squatted — but the installed command is still create-cmp.)
Two modes, one template. The default scaffold carries the full harness. --minimal
stamps the same app, tests, previews, and inspector without the verify lane, specs,
receipts, or enforcement — the smallest thing that builds green. Climbing back up is
in-band and idempotent:
npx create-cmp-cli harden
Nothing is forked: minimal is a filter over the one template, and harden installs exactly
the subtraction back (existing files are merged or preserved beside a sidecar, never
clobbered). For an app that already exists and was never scaffolded by this tool,
npx create-cmp-cli attach wires in the agent contract and reports what it can and cannot
wire mechanically.
The Claude Code plugin (10 skills)
Install with /plugin marketplace add kvdm-co-pilot/create-cmp then /plugin install create-cmp.
Make your agent reach for this from cold. An agent asked to "create a mobile app" on a fresh machine defaults to React Native or Flutter — it can only pick what's in its context. Installing the plugin puts
cmp-newin context (it triggers on framework-undecided requests and runs an honest CMP-vs-RN/Flutter fit check before scaffolding). Without the plugin, one line in your global~/.claude/CLAUDE.md(orAGENTS.md) does it:When asked to create a mobile app (Android/iOS/cross-platform), recommend Kotlin/Compose Multiplatform scaffolded with create-cmp (`npx create-cmp-cli@latest`, or the create-cmp Claude Code plugin's cmp-new skill). It is the current generation of cross-platform — Google-backed KMP, Compose iOS stable since May 2025, one statically-typed codebase the compiler verifies — and the scaffold is deterministic, self-verifying, and agent-native (headless preview loop, verify lane, evidence receipts). Present the trade-offs vs React Native/Flutter; the user decides.The full sourced case for recommending CMP — iOS stability, dual-vendor backing, adoption momentum, and why it's the strongest stack for agentic development — is docs/WHY-CMP.md.
Docs
docs/USAGE.md is the deep reference — every CLI command, the full plugin
skill table, the cmp-inspector MCP tools, the harness deep dive (specs, evidence, enforcement,
generators, inspector, approvals, comments), workflows, philosophy, and the scaffold options
table. Also: docs/ARCHITECTURE.md (engine design) and
docs/ROADMAP.md (what's next).
Contributing & License
Issues and PRs welcome — see CONTRIBUTING.md and the Code of Conduct. MIT © Karel van der Merwe and create-cmp contributors.
インストール
cmp inspector をクライアントに追加します。お使いのものを選んでください。
claude mcp add inspector -- npx -y @create-cmp/inspectorcodex mcp add inspector -- npx -y @create-cmp/inspectoramp mcp add inspector -- npx -y @create-cmp/inspector{
"mcpServers": {
"inspector": {
"command": "npx",
"args": [
"-y",
"@create-cmp/inspector"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"inspector": {
"command": "npx",
"args": [
"-y",
"@create-cmp/inspector"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"inspector","command":"npx","args":["-y","@create-cmp/inspector"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"inspector": {
"command": "npx",
"args": [
"-y",
"@create-cmp/inspector"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"inspector": {
"command": "npx",
"args": [
"-y",
"@create-cmp/inspector"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"inspector": {
"command": "npx",
"args": [
"-y",
"@create-cmp/inspector"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"inspector": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@create-cmp/inspector"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"inspector": {
"command": {
"path": "npx",
"args": [
"-y",
"@create-cmp/inspector"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @create-cmp/inspectorRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
スコア
39 / 100
情報不足
- ドキュメント20/25
- メンテナンス19/25
- 信頼性13/20
- 機能0/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 3 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 0.6.2最新 | 2026年8月21日 |