Fupeirong digital iching skill
Cast and interpret a Fu Peirong-style I Ching digital hexagram from three user-chosen three-digit numbers, using a deterministic calculator and a complete Chinese 64-hexagram/384-line database. Use when the user explicitly asks for 傅佩荣数字卦占卜、傅佩荣数字卦、数字卦占卜、三组三位数起卦、按数字问卦/解卦, or supplies three three-digit numbers for this method. Do not trigger for general I Ching history, unrelated numerology, or divination methods such as 梅花易数、铜钱卦、蓍草卦 unless the user explicitly wants this Fu Peirong method.From its SKILL.md
npx -y skills add pnedfff/fupeirong-digital-iching-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 26 days oldThe repository was created 26 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.2 KB, 897 tokens by cl100k_base, as published. Nobody here has run it
傅佩荣数字卦占卜
Use the bundled calculator for every cast. Treat the result as a symbolic reflection tool, not a factual prediction engine.
Intake
- Ask for one concrete question that concerns the user or a matter they are authorized to ask about.
- Apply
不诚不占、不义不占、不疑不占:- Decline dishonest, harmful, privacy-invasive, or clearly unlawful purposes.
- Do not cast when ordinary facts already settle the issue and the user has no real uncertainty.
- Ask for three independently chosen integers from 100 through 999 if they are missing.
- Do not disclose remainder targets before the user chooses the numbers. Do not silently invent numbers.
- If the user explicitly requests random numbers, state that system randomness is replacing their own spontaneous choice before generating them.
For medical, legal, financial, safety, or crisis questions, use the reading only for reflection. Never replace professional advice, encourage delay of care, or present a high-stakes decision as determined by the hexagram. Do not divine self-harm or imminent danger; shift to immediate safety support.
Cast
Run:
python3 scripts/cast.py FIRST SECOND THIRD --question "用户问题"
Resolve scripts/cast.py relative to this skill directory. Use --format text only for a quick human-readable check; use the default JSON for interpretation.
The fixed calculation is:
- First number modulo 8 -> lower trigram.
- Second number modulo 8 -> upper trigram.
- Third number modulo 6 -> moving line, counted from bottom to top.
- Convert a remainder of 0 to 8 for a trigram and to 6 for the moving line.
- Map 1-8 as
乾、兑、离、震、巽、坎、艮、坤.
Do not replace this with the common Plum Blossom convention in which the first number is the upper trigram. Do not add 体用、五行生克、互卦、时间卦、纳甲 or multiple-changing-line rules; they are outside this skill's defined method.
Interpret
Read in this order:
- State the arithmetic and upper/lower trigram mapping so the cast is auditable.
- Read the main hexagram judgement as the broad situation.
- Read the Image text as a conduct-oriented lens.
- Treat the single moving-line text as the focus of the answer.
- Use the relating hexagram only as supplementary direction after the line changes; do not let it override the main judgement and moving line.
- Interpret against the user's actual question. Prefer context and ordinary reason over literalized imagery.
- End with one or two small, reversible next actions and name the decisive real-world evidence the user should verify.
Use calibrated language such as 提示、倾向、可理解为、值得留意. Avoid 一定、注定、保证、必然发生.
Read references/method-and-sources.md when method provenance, source distinctions, or workbook corrections matter. Query references/hexagrams.json only through the calculator unless diagnosing data.
Output
Return this compact structure:
问题
起卦核算:第一数 -> 下卦;第二数 -> 上卦;第三数 -> 动爻
本卦:卦名、结构、卦辞
大象:原文 + 与问题有关的行为提醒
动爻:爻辞 + 核心解释
之卦:仅作变化方向参考
综合判断:区分卦象提示、现实证据、仍不确定之处
下一步:1-2 个可逆行动
声明:象征性参考,不替代现实调查或专业意见
Quote only the relevant judgement, Image, and moving-line text. Do not dump unrelated lines or all database content.
What ships with it: 8 files
57.3 KB alongside SKILL.md, 2 of them executable
agents/
- openai.yaml326 B
references/
- hexagrams.json38.3 KB
- method-and-sources.md2.7 KB
scripts/
- cast.pyruns7.6 KB
tests/
- test_cast.pyruns2.2 KB
- .gitignore34 B
- LICENSE1.0 KB
- README.md5.1 KB