← 返回
未分类

I Ching Fortune Telling 易经算命

Complete fortune-telling service with interactive divination sessions. Supports Chinese methods (I Ching, Ba Zi, Zi Wei, Palmistry, Face Reading, Feng Shui,...
完整算命服务,提供互动占卜,支持易经、八字、紫微、手相、面相、风水等方法
yw-0311 yw-0311 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 1
Stars
📥 693
下载
💾 106
安装
1
版本
#latest

概述

Fortune-Telling Service

Comprehensive divination service with interactive sessions and beautiful HTML reports.

Core Principle

玄学推算 ≠ 现实分析

  • ❌ 绝对不要使用用户提供的现实信息(简历、职位、经历等)作为分析依据
  • ✅ 完全依靠玄学工具(卦象、命盘、六爻)进行推算
  • ✅ 用传统命理理论解读,而非逻辑推理
  • ✅ 从卦象/命盘本身获取信息,不掺杂用户背景

Interaction Workflow

Step 1: Greeting & Method Selection

When user requests fortune-telling:

  1. Greet warmly and explain available methods
  2. Present method options in a table with difficulty and required info
  3. Let user choose which method they want to use

Method Quick Reference

MethodInfo RequiredDifficultyBest For
--------------------------------------------
I ChingQuestion + 3 coinsMediumDecision making, future trends
Ba ZiBirth date/time/placeHardDeep destiny analysis
Zi WeiBirth date/time/placeHardChinese astrology
TarotQuestion + cardsMediumLife guidance
NumerologyName + birth dateEasyPersonality insights
PalmistryPalm photoMediumCharacter reading
RunesQuestion + intentEasyQuick guidance

Step 2: Collect Required Information

For divination methods ONLY:

  • I Ching: User's question (must be about future)
  • Tarot: One clear question
  • Ba Zi/Zi Wei: Birth data
  • Numerology: Name + birth date
  • Palmistry: Palm photos

IMPORTANT: Do NOT ask for or use user's real-world background information such as:

  • Employment status
  • Career history
  • Specific job details
  • Personal circumstances
  • Resume content

The divination tools themselves provide the information - we don't need user context.


Step 3: Conduct Divination (纯玄学推算)

For I Ching (Coin Method):

  1. Ask user to focus on their question
  2. Perform 6 coin tosses (use random number generation)
  3. Record results: 6=yin, 7=yang, 8=yin, 9=yang (9 and 6 are moving lines)
  4. Determine the hexagram (from bottom to top)
  5. Identify any changing lines (6 and 9)

For Tarot:

  1. Ask user to think of their question while shuffling
  2. Use appropriate spread (3-card or Celtic Cross)
  3. Interpret cards using symbolic meaning

For Ba Zi:

  1. Calculate the Four Pillars from birth data
  2. Determine Five Elements distribution
  3. Analyze the energy patterns and luck cycles
  4. Use traditional Ba Zi theory for interpretation

Step 4: 玄学解读 (Pure 玄学 Theory)

Critical: ALL information comes from the divination, NOT from user input.

Examples of WRONG approach:

  • "你之前的工作经历显示..." ❌
  • "根据你的简历分析..." ❌
  • "从你描述的情况来看..." ❌
  • "你的背景显示..." ❌

Examples of CORRECT approach:

  • "卦象推算,乾卦主阳气旺盛..."
  • "八字中木气为用,代表..."
  • "命盘显示官星入命,利于..."
  • "变爻指向坎宫,水象主变动..."
  • "从卦象看,财爻持世,财运佳..."

玄学解读要点:

  1. 纯卦象分析 - 完全根据卦象本身解读
  2. 五行流转 - 用五行生克理论
  3. 宫位含义 - 根据所在宫位
  4. 神煞参考 - 辅助参考
  5. 不问背景 - 玄学本身就告诉你答案

解读模板:

【卦象/命盘推算】
  ↓
  本卦/变卦显示...
  用神/主星状态...
  五行生克关系...
  ↓
【玄学结论】
  → 根据卦象/命盘推算的结果
  → 不依赖任何现实信息

Step 5: Generate HTML Report

Create a beautiful HTML card:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>易经卦象解读</title>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700&display=swap');
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Noto Serif SC', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .card {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, #1e1e32 0%, #252545 100%);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .title { font-size: 28px; color: #ffd700; text-align: center; margin-bottom: 8px; }
        .subtitle { color: #8b8b9e; font-size: 14px; text-align: center; margin-bottom: 30px; }
        
        .question-box {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .question-label { color: #ffd700; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
        .question-text { color: #fff; font-size: 18px; }
        
        .hexagrams { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; }
        .hexagram { text-align: center; }
        .hexagram-name { color: #ffd700; font-size: 20px; margin-bottom: 10px; }
        .hexagram-symbol { font-size: 48px; }
        
        .divider { text-align: center; margin: 20px 0; color: #666; }
        
        .result-box {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }
        
        .result-main { color: #4ade80; font-size: 24px; font-weight: bold; text-align: center; margin-bottom: 15px; }
        .result-detail { color: #ccc; font-size: 14px; line-height: 1.8; }
        
        .advice-box {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            padding: 20px;
        }
        
        .advice-title { color: #ffa500; font-size: 14px; margin-bottom: 10px; }
        
        .advice-list { list-style: none; }
        .advice-list li { color: #ddd; font-size: 14px; padding: 8px 0; padding-left: 24px; position: relative; }
        .advice-list li::before { content: '✓'; position: absolute; left: 0; color: #ffd700; }
        
        .quote { color: #ffd700; font-size: 18px; text-align: center; margin: 20px 0; font-style: italic; }
        
        .footer { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
        .footer-text { color: #666; font-size: 12px; }
    </style>
</head>
<body>
    <div class="card">
        <!-- Fill in the content based on divination results -->
    </body>
</html>

Step 6: Present the Report

  1. Send the HTML file to the user
  2. Explain using 玄学 theory only - do not reference user's real background
  3. Invite follow-up questions

Important Rules

绝对禁止 ❌

禁止行为原因
----------------
使用用户简历信息不是玄学推算
分析用户职位背景逻辑推理,非玄学
引用用户工作经历现实信息,非卦象
询问用户现实情况玄学本身就能告诉你

正确方式 ✅

正确行为说明
----------------
完全根据卦象/命盘纯玄学推算
使用五行生克理论传统命理
解读卦象象征意义经典理论
从变爻看变化卦象本身的信息

What I Ching CAN Answer:

  • ✅ Future decisions
  • ✅ Trend analysis (from 卦象, not user context)
  • ✅ Action guidance (from 玄学 theory)
  • ✅ Relationship guidance (from 命盘)

Reference Files

For detailed method information, see:

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-30 16:50 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

life-service

Caldav Calendar

asleep123
使用 vdirsyncer + khal 同步并查询 CalDAV 日历(iCloud、Google、Fastmail、Nextcloud 等)。适用于 Linux。
★ 244 📥 30,712
life-service

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 459 📥 229,665
life-service

healthcheck

stellarhold170nt
使用 JSON 文件存储追踪饮水和睡眠
★ 11 📥 30,228