Skip to content

Releases: luhfilho/kimi-plugin-cross-platform

v0.2.0

Choose a tag to compare

@luhfilho luhfilho released this 02 Jun 21:40

Added

  • Kimi Code executor via code and implement companion commands.
  • Planner/executor workflow where the host CLI plans and reviews while Kimi
    performs code implementation.
  • Structured code result contract with summary, changed files, verification,
    follow-up, raw output, and failed-result rendering.
  • kimi-code and /kimi:implement support for Claude Code.
  • kimi-programmer agent and kimi-code skill for Codex CLI.
  • Antigravity agy plugin with plugin.json and /kimi-* commands converted
    to skills.
  • Shared installed runtime at ~/.kimi-plugin/kimi-companion.mjs for Codex CLI
    and Antigravity CLI.
  • Functional adapter tests and installer tests for Kimi Code across Claude Code,
    Codex CLI, and Antigravity CLI packaging.

Changed

  • Claude Code installation now targets ~/.claude/skills/kimi, matching the
    current Claude Code plugin autoload layout.
  • Claude Code plugin manifest and hooks now use the current plugin schema.
  • Codex and Antigravity adapter docs now reference executable installed runtime
    paths instead of placeholder path/to/kimi-companion.mjs text.
  • Antigravity installation now registers the plugin through agy plugin install
    and retains compatibility copies under ~/.antigravity.
  • Installer banner, package metadata, plugin manifests, and wire client version
    are now 0.2.0.

Fixed

  • Antigravity CLI detection now recognizes the installed agy binary.
  • Claude Code /kimi:code command registration with Claude Code 2.1.
  • Host-specific uninstall behavior for newly installed Kimi Code and shared
    runtime assets.
  • Markdown table escaping for code verification output.
  • Wire client request handling for Kimi tool-call and approval fallbacks.

Verified

  • npm test passes with 76 tests.
  • Real Kimi CLI code execution fixed a temporary fixture and passed npm test.
  • Codex CLI 0.136.0 delegated implementation to Kimi through the shared
    runtime and verified the diff.
  • Claude Code 2.1.160 executed /kimi:code, delegated to Kimi, and verified
    the diff.
  • Antigravity CLI agy 1.0.0 validates and lists the installed kimi plugin;
    full /kimi-code execution requires an active Antigravity OAuth session.

v0.1.1

Choose a tag to compare

@luhfilho luhfilho released this 02 Jun 15:32

Added

  • Codex adapter regression tests for skill frontmatter and agent role metadata
  • E2E helper classification tests for expected non-zero exits
  • Project guidance and session-consolidation documentation

Changed

  • Test runner now scans only .test. files in directories, avoiding helper fixture execution
  • E2E script now creates an isolated temporary git fixture and validates expected exit statuses
  • CI now includes adapter tests on Node 20 and 22
  • README and testing report were refreshed for the current adapter and test workflow

Fixed

  • Codex CLI adapter startup warnings by adding required skill frontmatter and valid agent role metadata
  • Full test suite hangs caused by executing tests/fixtures/fake-kimi.mjs as a test file
  • False-green E2E results for commands that exited with unexpected status

v.0.1.0

Choose a tag to compare

@luhfilho luhfilho released this 28 May 18:08

What's New

Core Runtime

  • WireClient for Kimi CLI JSON-RPC 2.0 protocol
  • JobControl for state persistence and session management
  • GitContext for diff collection and branch comparison
  • Markdown renderers for all output formats

Host Adapters

  • Claude Code: 7 commands, 1 agent, 3 skills
  • Codex CLI: 4 skills, 1 agent
  • Antigravity CLI: 1 rule, 3 skills, 6 workflows

Tooling

  • Automated installer (scripts/install.mjs)
  • End-to-end test suite with fake-kimi fixture
  • Custom test runner for cross-shell glob compatibility
  • 34 unit and integration tests
  • GitHub Actions CI (Node 20 & 22)

Documentation

  • README, CHANGELOG, CONTRIBUTORS, ARCHITECTURE, TESTING