Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

skildskild 搜索

Agent Skill

skild 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1

周安装

8

GitHub Stars

104

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skild(skild 搜索)
来源仓库:https://github.com/peiiii/skild
仓库路径:skills/skild
安装命令:
npx skills add https://github.com/peiiii/skild --skill skild
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/peiiii/skild --skill skild

简介

skild 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于信息调研、内容聚合和线索筛选等研究类任务场景。
  • 通过关键词匹配和来源仓库分析,提供候选结果的快速定位与初步筛选能力。
  • 安装命令:npx skills add https://github.com/peiiii/skild --skill skild。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

skild

skild is the package manager for Agent Skills — like npm, but for AI agents.

When to Use

Use this skill when:

  • Installing new capabilities for AI agents
  • Managing installed Skills (list, update, uninstall)
  • Publishing Skills to share with the community
  • Searching or discovering new Skills

Agent Search & Discovery (Skild Index)

When an agent needs to find Skills from the Skild index (registry + linked + auto catalog), use the Registry API:

# Unified discovery (registry + linked skills)
curl "https://registry.skild.sh/discover?q=<query>&limit=20"

# Resolve a short alias (optional)
curl "https://registry.skild.sh/resolve?alias=<alias>"

Notes:

  • Prefer alias if present; it provides the shortest install command.
  • Use the returned install string directly (quotes may appear when a #ref is required).
  • /discover supports pagination and filtering:

- cursor=<nextCursor> for pagination - sort=updated|new|downloads_7d|downloads_30d|stars|stars_30d - skillset=true|false and category=<id> to narrow results

  • If you need to browse linked items only:

- https://registry.skild.sh/linked-items?limit=20

  • CLI skild search uses the same unified index.

Agent Workflow (Recommended)

  1. Search via /discover and shortlist results by description/tags.
  2. Confirm with the user and pick the best match.
  3. Install using the provided install command (or alias).
  4. Manage using skild list / info / update / uninstall / sync.

Prerequisites

Node.js ≥18 is required.

npm install -g skild

Core Commands

Install a Skill

# From GitHub (shorthand)
skild install owner/repo/path/to/skill

# From registry
skild install @publisher/skill-name

# From local directory
skild install ./my-skill

# Aliases (npm-style)
skild add @publisher/skill-name
skild i @publisher/skill-name

# Pick one Skill when source has multiple SKILL.md
skild install owner/repo --skill skills/pdf

List Installed Skills

skild list

Output groups Skills by type: Skillsets, Skills, Dependencies.

Manage Skills

skild info <skill>       # Show details
skild update <skill>     # Update to latest
skild uninstall <skill>  # Remove
skild validate <path>    # Validate structure
skild sync [skills...]   # Sync across platforms

Search Registry

skild search <query>

Browse online: hub.skild.sh

Target Platforms

PlatformOptionGlobal PathProject Path
Claude-t claude (default)~/.claude/skills./.claude/skills
Codex-t codex~/.codex/skills./.codex/skills
Copilot-t copilot~/.github/skills./.github/skills
Antigravity-t antigravity~/.gemini/antigravity/skills./.agent/skills
OpenCode-t opencode~/.config/opencode/skill./.opencode/skill
Cursor-t cursor~/.cursor/skills./.cursor/skills
Windsurf-t windsurf~/.windsurf/skills./.windsurf/skills
Agents-t agents~/.agents/skills./.agents/skills
# Example: Install to Antigravity
skild install @publisher/skill -t antigravity

# Project-level installation
skild install @publisher/skill --local

Defaults & Scope

# Default platform & scope
skild config set defaultPlatform codex
skild config set defaultScope project

# Default repo for push
skild config set push.defaultRepo owner/repo

Skillsets

Skillsets bundle multiple Skills for one-command installation:

skild install @skild/data-analyst-pack
# Installs: csv, pandas, sql-helper...

Publishing Skills

# 1. Create account
skild signup

# 2. Login
skild login

# 3. Publish
skild publish --dir ./my-skill

Push to Git Repos (Registry-free)

Use skild push to sync a Skill into a Git repository and push changes.

# Push to GitHub by owner/repo
skild push owner/repo --dir ./my-skill

# Set a default repo (omit <repo> afterwards)
skild config set push.defaultRepo owner/repo
skild push --dir ./my-skill

# Push to a local repo path
skild push ~/work/skills-repo --local --dir ./my-skill

# Push to a specific subdirectory
skild push owner/repo --dir ./my-skill --path skills/my-skill

# Push to a branch (or append #branch to the repo)
skild push owner/repo#dev --dir ./my-skill

Notes:

  • The target path defaults to skills/<skill-name> derived from SKILL.md.
  • Target path cannot be the repo root.
  • The command clones, commits, and pushes to the remote branch.
  • For owner/repo, skild tries SSH first and falls back to HTTPS if SSH auth fails.
  • skild push <repo> always overrides the default repo.
  • You can also set SKILD_DEFAULT_PUSH_REPO to override the default repo per shell.

Command Reference

For the complete command reference with all options, see commands.md.

Skillsets

For detailed Skillsets guide (bundles of Skills), see skillsets.md.

Troubleshooting

For common issues and solutions, see troubleshooting.md.

More Info

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.97%
按下载量换算23

Claude

30.15%
按下载量换算20

Cursor

19.72%
按下载量换算13

Gemini CLI

9.57%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

未通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/peiiii/skild --skill skild 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills