用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/povilasb/unix-configs --skill add-card命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | add-card |
| description | Add a flashcard to the local flashcard app running at http://127.0.0.1:7001. |
Add a flashcard by POSTing to the local flashcard app API using the Bash tool:
curl -s -o /dev/null -w "%{http_code}" -X POST http://127.0.0.1:7001/api/cards \
-H "Content-Type: application/json" \
-d '<json>'
JSON body schema:
{
"question": "string (required)",
"answer": "string (required)",
"examples": "string or null",
"source": "string or null",
"tags": ["array", "of", "strings"],
"answer_img_fname": null,
"question_img_fname": null
}
Use $ARGUMENTS as the starting point to infer question, answer, tags, etc. Only ask the user for clarification if question or answer cannot be determined from context.
Default to a single tag that best categorises the card. Only use multiple tags if the user explicitly provides them.
A 201 response means success — confirm the card was added. Any other status is an error — show it and ask if the user wants to retry.