ソース情報
- リポジトリ
- blayer/ai-edge-skills
- ソースの最終更新活動
- 2026年4月3日 07:13
- 検出された SKILL.md の言語
- 英語
- スター
- 1
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/blayer/ai-edge-skills --skill blackjackコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Play a game of Blackjack against the dealer with interactive hit/stand controls.
Personalized allergy, skin care, and hair care advisory based on city, season, and personal profile. Uses hardcoded allergen data for 20+ cities.
Text sentiment analysis for stress and burnout indicators with tracking and trend reporting.
SOC 職業分類に基づく
SKILL.md を表示中
| name | blackjack |
| description | Play a game of Blackjack against the dealer with interactive hit/stand controls. |
Play a classic game of Blackjack (21) against the dealer.
You MUST use the run_js tool (NOT run_intent) to play this game.
Starting a new game: Call run_js with data: {"action": "deal"}
When the player says "hit": Call run_js with data: {"action": "hit", "player_cards": ["7H", "KD"], "dealer_visible": "QS", "dealer_hidden": "SQ"}
When the player says "stand": Call run_js with data: {"action": "stand", "player_cards": ["7H", "KD"], "dealer_visible": "QS", "dealer_hidden": "SQ"}
You MUST pass back the exact card values from the previous result:
Card format: rank + suit letter. Examples: 7H, KD, AS, 10C, QS, 2H.
After each call, show the "result" text to the player.