# copilot-skills **Repository Path**: renkee/copilot-skills ## Basic Information - **Project Name**: copilot-skills - **Description**: skills 仓库, 开源 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-05-28 - **Last Updated**: 2026-09-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Copilot Skills 自研 Skills 集合,支持 Claude Code / Codex / Cursor / Qoder 一键安装。集中管理、版本控制、快速分发。 ## 目录结构 ``` copilot-skills/ ├── skills/ # Skill 源(SKILL.md + scripts/),版本控制主体 │ ├── bug-killer/ # Bug 全链路分析套件(含 bug-analyzer/bug-fix/context-manager) │ ├── jenkinser/ # Jenkins 自动部署 │ ├── opser/ # Ops 平台部署信息查询 │ └── skills-push/ # Skill 远程部署工具 ├── scripts/install.py # 多 Agent 安装器 └── docs/superpowers/ # 设计文档与实现计划 ``` ## 安装 前置:克隆到任意位置。 ```bash git clone https://gitee.com/renkee/copilot-skills.git ~/anywhere/copilot-skills cd ~/anywhere/copilot-skills ``` ```bash python scripts/install.py --list # 列出可装 skill python scripts/install.py jenkinser # 交互式:选平台 + 级别 python scripts/install.py --all # 全装 python scripts/install.py jenkinser --target cursor --scope project --project ~/code/myapp python scripts/install.py jenkinser --target claude --scope user --link # 开发软链 ``` ### 各平台说明 | 平台 | 用户级 | 项目级 | 说明 | |---|---|---|---| | Claude Code | `~/.claude/skills//` | `<项目>/.claude/skills//` | 两种都支持,安装时询问 | | Codex | `~/.codex/skills//` | `<项目>/.codex/skills//` | 两种都支持;用户级有已知发现 bug,装完重启会话,不生效则用项目级 | | Cursor | — | `<项目>/.cursor/rules/.mdc` | 仅项目级,规则 + 脚本落进项目,可 git 分享 | | Qoder | — | `<项目>/.qoder/rules/.md` | 仅项目级,Model Decision 触发 | 需要凭据的 skill(jenkinser/opser)安装后运行: ```bash python <克隆目录>/skills//scripts/setup.py ``` > Langfuse 查询已改用官方 langfuse skill(用户级安装,不在本仓库);凭据配置:`python -m scripts.credentials setup langfuse`,查询时 `eval "$(python -m scripts.credentials env langfuse)"` 导出后用 `npx langfuse-cli`。 ## 当前 Skills | Skill | 说明 | 触发词 | 状态 | |---|---|---|---| | bug-killer | Bug 全链路分析(集成 langfuse/slser/opser) | 定位 bug、根因分析、排查问题 | 已就绪 | | jenkinser | Jenkins 自动部署 | 部署、deploy、jenkins、构建、发布 | 已就绪 | | opser | Ops 平台部署信息查询 | ops、部署信息、哪个分支、环境 | 已就绪 | | skills-push | Skill 远程部署 | 推送 skill、部署 skill、push skill | 已就绪 | ## 开发者 新增 skill:在 `skills/` 下建目录,放 `SKILL.md`(含 frontmatter `name`/`description`)+ 可选 `scripts/`。`install.py` 递归自动发现,无需注册。敏感文件(`config.json`/`env-config.json`/`.env`/`credentials.json`)安装时自动排除。 部署到分发库:用 `skills-push` skill(会自动引导多平台安装能力并重生成目标库 README)。 ## 依赖 - Python 3.8+ - 各 skill 额外依赖见各自 SKILL.md