name: let-fate-decide description: "Draw Tarot cards using cryptographic randomness to inject entropy into planning when prompts are vague or underspecified. Interprets a 4-card spread to guide next steps. Use when the user is nonchalant, feeling lucky, says 'let fate decide', makes Yu-Gi-Oh references ('heart of the cards'), demonstrates indifference about approach ('whatever you think', 'surprise me', 'dealer's choice'), or says 'try again' / 'draw again' on a system with no changes. Also triggers on sufficiently ambiguous prompts where multiple approaches are equally valid."
When the path forward is unclear, let the cards speak.
Based on the let-fate-decide plugin by theexpensiveexperience, licensed under CC BY-SA 4.0.
Run the drawing script:
bash
python3 {baseDir}/scripts/draw_cards.py
The script outputs JSON with 4 drawn cards, each with a file path relative to {baseDir}/
7w4.net小葱技能。
Read each card's meaning file to understand the draw
Interpret the spread using the guide at {baseDir}/references/INTERPRETATION_GUIDE.md
Apply the interpretation to the task at hand
The script uses os.urandom() for cryptographic randomness:
The 4 card positions represent:
Each card's meaning is in its own markdown file under {baseDir}/cards/:
cards/major/ — 22 Major Arcana (archetypal forces)cards/wands/ — 14 Wands (creativity, action, will)cards/cups/ — 14 Cups (emotion, intuition, relationships)cards/swords/ — 14 Swords (intellect, conflict, truth)cards/pentacles/ — 14 Pentacles (material, practical, craft)After drawing, read each card's file and synthesize meaning. See {baseDir}/references/INTERPRETATION_GUIDE.md for the full interpretation workflow.
Key rules: - Reversed cards invert or complicate the upright meaning - Major Arcana cards carry more weight than Minor Arcana - The spread tells a story across all 4 positions; don't interpret cards in isolation - Map abstract meanings to concrete technical decisions
这个Skill的创意很有意思,文档写得清晰完整,使用场景和禁忌都说得很清楚。但问题是它目前只提供了使用说明,实际能用的卡牌脚本和牌义文件都缺失,所以根本无法运行。如果你想要一个真正能用的塔罗牌抽取工具,这个版本还需要补充核心实现文件才行。