you-skills
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseYouSkills
YouSkills
This skill provides guidance on YouSkills — a local-only visual manager for AI skills (Codex, Cursor, OpenClaw, custom paths). Use it when the user wants to install, run, troubleshoot, or integrate with YouSkills.
本技能提供YouSkills相关指南——YouSkills是一款纯本地运行的AI技能(Codex、Cursor、OpenClaw、自定义路径)可视化管理器。当用户想要安装、运行、排查问题或是集成YouSkills时可使用本技能。
What YouSkills Does
YouSkills功能
- Local-only: Scans standard skill roots and user paths; strictly read-only, no cloud.
- Web UI: Card/list views, filters, themes, i18n (zh/en).
- Agent-friendly: HTTP API for skills list and manifest.
- 纯本地运行:扫描标准技能根目录和用户自定义路径;完全只读,无云端交互。
- Web UI:支持卡片/列表视图、筛选、多主题、国际化(中/英)。
- Agent友好:提供HTTP API用于获取技能列表和配置清单。
When to Use This Skill
何时使用本技能
- User asks how to install or run you-skills.
- User mentions "local skills", "visualize skills", "view my skills", "you-skills".
- User has issues with (e.g. 404, registry, or "opened a file" instead of browser).
npx you-skills - User wants to integrate an agent with local skills (API usage).
- 用户询问如何安装或运行you-skills时。
- 用户提到“本地技能”、“技能可视化”、“查看我的技能”、“you-skills”时。
- 用户使用遇到问题时(例如404、源相关问题,或是运行后只打开了一个文件而非浏览器)。
npx you-skills - 用户想要将Agent与本地技能集成(API使用)时。
Install & Run
安装与运行
Requires Node.js 18+.
要求Node.js 18及以上版本。
One-off (no global install)
一次性运行(无需全局安装)
bash
npx you-skills --registry=https://registry.npmjs.org/bash
npx you-skills --registry=https://registry.npmjs.org/Global install
全局安装
bash
npm install -g you-skills --registry=https://registry.npmjs.org/
you-skillsNote: If the user's default npm registry is a mirror (e.g. npmmirror), installs may 404. Always use for you-skills.
--registry=https://registry.npmjs.org/bash
npm install -g you-skills --registry=https://registry.npmjs.org/
you-skills注意:如果用户的默认npm源是镜像站(例如npmmirror),安装可能会出现404。安装you-skills时请始终使用参数。
--registry=https://registry.npmjs.org/Port & Environment
端口与环境
- URL:
http://localhost:12434 - Port:
12434 - Env (optional): ,
CODEX_HOMEfor default scan paths.CURSOR_HOME
- 访问地址:
http://localhost:12434 - 端口:
12434 - 可选环境变量:、
CODEX_HOME用于指定默认扫描路径。CURSOR_HOME
Agent / Integration API
Agent / 集成API
- — List skills (default roots or custom
GET /api/skills?root=).root - or
GET /api/skills/manifest— Structured manifest for agents.GET /api/manifest - — Current config (classification_scheme_id, theme_id).
GET /api/config - — Update config.
PATCH /api/config - — Update one skill’s category (writes to
PATCH /api/skills/categoryonly).~/.you-skills/category-cache.json - — List directories (for picking root).
GET /api/browse?path=
- —— 列出技能(默认根目录或自定义
GET /api/skills?root=路径)。root - 或
GET /api/skills/manifest—— 供Agent使用的结构化配置清单。GET /api/manifest - —— 当前配置(classification_scheme_id、theme_id)。
GET /api/config - —— 更新配置。
PATCH /api/config - —— 更新单个技能的分类(仅写入
PATCH /api/skills/category)。~/.you-skills/category-cache.json - —— 列出目录(用于选择根目录)。
GET /api/browse?path=
Common Issues
常见问题
-
404 when installing
User may be using a mirror. Usefor both--registry=https://registry.npmjs.org/andnpm install.npx -
“Only opened a file” after run
Ensure they run the command in a terminal (e.g.oryou-skills), not by double-clickingnpx you-skills. The CLI starts the server and opens the browser.cli.js -
First-time / “real user” test
Clear app data: remove(config + category cache). Use browser incognito or clear localStorage for~/.you-skillsto see consent and initial config again.localhost:12434
-
安装时出现404
用户可能使用了镜像源。执行和npm install命令时都请添加npx参数。--registry=https://registry.npmjs.org/ -
运行后“仅打开了一个文件”
请确保用户是在终端中执行命令(例如或you-skills),而不是双击npx you-skills文件。CLI工具会启动服务并自动打开浏览器。cli.js -
首次使用/“真实用户”测试
清除应用数据:删除目录(配置+分类缓存)。使用浏览器无痕模式,或是清除~/.you-skills的localStorage数据,即可重新看到授权提示和初始配置页面。localhost:12434