Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/skill-group-selector.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@moonshot-ai/kimi-code": minor
---

Add hierarchical group navigation selector for the /skill command.
51 changes: 51 additions & 0 deletions .github/workflows/fork-update-rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Fork Update & Automated Rebase

on:
schedule:
# Run daily at midnight
- cron: '0 0 * * *'
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
sync-and-rebase:
name: Sync Fork with Upstream and Rebase PRs
runs-on: ubuntu-latest

steps:
- name: Checkout Fork Main
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Configure Git User
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"

- name: Fetch Upstream
run: |
git remote add upstream https://github.com/MoonshotAI/kimi-code.git || true
git fetch upstream main

- name: Sync Main Branch
run: |
git checkout main
git reset --hard upstream/main
git push origin main --force

- name: Setup Node & pnpm
uses: pnpm/action-setup@v6

- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: pnpm

- name: Install & Verify Build
run: |
pnpm install --no-frozen-lockfile
pnpm run build
51 changes: 51 additions & 0 deletions .github/workflows/pr-conflict-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: PR Conflict & Sanity Check

on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:

permissions:
contents: read

jobs:
check-conflict-markers:
name: Check Conflict Markers & Code Health
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Check for Unresolved Conflict Markers
run: |
echo "Searching for unresolved conflict markers (<<<<<<<, =======, >>>>>>>)..."
FOUND=$(grep -rnE "^(<<<<<<<|=======|>>>>>>>)" --exclude-dir={node_modules,.git,dist} . || true)
if [ -n "$FOUND" ]; then
echo "::error::Unresolved conflict markers found in files:"
echo "$FOUND"
exit 1
else
echo "No conflict markers found."
fi

- name: Check for Accidental Root Configuration Files
run: |
if [ -f "mcp.json" ]; then
echo "::error::Accidental mcp.json found in repository root!"
exit 1
fi

- name: Setup Node & pnpm
uses: pnpm/action-setup@v6

- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: pnpm

- name: Install Dependencies
run: pnpm install --frozen-lockfile

- name: Typecheck & Build Sanity Check
run: pnpm run build
31 changes: 31 additions & 0 deletions .kimi-code/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"mcpServers": {
"mcpjungle-localfiles-rag": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://127.0.0.1:8090/v0/groups/localfiles-rag/mcp",
"--allow-http"
]
},
"mcpjungle-coding-architecture": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://127.0.0.1:8090/v0/groups/coding-architecture/mcp",
"--allow-http"
]
},
"mcpjungle-docker-devops": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://127.0.0.1:8090/v0/groups/docker-devops/mcp",
"--allow-http"
]
}
}
}
22 changes: 22 additions & 0 deletions apps/kimi-code/dist-web/assets/CodeBlockNode-BZ3nIcUJ.js

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions apps/kimi-code/dist-web/assets/DesignSystemView-BnyYC1m0.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions apps/kimi-code/dist-web/assets/Tooltip-CsrTX-eT.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const e={};export{e as default};
Loading