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

agent-friendly-cliAgent friendly CLI 搜索

Agent Skill

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

总安装

188

周安装

8

GitHub Stars

公开资料未说明

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akhy/agent-skills --skill agent-friendly-cli

简介

评估或创建面向 Agent 的 CLI 工具,强调可维护性与安全性。

  • 适用于审计现有命令行工具或构建新 CLI 时的规范检查。
  • 使用时需区分 CLI 与 MCP 选型,优先选择无状态操作场景。
  • 安装命令:npx skills add https://github.com/akhy/agent-skills --skill agent-friendly-cli
  • 建议核对 shell 访问权限与命令数量,避免过度授权。

SKILL.md

Agent-Friendly CLI Skill

Two modes: Create (new CLI) and Audit (existing CLI).


Mode: Audit

When given an existing CLI, evaluate it against each requirement below. For each item report: ✅ pass, ❌ fail, or ⚠️ partial — and give a concrete fix for every non-pass.

Present findings as a prioritized list (blockers first, then improvements).


Mode: Create

When asked to build a new CLI, apply all requirements below from the start. Remind the user of the CLI vs. MCP decision before writing code.


CLI vs. MCP Decision

Choose CLI when:

  • Fewer than ~15 commands
  • Stateless operations
  • Agent has shell access
  • Token budget matters (MCP adds ambient cost in system prompt)

Choose MCP when:

  • 50+ tools behind one server
  • Stateful sessions needed
  • No shell access for agent
  • Multi-agent systems

Requirements

1. Structured Output

  • --json flag outputs machine-readable JSON to stdout
  • In --json mode: all warnings, progress, and human text go to stderr so stdout stays parseable
  • In normal (human) mode: output goes to stdout as usual
  • Keep output flat over nested — easier to parse reliably
  • Consistent field types across all commands: timestamps in ISO 8601, durations in seconds
# Human mode — rich output to stdout
$ mytool list
┌─────┬──────┐
│ ID  │ Name │
└─────┴──────┘

# Machine mode — clean JSON to stdout, any warnings to stderr
$ mytool list --json
[{"id":"abc","name":"foo","created_at":"2025-01-01T00:00:00Z"}]

2. Exit Codes

Agents use $? for control flow. Use meaningful codes:

CodeMeaning
0Success
1General failure
2Usage error (bad arguments)
3Resource not found
4Permission denied
5Conflict (resource already exists)

3. Idempotency

  • Design commands safe to retry: prefer ensure/upsert semantics over create
  • Or support --if-not-exists to turn conflict into a no-op
  • If idempotency isn't possible, return exit code 5 on conflict so agents can handle it

4. Self-Documenting Help

  • --help includes realistic examples for every command
  • Required vs. optional flags are clearly marked
  • --json is documented prominently
  • Use hierarchical noun verb pattern: tool resource action (e.g. docker container ls, not docker-container-ls)

5. Composability & Piping

  • --quiet / -q for bare output (one item per line, no decoration) — pipe-friendly
  • --output json with optional --fields id,name to limit response size
  • Batch operations via --selector or repeated args instead of requiring 50 individual calls

6. Dry-Run & No-Prompt Modes

  • --dry-run produces structured output showing what *would* change — nothing is mutated
  • --yes / --force bypasses all interactive prompts (agents cannot type "y")
  • Detect non-TTY (!isatty(stdin)) and either skip prompts automatically or fail fast with a clear message pointing to --yes

7. Actionable Error Messages

Include in structured error output:

  • error_code / error_type (not just "Error: deployment failed")
  • The failing input echoed back, so agents can construct a fix
  • Suggested next step where applicable
  • Whether the error is transient (safe to retry) or permanent (give up)
{
  "error": "resource_not_found",
  "message": "Project 'staging' does not exist",
  "input": {"project": "staging"},
  "suggestion": "Run 'mytool project list' to see available projects",
  "retryable": false
}

8. Input Hardening

Agents hallucinate in ways humans don't:

  • Validate file paths — reject traversals (../../.ssh)
  • Reject control characters and shell-special characters in IDs/names
  • Validate resource IDs — reject ?, #, %, URL-encoded sequences
  • Guard against double-encoding (%2520%20 → ``)

Checklist (quick reference)

[ ] --json flag outputs to stdout; warnings/progress to stderr only in --json mode
[ ] Meaningful exit codes (0–5 minimum)
[ ] Idempotent operations or clear conflict handling (exit 5)
[ ] --help with realistic examples per command
[ ] --dry-run for destructive/mutating commands
[ ] --yes/--force to bypass all prompts
[ ] Non-TTY detection (auto-skip prompts or fail + hint)
[ ] --quiet/-q for bare pipe-friendly output
[ ] Consistent field names and types across commands
[ ] Noun-verb command hierarchy
[ ] Structured error with error_code, input, suggestion, retryable
[ ] Batch operations for bulk work
[ ] Input validation (paths, IDs, encoding)

Note on Design Philosophy

Most CLIs are subtly hostile to agents. The goal isn't a rewrite — it's layering agent-friendly patterns on top of human-friendly ones. Support both paths in the same binary: rich tables for humans when stdout is a TTY, clean JSON when it isn't.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.68%
按下载量换算25

Claude

29.23%
按下载量换算19

Cursor

21.08%
按下载量换算14

Gemini CLI

8.87%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills