Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

ashbyashby 搜索

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/danielgwilson/ashby-cli --skill ashby

简介

Ashby CLI技能用于处理候选人、申请和招聘流程相关的任务,使用官方API进行操作。

  • 适用于HR系统和招聘流程管理的场景。
  • 优先使用PATH中的ashby二进制文件,否则通过npx调用published包。
  • 使用时需要确认API访问权限和配置文件的正确设置。
  • ashby 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Ashby (agent-first CLI)

Use this skill when the task touches Ashby candidates, applications, stages, or notes.

Important naming detail:

  • npm package name: ashby-cli
  • CLI binary name: ashby

Resolution order:

  1. If ashby is already on $PATH, use it directly.
  2. Otherwise run the published package explicitly with npx -y ashby-cli <args>.

Do not guess alternate package names like @danielgwilson/ashby-cli or npx ashby unless those packages are explicitly published later.

If the binary is missing, install it with npm install -g ashby-cli.

Default stance:

  • Prefer the official API-backed ashby CLI, not browser automation.
  • Prefer --json for machine-readable output.
  • Prefer read-only inspection before mutations.
  • Be conservative with candidate data in logs and chat output.

Default workflow

  • If auth is missing, run ashby auth setup
  • Sanity check auth: ashby doctor --json
  • Inspect key identity: ashby whoami --json
  • Search for a candidate: ashby candidate search --name "Jane Doe" --json
  • Or by email: ashby candidate search --email "jane@example.com" --json
  • Inspect one candidate: ashby candidate get <candidate-id> --json
  • List candidate notes: ashby candidate notes --candidate-id <candidate-id> --json
  • List applications: ashby application list --job-id <job-id> --status Active --json
  • List application history: ashby application history --application-id <application-id> --json
  • List application feedback: ashby application feedback --application-id <application-id> --json
  • Build a synthetic application feed: ashby application feed --application-id <application-id> --json
  • List interview schedules: ashby interview schedules --application-id <application-id> --json
  • List stages: ashby stage list --interview-plan-id <plan-id> --json

For this repo's common Ashby triage flow, the default sequence is:

  1. ashby doctor --json
  2. ashby whoami --json
  3. ashby candidate search... --json
  4. ashby application list --job-id... --json
  5. ashby stage list --interview-plan-id... --json

Common mutations

  • Create a candidate:

- ashby candidate create --name "Jane Doe" --email "jane@example.com" --json

  • Add a note:

- ashby note create --candidate-id <candidate-id> --note "Strong fast-track candidate" --json

  • Create an application:

- ashby application create --candidate-id <candidate-id> --job-id <job-id> --interview-stage-id <stage-id> --json

  • Move an application to a new stage:

- ashby application stage-change --application-id <application-id> --interview-stage-id <stage-id> --json

Auth

Ashby does not expose OAuth for this API. The recommended human path is browser-assisted API key setup.

If ashby doctor --json reports missing auth:

  • Best interactive path: ashby auth setup
  • Best ephemeral path: ASHBY_API_KEY=... ashby doctor --json
  • Saved local config: printf '%s' "$ASHBY_API_KEY" | ashby auth set --stdin
  • If using npx, remember it does not load .env.local automatically. Export ASHBY_API_KEY first, or explicitly source your env file in the shell before invoking npx -y ashby-cli....
  • In this repo specifically, loading .env.local before npx -y ashby-cli... is often the fastest fix.

ashby auth setup opens https://app.ashbyhq.com/admin/api/keys, tells the user which permissions to enable, and then saves + validates the pasted key.

Avoid pasting full keys into logs or chat.

Quick verification

If you are unsure which invocation path works in the current shell:

command -v ashby >/dev/null 2>&1 && ashby doctor --json || npx -y ashby-cli doctor --json

Important constraints

  • This CLI covers candidate/application state well, but it does not replace the full Ashby UI.
  • Do not assume support for general outbound candidate email.
  • Do not assume support for self-serve scheduling links or Ashby automation triggers.
  • Do not assume the public FE job and the secret fast-track job share the same interview plan or stage IDs.
  • Before mutating candidate/application state, confirm ids and current stage.

Mutation checklist

Before creating or moving anything:

  1. Confirm the candidate does not already exist.
  2. Confirm the correct job id.
  3. Confirm the correct interview plan and stage ids for that specific job.
  4. Only then create the candidate, add notes, create the application, or move the stage.

Contract

Stable JSON behavior is documented in docs/CONTRACT_V1.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.75%
按下载量换算25

Claude

28.9%
按下载量换算21

Cursor

17.32%
按下载量换算12

Gemini CLI

8.83%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills