ソース情報
- リポジトリ
- povilasb/unix-configs
- ソースの最終更新活動
- 2026年8月28日 07:51
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/povilasb/unix-configs --skill add-cardコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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.