mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-08-06 15:26:26 +00:00
Some checks are pending
CI / lint (push) Waiting to run
CI / typecheck (push) Waiting to run
CI / build (push) Waiting to run
CI / test (1) (push) Waiting to run
CI / test (2) (push) Waiting to run
CI / test (3) (push) Waiting to run
CI / test (4) (push) Waiting to run
Nix Build / Check flake.nix workspace sync (push) Waiting to run
Nix Build / nix build .#kimi-code (push) Blocked by required conditions
Release / Release (push) Waiting to run
Release / Deploy docs (push) Blocked by required conditions
Release / Native release artifact (push) Blocked by required conditions
Release / Publish native release assets (push) Blocked by required conditions
CI / test (5) (push) Waiting to run
CI / test-pi-tui (push) Waiting to run
CI / test-windows (push) Waiting to run
* feat(cli): default to agent-core-v2 engine with KIMI_CODE_LEGACY_FLAG opt-out - invert the engine gate: isKimiV2Enabled() now returns true unless KIMI_CODE_LEGACY_FLAG is truthy; KIMI_CODE_EXPERIMENTAL_FLAG no longer selects the engine - replace the experimental `kimi acp-v2` command with the native v2 implementation as the default `kimi acp`; the legacy acp-adapter path remains under the legacy flag - drop the acp-v2 experimental flag from the registry - rename the dev:cli:v2 script to dev:cli:legacy - update en/zh docs for the new default engine and the legacy flag * feat(cli): route export and provider through the engine gate - select the harness via isKimiV2Enabled(): agent-core-v2 by default, the legacy harness when KIMI_CODE_LEGACY_FLAG is truthy - close the harness after each one-shot command so the v2 engine's watchers do not keep the process alive - document both commands in the KIMI_CODE_LEGACY_FLAG env-var entry
66 lines
2.8 KiB
JSON
66 lines
2.8 KiB
JSON
{
|
|
"name": "@moonshot-ai/monorepo",
|
|
"version": "0.1.1",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"postinstall": "node scripts/fix-node-pty-perms.mjs",
|
|
"build": "pnpm -r run build",
|
|
"build:packages": "pnpm -r --filter './packages/*' run build",
|
|
"dev:cli": "pnpm -C apps/kimi-code run dev",
|
|
"dev:cli:legacy": "KIMI_CODE_LEGACY_FLAG=1 pnpm -C apps/kimi-code run dev",
|
|
"dev:cli:marketplace": "KIMI_CODE_DEV_MARKETPLACE_URL=https://code.kimi.com/kimi-code/plugins/marketplace.json pnpm -C apps/kimi-code run dev",
|
|
"dev:server": "pnpm -C apps/kimi-code run dev:server",
|
|
"dev:kap-server": "pnpm -C apps/kimi-code run dev:kap-server",
|
|
"dev:v2": "pnpm -C apps/kimi-code run dev:kap-server:multi",
|
|
"build:plugin-marketplace": "pnpm -C apps/kimi-code run build:plugin-marketplace",
|
|
"vis": "pnpm -C apps/vis run dev",
|
|
"dev:docs": "pnpm -C docs install --ignore-workspace && pnpm -C docs run dev",
|
|
"typecheck": "pnpm run build:packages && pnpm -r --filter './packages/*' run typecheck && pnpm --filter @moonshot-ai/kimi-code run typecheck && pnpm --filter kimi-code run typecheck && pnpm --filter @moonshot-ai/vis-server run typecheck && pnpm --filter @moonshot-ai/vis-web run typecheck",
|
|
"lint": "oxlint --type-aware",
|
|
"lint:fix": "pnpm run lint --fix",
|
|
"lint:pkg": "pnpm --filter @moonshot-ai/kimi-code exec publint && npm_config_cache=${TMPDIR:-/tmp}/kimi-code-npm-cache pnpm --filter @moonshot-ai/kimi-code exec attw --pack . --profile node16",
|
|
"sherif": "sherif -i @agentclientprotocol/sdk",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"clean": "pnpm -r run clean",
|
|
"changeset": "changeset",
|
|
"version": "changeset version",
|
|
"version:release": "changeset version",
|
|
"publish": "pnpm run typecheck && pnpm run lint && pnpm run sherif && pnpm run test && pnpm run build && pnpm run lint:pkg && changeset publish",
|
|
"prepare": "simple-git-hooks"
|
|
},
|
|
"devDependencies": {
|
|
"@arethetypeswrong/cli": "0.18.2",
|
|
"@changesets/changelog-github": "0.7.0",
|
|
"@changesets/cli": "2.30.0",
|
|
"@microsoft/api-extractor": "7.58.7",
|
|
"@types/node": "^22.15.3",
|
|
"@vitest/coverage-v8": "4.1.4",
|
|
"lint-staged": "16.4.0",
|
|
"oxlint": "1.59.0",
|
|
"oxlint-tsgolint": "0.20.0",
|
|
"pkg-pr-new": "0.0.75",
|
|
"publint": "0.3.18",
|
|
"sherif": "1.11.1",
|
|
"simple-git-hooks": "2.13.1",
|
|
"tsdown": "0.22.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "6.0.2",
|
|
"vitest": "4.1.4"
|
|
},
|
|
"simple-git-hooks": {
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,mjs,cjs,mts,cts}": [
|
|
"oxlint --fix --quiet",
|
|
"oxlint --type-aware --quiet"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=24.15.0"
|
|
},
|
|
"packageManager": "pnpm@10.33.0"
|
|
}
|