skillnote
仓库创建 2026年2月23日最近提交 14 小时前SkillHot 收录 5 小时前
▸ 精选理由
快速查看本地与 SkillNote 同步状态,便于运维和管理技能库。
▸ 风险提示
会读取本地 ~/.skillnote/host 并访问 SkillNote 本地/远程服务端点。
这个 Skill 做什么
展示当前项目的活跃 SkillNote 集合、已同步技能及管理入口。
一眼看清当前项目在用的 SkillNote 集合、已同步进项目的技能数量和管理入口,方便确认哪些技能在生效、哪里可以编辑或同步。用在你想查“我有哪些技能”“哪个 collection 在用”或需要跳到 SkillNote 仪表盘时。它会把状态、同步信息和本地访问点整理好,省去四处找配置的麻烦。
▸ 展开 SKILL.md 英文原文
Show the active SkillNote collection and the skills synced into this project for Codex. Use when the user says "skillnote", "what skills do I have", "show my collection", or wants a SkillNote status/dashboard.
56
Stars
10
Forks
10
仓库内 Skill
+1
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin-codex/skills/skillnote/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin-codex/skills/skillnote/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# SkillNote Dashboard
Show the user their SkillNote status for this project: which collection is active, how many skills synced, and where to manage them.
## Resolve the host
```bash
HOST=$(cat ~/.skillnote/host 2>/dev/null | tr -d '[:space:]'); HOST=${HOST:-localhost}
API="http://${HOST}:8082"; WEB="http://${HOST}:3000"
```
## Read the active collection
The active collection for this project is in `./.skillnote.json` (a `{"collections": [...]}` file written by the collection picker). Synced skills live in `./.codex/skills/skillnote-*/`.
```bash
cat ./.skillnote.json 2>/dev/null || echo '{"collections": []}'
ls -d ./.codex/skills/skillnote-* 2>/dev/null | sed 's#.*/skillnote-##' | sortvia SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有