collection

仓库创建 2026年2月23日最近提交 14 小时前SkillHot 收录 5 小时前
▸ 精选理由

方便在不同技能集合间快速切换,适合使用 SkillNote 的开发者。

▸ 风险提示

会读取/写入本地 ~/.skillnote/host 及项目配置,并与本地 SkillNote 服务通信。

这个 Skill 做什么

在 Codex 项目中切换并激活 SkillNote 技能集合并写入本地配置。

在一个 Codex 项目里选定并激活哪一套 SkillNote 技能集合,并把选择写入本地配置以便后续同步生效。适合想在不同项目或场景间切换技能集、比如切到前端技能或浏览可用集合时使用。特点是按项目保存配置,下次同步时会把对应集合的技能物化到项目里,方便按项目定制技能库。

▸ 展开 SKILL.md 英文原文

Choose which SkillNote skill collection is active for this Codex project. Use when the user says "change collection", "switch skills", "use frontend skills", or "show collections".

Skill 开发管理技能集合同步管理Codex 集成Codex
56
Stars
10
Forks
10
仓库内 Skill
+1
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin-codex/skills/collection/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin-codex/skills/collection/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# SkillNote Collection Manager

Help the user choose which skill collection syncs into this project. The choice is stored in `./.skillnote.json`; the plugin's sync hook materializes that collection's skills into `./.codex/skills/` on the next prompt.

## Resolve the host

```bash
HOST=$(cat ~/.skillnote/host 2>/dev/null | tr -d '[:space:]'); HOST=${HOST:-localhost}
API="http://${HOST}:8082"
```

## Step 1: Fetch collections

```bash
curl -sf "${API}/v1/collections" 2>/dev/null || echo "[]"
```

## Step 2: Present the choices

Codex has no multiple-choice tool, so present a clear numbered list in plain text and ask the user to reply with a number or name. Build the list in this order:

1. **R
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有