mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
9c0ec8eec0
## What Two unrelated cleanups: ### 1. Move internal-only skills out of the public repo Three staff-only skills lived under `.claude/skills/` and `.agents/skills/`, so `npx skills add CopilotKit/CopilotKit` swept them into end-user installs. This PR deletes them here; they now live in the internal-skills plugin (**CopilotKit/internal-skills#108**): - `copilotkit-demo-parity` - `git-hooks` - `showcase-demo-debugging` ### 2. Recommend a cleaner skills install command The **Build with agents** guide now recommends: ```bash npx skills add CopilotKit/CopilotKit/skills -y ``` - `/skills` subpath installs only the published skills under `skills/` (the repo root also picks up internal skills). - `-y` skips the interactive prompts. A Callout documents the interactive variant and `-g` for a global install.