mcpbeat Sign in

Numerology Analysis Agent Skill

Compute symbolic numerology from a person's name and birthdate using deterministic mappings only. Use for numerology / 数字命理 / 生命路径数 / 姓名映射 requests and structured numerology JSON. Do not use for predictive fortune-telling or non-symbolic advice.

5k tokens
context cost
the whole folder, loaded on every use
8
files
instructions only
0
copies elsewhere
how many repositories repackaged it
148
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/shizhilya/yuan --skill numerology-analysis

The instruction itself

18 sections, as written by the author

Purpose

Return a numerology analysis using only the symbolic rules in this skill. The result must be deterministic, reproducible, and limited to symbolic mappings.

Accepted input

Accept either:

  • A JSON object:
   {
     "input": {
       "name": "",
       "birthdate": ""
     }
   }
  • A natural-language request that clearly includes both a name and a birthdate.

If one field is missing, ask only for the missing field.

If the birthdate is ambiguous (for example 03/04/2001), ask for ISO YYYY-MM-DD before computing.

Flow

  • Calculate
  • Map
  • Output

Rules

1) Normalize birthdate

  • Accept YYYY-MM-DD, YYYY/MM/DD, or YYYYMMDD.
  • Remove all non-digit characters to produce normalized_birthdate.
  • normalized_birthdate must contain exactly 8 digits.
  • If the date cannot be normalized to 8 digits, request correction.

2) Reduce function

Use this deterministic reducer everywhere a reduction step is required:

reduce_number(n):
  while n is not 11, 22, or 33 and n > 9:
      n = sum_of_digits(n)
  return n

This preserves the master numbers 11, 22, and 33.

3) Life path number

Compute:

life_path_number = reduce_number(sum(digits(normalized_birthdate)))

4) Normalize name

  • Trim leading and trailing whitespace.
  • Ignore spaces, hyphens, underscores, apostrophes, and common punctuation.
  • Convert Latin letters to uppercase before mapping.
  • Do not transliterate non-Latin scripts into Latin. Use the fallback mapping directly.

5) Name mapping

Latin mapping

Use the following fixed mapping:

  • A J S = 1
  • B K T = 2
  • C L U = 3
  • D M V = 4
  • E N W = 5
  • F O X = 6
  • G P Y = 7
  • H Q Z = 8
  • I R = 9

Fallback mapping for non-Latin or unmapped characters

For every character that is not mapped by the Latin table:

  • Take the character's Unicode decimal code point.
  • Sum the digits of that decimal code point.
  • Reduce that sum to a single digit from 1 to 9.
  • Use that value as the character mapping.

Example:

  • Unicode code point 24352 -> 2 + 4 + 3 + 5 + 2 = 16 -> 1 + 6 = 7

6) Name number

  • Map every valid character after name normalization.
  • Compute:
name_number = reduce_number(sum(mapped_character_values))

7) Personality map

Use only this symbolic map:

  • 1 -> 标签 ["独立", "主动", "开创"], 符号 "起点型"
  • 2 -> 标签 ["协调", "敏感", "合作"], 符号 "联结型"
  • 3 -> 标签 ["表达", "创意", "社交"], 符号 "表达型"
  • 4 -> 标签 ["稳定", "秩序", "执行"], 符号 "结构型"
  • 5 -> 标签 ["变化", "自由", "探索"], 符号 "变化型"
  • 6 -> 标签 ["责任", "关怀", "和谐"], 符号 "照护型"
  • 7 -> 标签 ["内省", "分析", "洞察"], 符号 "思辨型"
  • 8 -> 标签 ["目标", "掌控", "成就"], 符号 "成就型"
  • 9 -> 标签 ["理想", "包容", "完成"], 符号 "完成型"
  • 11 -> 标签 ["直觉", "启发", "感召"], 符号 "启发型"
  • 22 -> 标签 ["建构", "整合", "落地"], 符号 "建构型"
  • 33 -> 标签 ["奉献", "滋养", "引导"], 符号 "滋养型"

Output contract

Return JSON with exactly this top-level structure:

{
  "核心数字": {
    "生命路径数": 0,
    "姓名数": 0,
    "主导数": 0,
    "辅助数": 0
  },
  "性格": {
    "生命路径": {
      "标签": [],
      "符号": ""
    },
    "姓名映射": {
      "标签": [],
      "符号": ""
    },
    "综合": {
      "标签": [],
      "说明": ""
    }
  }
}

Output rules

  • 主导数 = 生命路径数
  • 辅助数 = 姓名数
  • 生命路径 uses the symbolic map for life_path_number
  • 姓名映射 uses the symbolic map for name_number
  • 综合.标签 is the de-duplicated concatenation of 生命路径.标签 followed by 姓名映射.标签
  • 综合.说明 must be exactly:

以内在核心采用生命路径数的符号映射,以外在表达采用姓名数的符号映射

Constraints

  • Pure symbolic mapping only.
  • No event prediction.
  • No luck, fate, or timing claims.
  • No medical, legal, financial, or safety claims.
  • Do not add astrology, tarot, zodiac, feng shui, MBTI, clinical psychology, or any external system.
  • Do not infer real-world outcomes from the numbers.
  • Do not add unsupported narrative beyond the provided labels and symbols unless the user explicitly asks for a short explanation.

Formatting behavior

  • Default to JSON only.
  • If the user explicitly asks for an explanation, provide the JSON first and then a short explanation that stays fully consistent with the same mapping and constraints.

Canonical machine-readable spec

The canonical internal spec id is numerology_analysis.

The runtime skill name is numerology-analysis for broad compatibility across agent tools.

Use assets/spec.json as the machine-readable reference when needed.

Other skills for the same job

different authors, same section of the catalogue
Protocolsio Integration
by christophacham
×4

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io functionality into workflows. Applicable for protocol discovery, collaborative protocol development, experiment tracking, lab protocol management, and scientific documentation.

16k tokens
Tailored Resume Generator
by frostant
×4

Analyzes job descriptions and generates tailored resumes that highlight relevant experience, skills, and achievements to maximize interview chances

3k tokens
Excalidraw Diagram Generator
by github
vendor ×3

Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.

36k tokens scripts
Expo Dev Client
by openai
vendor ×3

Build and distribute Expo development clients locally or via TestFlight

961 tokens
Executing Plans
by ZhanlinCui
×3

Use when you have a written implementation plan to execute in a separate session with review checkpoints

542 tokens
Anndata
by christophacham
×3

Data structure for annotated matrices in single-cell analysis. Use when working with .h5ad files or integrating with the scverse ecosystem. This is the data format skill—for analysis workflows use scanpy; for probabilistic models use scvi-tools; for population-scale queries use cellxgene-census.

16k tokens
Benchling Integration
by christophacham
×3

Benchling R&D platform integration. Access registry (DNA, proteins), inventory, ELN entries, workflows via API, build Benchling Apps, query Data Warehouse, for lab data management automation.

14k tokens
Biopython
by christophacham
×3

Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use bioservices.

24k tokens

How to use it

Copy the folder

Take shizhilya/numerology-analysis from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.