用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/diegosouzapw/awesome-omni-skill --skill plugin-marketplace命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Token-efficient tracking for AI orchestration. CLI-first for status updates (~50 tokens), agent fallback for complex ops (~1KB). Use when: updating task status, querying blockers, creating progress files, validating phases.
AshAi extension guidelines for integrating AI capabilities with Ash Framework. Use when implementing vectorization/embeddings, exposing Ash actions as LLM tools, creating prompt-backed actions, or setting up MCP servers. Covers semantic search, LangChain integration, and structured outputs.
This skill should be used when solving hard questions, complex architectural problems, or debugging issues that benefit from GPT-5 Pro or GPT-5.1 thinking models with large file context. Use when standard Claude analysis needs deeper reasoning or extended context windows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | plugin-marketplace |
| description | Plugin marketplace — add, remove, list, and search skills from GitHub repositories |
Manage GGV3 skills sourced from GitHub repositories and npm packages.
/plugin marketplace add <owner>/<repo> # Install a skill from GitHub
/plugin marketplace remove <skill-name> # Remove an installed skill
/plugin marketplace list # List installed skills
/plugin marketplace search <query> # Search GitHub for skills
/plugin marketplace add <owner>/<repo>Install a skill or tool from a GitHub repository into .agent/skills/.
Determine source type from the identifier:
| Format | Source | Example |
|---|---|---|
owner/repo | GitHub repository | anthropics/claude-code |
owner/repo#skill-name | Subfolder of a monorepo | google/skills#web-perf |
npm:package-name | npm global package | npm:@anthropic-ai/claude-code |
// turbo
gh repo view <owner>/<repo> --json name,description,url,defaultBranchRef 2>/dev/null || echo "REPO_NOT_FOUND"
If REPO_NOT_FOUND, check if it's an npm package instead:
npm view <package-name> name description version 2>/dev/null || echo "PKG_NOT_FOUND"
Type A — CLI Tool (npm package):
If the source is an npm package or the repo's package.json has a bin field:
npm install -g <package-name>
Then create a thin skill wrapper:
.agent/skills/<tool-name>/
├── SKILL.md # Documents the CLI, trigger patterns, usage
Type B — Skill Repository (has SKILL.md):
If the repo contains a SKILL.md at root or in a skill subdirectory:
# Clone to temp, extract skill files
git clone --depth 1 https://github.com/<owner>/<repo>.git /tmp/plugin-install-<repo>
cp -r /tmp/plugin-install-<repo>/ .agent/skills/<skill-name>/
rm -rf /tmp/plugin-install-<repo>
Type C — Reference Repository (no SKILL.md, no bin): Create a new skill based on the repo's README and source code:
Every installed plugin MUST have a valid SKILL.md with:
---
name: <skill-name>
version: <semver or repo SHA>
source: <owner>/<repo> OR npm:<package>
installed: <ISO-8601 timestamp>
description: <one-line description>
---
Followed by:
A) Add to .agent/rules/skill-auto-invoke.md:
| <skill-name> | .agent/skills/<skill-name>/SKILL.md | <trigger keywords> |
B) Add to CLAUDE.md <skill_registry> section:
| <skill-name> | .agent/skills/<skill-name>/SKILL.md | <trigger keywords> |
Note:
AGENTS.md,GEMINI.md, andcodex.mdare symlinks toCLAUDE.md— updating one updates all.
# For CLI tools — verify the binary exists
which <tool-name> && <tool-name> --version
# For skills — verify SKILL.md exists and is valid
cat .agent/skills/<skill-name>/SKILL.md | head -20
Output a summary:
✅ Plugin installed: <skill-name>
Source: <owner>/<repo> (or npm:<package>)
Type: CLI Tool | Skill | Reference
Location: .agent/skills/<skill-name>/
Triggers: <comma-separated trigger keywords>
/plugin marketplace remove <skill-name>ls .agent/skills/<skill-name>/SKILL.md 2>/dev/null || echo "SKILL_NOT_FOUND"
Read the SKILL.md frontmatter for a source: npm:* entry. If found:
npm uninstall -g <package-name>
rm -rf .agent/skills/<skill-name>
Remove the skill's row from:
.agent/rules/skill-auto-invoke.mdCLAUDE.md <skill_registry> section🗑️ Plugin removed: <skill-name>
/plugin marketplace list// turbo
for skill in .agent/skills/*/SKILL.md; do
name=$(basename $(dirname "$skill"))
source=$(grep -m1 '^source:' "$skill" 2>/dev/null | sed 's/source: *//')
version=$(grep -m1 '^version:' "$skill" 2>/dev/null | sed 's/version: *//')
echo "$name | $source | $version"
done
| Skill | Source | Version |
|---|---|---|
| ... | ... | ... |
/plugin marketplace search <query>Use the GitHub MCP search_repositories tool:
query: "<query> topic:agent-skill OR topic:claude-skill OR topic:mcp-tool"
Or search for code patterns:
query: "SKILL.md name: <query>"
| Repository | Stars | Description |
|---|---|---|
| owner/repo | ⭐ N | ... |
Ask: "Would you like to install any of these? Use /plugin marketplace add <owner>/<repo>"
| Plugin | Source | Type | Description |
|---|---|---|---|
| claude-code | npm:@anthropic-ai/claude-code | CLI | Anthropic's agentic coding CLI |
.agent/skills/<name>/source: field tracks provenance for updatesinstalled: timestamp to track when a plugin was added