Kimi ui agent
AgentSkills library: reusable skills for AI coding agents (AI SDK, Codex, LangGraph, Supabase, Docker, Vitest, pytest, Streamlit, Zod).
npx -y skills add BjornMelin/dev-skills --skill kimi-ui-agentAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Explicit-only Kimi-powered frontend/UI orchestration skill and CLI for repo profiling, design-system context generation, Codex/Kimi Code/Claude Code adapter setup, plan-first git worktree runs, status/reply/finalize lifecycle control, and review artifacts. Use only when the user explicitly invokes `$kimi-ui-agent` or asks to use Kimi UI Agent for frontend/UI audits, redesigns, components, screenshots, implementation planning, or worktree orchestration.
SKILL.md
3.9 KB, 863 tokens by cl100k_base, as published. Nobody here has run it
Kimi UI Agent
Use the bundled Bun CLI script as the deterministic controller for Kimi-powered frontend/UI work. The CLI owns repo scanning, adapter rendering, path validation, project config, run state, and artifact files. The active harness, Codex, Kimi Code, or Claude Code, owns judgment, edits, and final verification.
Start
-
Confirm the user explicitly invoked
$kimi-ui-agentor explicitly asked for Kimi UI Agent. -
Run:
KIMI_UI_AGENT_SKILL_DIR="${KIMI_UI_AGENT_SKILL_DIR:-${CODEX_HOME:-$HOME/.codex}/skills/kimi-ui-agent}" KIMI_UI_AGENT_CLI="${KIMI_UI_AGENT_CLI:-$KIMI_UI_AGENT_SKILL_DIR/scripts/kimi-ui-agent.ts}" bun "$KIMI_UI_AGENT_CLI" --json doctor -
If this repo has not been profiled, run setup in dry-run mode first:
bun "$KIMI_UI_AGENT_CLI" --json setup --dry-run -
Apply setup only when durable project intelligence should be written:
bun "$KIMI_UI_AGENT_CLI" --json setup --apply -
Read
.agents/kimi-ui-agent/project-profile.md,.agents/kimi-ui-agent/frontend-map.md,.agents/kimi-ui-agent/design-system.md,.agents/kimi-ui-agent/verification.md, and.agents/kimi-ui-agent/protected-paths.mdwhen present.
Workflow
- Use
setupfor first-run deterministic repo scanning and lean project context generation. Read setup-profile before changing profile behavior or interpreting profile files. - Use
install --dry-runto render project-local Codex, Kimi Code, and Claude Code adapters. Read install-targets before applying adapter writes. - Use
start --task "<task>" --dry-runto preview a plan-first isolated worktree run. Apply only after checking the intended worktree, branch, and artifact paths. - Use
status,reply,continue,finalize, andabortto manage a run. Read lifecycle before modifying run protocol or interpreting artifacts. - Use
mcponly as a stdio MCP server configured by Codex, Kimi Code, or Claude Code. Read adapter-contracts before changing MCP tool schemas.
Guardrails
- Keep this skill explicit-only. Do not enable implicit invocation for an editing/worktree orchestrator.
- Do not paste secrets or private tokens into Kimi, Claude, Codex, config files, or artifact files.
- Keep install and setup dry-run-first. Every write requires
--apply. - Treat generated project context as editable hints, not source of truth. Verify against current code before acting.
- Keep Kimi launch plan-first by default. Autonomous or yolo modes are opt-in and must be named by the user.
- Hooks are workflow guards, not a sandbox. Use worktree isolation, harness permissions, and path containment as the real safety boundary.
Resources
scripts/kimi-ui-agent.ts: Bun TypeScript CLI entrypoint. Invoke it withbun "$KIMI_UI_AGENT_CLI"after settingKIMI_UI_AGENT_CLIto the installed or repo-local script path; do not assume a globalkimi-ui-agentbinary exists.references/security-and-privacy.md: sanitization, path, env, and artifact safety rules.references/output-contract.md: JSON and Markdown artifact contract.references/kimi-code.md,references/claude-code.md, andreferences/codex.md: harness-specific notes.assets/design-brief.md: optional prompt input for high-stakes UI work.