一键导入
install-agent-skills
Deploy generated skills to system locations. Use after /generate-agent-skills to install skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Deploy generated skills to system locations. Use after /generate-agent-skills to install skills.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Download documentation from GitHub repos or URLs. Supports manifest-based batch downloads with configurable exclude patterns.
Local Microsoft Agent Framework documentation reference. Use when asked about Microsoft Agent Framework, building AI agents in .NET or Python, MCP servers/clients, durable agents, agent tools, Teams/WebChat adapters, or agent-to-agent communication.
Generate documentation skills for AI agents from downloaded docs. Use after /build-my-context7 to create skills.
Local LangChain AI documentation reference. Use when asked about LangChain, LangGraph, agents, chains, prompts, memory, tools, retrieval, RAG, vector stores, document loaders, or building LLM applications.
Local Next.js documentation reference (canary branch). Use when asked about Next.js features, App Router, Server Components, routing, data fetching, rendering, caching, styling, optimizations, configuration, or Next.js APIs.
Local Prisma documentation reference. Use when asked about Prisma ORM, Prisma Client, Prisma Schema, migrations, database queries, Prisma Accelerate, or Prisma Postgres.
| name | install-agent-skills |
| description | Deploy generated skills to system locations. Use after /generate-agent-skills to install skills. |
Deploy generated skills from dotfiles/ to system locations.
/install-agent-skills # Install ALL skills
/install-agent-skills zod-docs # Install only zod-docs skill
Run after /generate-agent-skills.
The install script:
SKILL.md from dotfiles/<agent>/skills/<skill>/references/ pointing to dotfiles/shared/<skill>/This keeps the repo clean (no symlinks) while installed skills link to shared docs.
Check if $ARGUMENTS is provided:
If installing a specific skill:
dotfiles/shared/{argument}/ existsdotfiles/claude/skills/{argument}/ exists/generate-agent-skills {argument} firstIf installing all skills:
dotfiles/shared/ and dotfiles/*/skills/ contain skills/generate-agent-skills firstUse the install.sh script:
For a specific skill:
SKILL="{argument}"
# Claude Code
.claude/skills/install-agent-skills/scripts/install.sh "dotfiles/claude/skills/$SKILL" ~/.claude/skills
# Codex CLI
.claude/skills/install-agent-skills/scripts/install.sh "dotfiles/codex/skills/$SKILL" ~/.codex/skills
# OpenCode
.claude/skills/install-agent-skills/scripts/install.sh "dotfiles/opencode/skills/$SKILL" ~/.config/opencode/skills
For all skills:
# Claude Code skills -> ~/.claude/skills/
for skill in dotfiles/claude/skills/*/; do
.claude/skills/install-agent-skills/scripts/install.sh "$skill" ~/.claude/skills
done
# Codex skills -> ~/.codex/skills/
for skill in dotfiles/codex/skills/*/; do
.claude/skills/install-agent-skills/scripts/install.sh "$skill" ~/.codex/skills
done
# OpenCode skills -> ~/.config/opencode/skills/
for skill in dotfiles/opencode/skills/*/; do
.claude/skills/install-agent-skills/scripts/install.sh "$skill" ~/.config/opencode/skills
done
Summarize skills installed per agent.
# Default: symlink mode (references/ links to shared docs)
.claude/skills/install-agent-skills/scripts/install.sh dotfiles/claude/skills/codex-docs ~/.claude/skills
# Copy mode: copies docs, creates standalone skill
.claude/skills/install-agent-skills/scripts/install.sh dotfiles/claude/skills/codex-docs ~/.claude/skills --copy
After installation, each skill in ~/.claude/skills/ (or equivalent) contains:
SKILL.md - Agent-specific skill definitionreferences/ - Symlink to <repo>/dotfiles/shared/<docs>/Updates to dotfiles/shared/ are immediately reflected in all installed skills.