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.
What YouSkills Does
- 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.
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
npx you-skills(e.g. 404, registry, or "opened a file" instead of browser). - User wants to integrate an agent with local skills (API usage).
Install & Run
Requires Node.js 18+.
One-off (no global install)
npx you-skills --registry=https://registry.npmjs.org/
Global install
npm install -g you-skills --registry=https://registry.npmjs.org/
you-skills
Note: If the user's default npm registry is a mirror (e.g. npmmirror), installs may 404. Always use --registry=https://registry.npmjs.org/ for you-skills.
Port & Environment
- URL:
http://localhost:12434 - Port:
12434 - Env (optional):
CODEX_HOME,CURSOR_HOMEfor default scan paths.
Agent / Integration API
GET /api/skills?root=— List skills (default roots or customroot).GET /api/skills/manifestorGET /api/manifest— Structured manifest for agents.GET /api/config— Current config (classification_scheme_id, theme_id).PATCH /api/config— Update config.PATCH /api/skills/category— Update one skill’s category (writes to~/.you-skills/category-cache.jsononly).GET /api/browse?path=— List directories (for picking root).
Common Issues
-
404 when installing
User may be using a mirror. Use--registry=https://registry.npmjs.org/for bothnpm installandnpx. -
“Only opened a file” after run
Ensure they run the command in a terminal (e.g.you-skillsornpx you-skills), not by double-clickingcli.js. The CLI starts the server and opens the browser. -
First-time / “real user” test
Clear app data: remove~/.you-skills(config + category cache). Use browser incognito or clear localStorage forlocalhost:12434to see consent and initial config again.