pp-recipe-goat
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseRecipe Goat — Printing Press CLI
Recipe Goat — Printing Press CLI工具
Prerequisites: Install the CLI
前提条件:安装CLI
This skill drives the binary. You must verify the CLI is installed before invoking any command from this skill. If it is missing, install it first:
recipe-goat-pp-cli- Install via the Printing Press installer:
bash
npx -y @mvanhorn/printing-press install recipe-goat --cli-only - Verify:
recipe-goat-pp-cli --version - Ensure (or
$GOPATH/bin) is on$HOME/go/bin.$PATH
If the install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.23+):
npxbash
go install github.com/mvanhorn/printing-press-library/library/food-and-dining/recipe-goat/cmd/recipe-goat-pp-cli@latestIf reports "command not found" after install, the install step did not put the binary on . Do not proceed with skill commands until verification succeeds.
--version$PATH本Skill驱动二进制文件。**在调用本Skill的任何命令之前,您必须确认CLI已安装。**如果未安装,请先执行以下步骤:
recipe-goat-pp-cli- 通过Printing Press安装器安装:
bash
npx -y @mvanhorn/printing-press install recipe-goat --cli-only - 验证安装:执行
recipe-goat-pp-cli --version - 确保(或
$GOPATH/bin)已添加到$HOME/go/bin环境变量中。$PATH
如果安装失败(无Node环境、离线等情况),可改用Go直接安装(要求Go 1.23及以上版本):
npxbash
go install github.com/mvanhorn/printing-press-library/library/food-and-dining/recipe-goat/cmd/recipe-goat-pp-cli@latest如果安装后执行提示“command not found”,说明安装程序未将二进制文件添加到中。请在验证成功前不要执行Skill相关命令。
--version$PATHWhen Not to Use This CLI
本CLI的禁用场景
Do not activate this CLI for requests that require creating, updating, deleting, publishing, commenting, upvoting, inviting, ordering, sending messages, booking, purchasing, or changing remote state. This printed CLI exposes read-only commands for inspection, export, sync, and analysis.
请勿针对以下请求激活本CLI:创建、更新、删除、发布、评论、点赞、邀请、下单、发送消息、预订、购买或更改远程状态。本CLI仅提供用于查看、导出、同步和分析的只读命令。
HTTP Transport
HTTP传输
This CLI uses Chrome-compatible HTTP transport for browser-facing endpoints. It does not require a resident browser process for normal API calls.
本CLI采用兼容Chrome的HTTP传输方式访问面向浏览器的端点,正常API调用无需常驻浏览器进程。
Command Reference
命令参考
foods — USDA FoodData Central — ingredient nutrition lookups
- — Get a specific food by FDC ID
recipe-goat-pp-cli foods get - — List foods paginated
recipe-goat-pp-cli foods list - — Search USDA FoodData Central for foods matching a query
recipe-goat-pp-cli foods search
foods — USDA FoodData Central — 食材营养信息查询
- — 通过FDC ID获取特定食材信息
recipe-goat-pp-cli foods get - — 分页列出食材信息
recipe-goat-pp-cli foods list - — 在USDA FoodData Central中搜索匹配查询条件的食材
recipe-goat-pp-cli foods search
Finding the right command
查找合适的命令
When you know what you want to do but not which command does it, ask the CLI directly:
bash
recipe-goat-pp-cli which "<capability in your own words>"which02--help当您知道要执行的操作但不确定对应命令时,可直接询问CLI:
bash
recipe-goat-pp-cli which "<用您自己的话描述功能>"which02--helpAuth Setup
认证设置
Set your API key via environment variable:
bash
export USDA_FDC_API_KEY="<your-key>"Or persist it in .
~/.config/recipe-goat-pp-cli/config.tomlRun to verify setup.
recipe-goat-pp-cli doctor通过环境变量设置API密钥:
bash
export USDA_FDC_API_KEY="<您的密钥>"也可将密钥持久化存储在文件中。
~/.config/recipe-goat-pp-cli/config.toml执行验证设置是否正确。
recipe-goat-pp-cli doctorAgent Mode
Agent模式
Add to any command. Expands to: .
--agent--json --compact --no-input --no-color --yes-
Pipeable — JSON on stdout, errors on stderr
-
Filterable —keeps a subset of fields. Dotted paths descend into nested structures; arrays traverse element-wise. Critical for keeping context small on verbose APIs:
--selectbashrecipe-goat-pp-cli foods list --agent --select id,name,status -
Previewable —shows the request without sending
--dry-run -
Offline-friendly — sync/search commands can use the local SQLite store when available
-
Non-interactive — never prompts, every input is a flag
-
Read-only — do not use this CLI for create, update, delete, publish, comment, upvote, invite, order, send, or other mutating requests
在任意命令后添加参数,等效于同时添加:。
--agent--json --compact --no-input --no-color --yes-
可管道传输 — 标准输出为JSON格式,错误信息输出到标准错误流
-
可过滤 —参数保留指定字段子集。点路径可深入嵌套结构;数组会遍历每个元素。对于输出冗长的API,此参数对精简上下文至关重要:
--selectbashrecipe-goat-pp-cli foods list --agent --select id,name,status -
可预览 —参数显示请求内容但不实际发送
--dry-run -
离线友好 — 同步/搜索命令在本地SQLite存储可用时可使用该存储
-
非交互式 — 从不弹出提示,所有输入均通过标志参数传递
-
只读 — 请勿使用本CLI执行创建、更新、删除、发布、评论、点赞、邀请、下单、发送或其他变更类请求
Response envelope
响应信封
Commands that read from the local store or the API wrap output in a provenance envelope:
json
{
"meta": {"source": "live" | "local", "synced_at": "...", "reason": "..."},
"results": <data>
}Parse for data and to know whether it's live or local. A human-readable summary is printed to stderr only when stdout is a terminal — piped/agent consumers get pure JSON on stdout.
.results.meta.sourceN results (live)从本地存储或API读取数据的命令会将输出包裹在溯源信封中:
json
{
"meta": {"source": "live" | "local", "synced_at": "...", "reason": "..."},
"results": <数据>
}解析字段获取数据,通过判断数据来自在线还是本地。仅当标准输出为终端时,才会向标准错误流打印人类可读的摘要;管道/Agent消费者仅会在标准输出获取纯JSON内容。
.results.meta.sourceN results (live)Agent Feedback
Agent反馈
When you (or the agent) notice something off about this CLI, record it:
recipe-goat-pp-cli feedback "the --since flag is inclusive but docs say exclusive"
recipe-goat-pp-cli feedback --stdin < notes.txt
recipe-goat-pp-cli feedback list --json --limit 10Entries are stored locally at . They are never POSTed unless is set AND either is passed or . Default behavior is local-only.
~/.recipe-goat-pp-cli/feedback.jsonlRECIPE_GOAT_FEEDBACK_ENDPOINT--sendRECIPE_GOAT_FEEDBACK_AUTO_SEND=trueWrite what surprised you, not a bug report. Short, specific, one line: that is the part that compounds.
当您(或Agent)发现本CLI存在问题时,可记录反馈:
recipe-goat-pp-cli feedback "--since标志实际为包含性,但文档说明为排他性"
recipe-goat-pp-cli feedback --stdin < notes.txt
recipe-goat-pp-cli feedback list --json --limit 10反馈条目会本地存储在文件中。仅当设置了且传递了参数或设置时,反馈才会被POST发送。默认行为仅本地存储。
~/.recipe-goat-pp-cli/feedback.jsonlRECIPE_GOAT_FEEDBACK_ENDPOINT--sendRECIPE_GOAT_FEEDBACK_AUTO_SEND=true请写下让您感到意外的点,而非正式的错误报告。简短、具体、单行描述:这样的反馈更有价值。
Output Delivery
输出交付
Every command accepts . The output goes to the named sink in addition to (or instead of) stdout, so agents can route command results without hand-piping. Three sinks are supported:
--deliver <sink>| Sink | Effect |
|---|---|
| Default; write to stdout only |
| Atomically write output to |
| POST the output body to the URL ( |
Unknown schemes are refused with a structured error naming the supported set. Webhook failures return non-zero and log the URL + HTTP status on stderr.
所有命令均支持参数。输出会除了(或替代)标准输出外,发送到指定的sink,以便Agent无需手动管道即可路由命令结果。支持三种sink:
--deliver <sink>| Sink | 效果 |
|---|---|
| 默认值;仅输出到标准输出 |
| 原子性地将输出写入 |
| 将输出体POST到指定URL(当使用 |
不支持的协议会返回结构化错误,列出支持的类型。Webhook请求失败时会返回非零退出码,并在标准错误流中记录URL和HTTP状态码。
Named Profiles
命名配置文件
A profile is a saved set of flag values, reused across invocations. Use it when a scheduled agent calls the same command every run with the same configuration - HeyGen's "Beacon" pattern.
recipe-goat-pp-cli profile save briefing --json
recipe-goat-pp-cli --profile briefing foods list
recipe-goat-pp-cli profile list --json
recipe-goat-pp-cli profile show briefing
recipe-goat-pp-cli profile delete briefing --yesExplicit flags always win over profile values; profile values win over defaults. lists all available profiles under so introspecting agents discover them at runtime.
agent-contextavailable_profiles配置文件是一组保存的标志值,可在多次调用中复用。适用于定时Agent每次运行都使用相同配置调用同一命令的场景——即HeyGen的“Beacon”模式。
recipe-goat-pp-cli profile save briefing --json
recipe-goat-pp-cli --profile briefing foods list
recipe-goat-pp-cli profile list --json
recipe-goat-pp-cli profile show briefing
recipe-goat-pp-cli profile delete briefing --yes显式标志参数始终优先于配置文件值;配置文件值优先于默认值。会在下列出所有可用配置文件,以便自省Agent在运行时发现它们。
agent-contextavailable_profilesExit Codes
退出码
| Code | Meaning |
|---|---|
| 0 | Success |
| 2 | Usage error (wrong arguments) |
| 3 | Resource not found |
| 4 | Authentication required |
| 5 | API error (upstream issue) |
| 7 | Rate limited (wait and retry) |
| 10 | Config error |
| 代码 | 含义 |
|---|---|
| 0 | 成功 |
| 2 | 使用错误(参数错误) |
| 3 | 资源未找到 |
| 4 | 需要认证 |
| 5 | API错误(上游问题) |
| 7 | 请求受限(请等待后重试) |
| 10 | 配置错误 |
Argument Parsing
参数解析
Parse :
$ARGUMENTS- Empty, , or
help→ show--helpoutputrecipe-goat-pp-cli --help - Starts with → ends with
install→ MCP installation; otherwise → see Prerequisites abovemcp - Anything else → Direct Use (execute as CLI command with )
--agent
解析的规则:
$ARGUMENTS- 为空、或
help→ 显示--help输出recipe-goat-pp-cli --help - 以开头 → 若结尾为
install→ 安装MCP;否则 → 参见上方的前提条件部分mcp - 其他情况 → 直接使用(添加参数执行CLI命令)
--agent
MCP Server Installation
MCP服务器安装
- Install the MCP server:
bash
go install github.com/mvanhorn/printing-press-library/library/other/recipe-goat-pp-cli/cmd/recipe-goat-pp-mcp@latest - Register with Claude Code:
bash
claude mcp add recipe-goat-pp-mcp -- recipe-goat-pp-mcp - Verify:
claude mcp list
- 安装MCP服务器:
bash
go install github.com/mvanhorn/printing-press-library/library/other/recipe-goat-pp-cli/cmd/recipe-goat-pp-mcp@latest - 在Claude Code中注册:
bash
claude mcp add recipe-goat-pp-mcp -- recipe-goat-pp-mcp - 验证:执行
claude mcp list
Direct Use
直接使用
- Check if installed: If not found, offer to install (see Prerequisites at the top of this skill).
which recipe-goat-pp-cli - Match the user query to the best command from the Unique Capabilities and Command Reference above.
- Execute with the flag:
--agentbashrecipe-goat-pp-cli <command> [subcommand] [args] --agent - If ambiguous, drill into subcommand help: .
recipe-goat-pp-cli <command> --help
- 检查是否已安装:执行若未找到,可提供安装选项(参见顶部前提条件部分)。
which recipe-goat-pp-cli - 将用户查询与上方“唯一功能”和“命令参考”中的最佳命令匹配。
- 添加参数执行命令:
--agentbashrecipe-goat-pp-cli <命令> [子命令] [参数] --agent - 若存在歧义,查看子命令帮助:执行。
recipe-goat-pp-cli <命令> --help