kimi-plugin-cc
Kimi for Claude Code
File Explorer
- marketplace.json
- ci.yml
- crank-loop-blueprint.md
- getting-started.md
- plugin.json
- kimi-delegate.md
- crank-batch.md
- crank-next.md
- kimi:cancel.md
- kimi:challenge.md
- kimi:crank.md
- kimi:explore.md
- kimi:plan.md
- kimi:result.md
- kimi:review.md
- kimi:setup.md
- kimi:status.md
- kimi:update.md
- hooks.json
- challenge.md
- explore.md
- review-gate.md
- review.md
- coder.md
- explore.md
- review-output.schema.json
- codex-bridge.mjs
- commands.mjs
- commit.mjs
- context.mjs
- context7.mjs
- docs.mjs
- git.mjs
- glob.mjs
- job-control.mjs
- kill.mjs
- kimi-cli.mjs
- kimi.mjs
- monitor.mjs
- notify.mjs
- orchestrate.mjs
- patterns.mjs
- preflight.mjs
- render.mjs
- research.mjs
- review-gate.mjs
- roles.mjs
- state.mjs
- telemetry.mjs
- validate-api.mjs
- validate-review.mjs
- warn.mjs
- workspace.mjs
- broker.mjs
- review-gate.mjs
- SKILL.md
- SKILL.md
- CHANGELOG.md
- LICENSE
- NOTICE
- challenge.md
- explore.md
- plan.md
- review.md
- run.md
- SKILL.md
- release-lib.mjs
- lint.mjs
- release.mjs
- README.md
- T-01-new-cli-spawn-compat.md
- T-02-agent-layer-without-agent-file.md
- T-03-setup-overhaul.md
- T-04-native-resume.md
- T-05-real-telemetry.md
- T-06-k3-surfacing.md
- T-07-hooks-and-ops.md
- T-08-kimi-code-plugin.md
- T-09-bugfix-sweep.md
- T-10-docs-and-hygiene.md
- T-11-test-coverage.md
- T-12-monitor-changetracking.md
- T-13-cli-version-floor.md
- T-14-review-schema-validation.md
- T-15-deep-research.md
- T-16-context7-docs-provider.md
- T-17-task-status-autotransition.md
- T-18-max-cost-watchdog.md
- T-19-broker-prune.md
- T-20-effort-defaults.md
- T-21-external-docs-crawl.md
- real-session.jsonl
- test-fixture.md
- arg-validation.test.mjs
- background-lifecycle.test.mjs
- broker.test.mjs
- bugfix-sweep.test.mjs
- commit.test.mjs
- context7.test.mjs
- deep-research.test.mjs
- doctor.test.mjs
- exit-codes.test.mjs
- external-docs.test.mjs
- git.test.mjs
- glob.test.mjs
- helpers.mjs
- hooks-ops.test.mjs
- integration.test.mjs
- job-control.test.mjs
- kimi-cli.test.mjs
- kimi-code-plugin.test.mjs
- kimi-cwd.test.mjs
- max-cost.test.mjs
- monitor.test.mjs
- orchestrate.test.mjs
- prune.test.mjs
- release.test.mjs
- render.test.mjs
- roles.test.mjs
- smoke.sh
- state.test.mjs
- task-status.test.mjs
- telemetry-real.test.mjs
- telemetry-wire.test.mjs
- timeout.test.mjs
- validate-review.test.mjs
- version-sync.test.mjs
- workspace.test.mjs
- .env.example
- .gitignore
- CHANGELOG.md
- CLAUDE.md
- CONTRIBUTING.md
- kimi.plugin.json
- LICENSE
- NOTICE
- package-lock.json
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
