Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Bilal140202/the-lord-of-the-skills --skill cnwu16__vedic-astro-skillsgit clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/cnwu16__vedic-astro-skills)<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/cnwu16__vedic-astro-skills"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/cnwu16__vedic-astro-skills/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/cnwu16__vedic-astro-skills"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/cnwu16__vedic-astro-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00100 | $0.03860 |
| Opus 5 | $0.00050 | $0.01930 |
| Sonnet 5 | $0.00020 | $0.00772 |
| Haiku 4.5 | $0.00010 | $0.00386 |
Grade A, and why
vedic-calculator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 326 lines — stays where its author put it; the contents beside it link to each section on GitHub.
vedic-calculator: 吠陀占星排盘引擎
基于pysweph天文引擎 + dashaflow算法模块,直接从出生时间计算完整星盘数据。 输出格式完全兼容vedic-reader的structured_data.md,可直接交给vedic-core分析。
前置条件
- Python 3.8 ~ 3.13(pysweph 为 C 扩展,3.14 暂不支持)
- 依赖: pysweph, dashaflow, PyJHora==4.8.6, pytz
⚠️ 不要直接
pip install -r requirements.txt! dashaflow 声明依赖已停更的 pyswisseph,会导致冲突。 请使用setup_env.py自动安装(见下方)。
环境自动检测
运行前检查依赖是否可用(按优先级):
1. 检查 <skill目录> 或工作目录下是否有已有 venv/:
- <skill目录>/venv/
- <工作目录>/vedic-calc-env/
- <工作目录>/venv/
找到 → 用其 Python 运行 → 尝试 import swisseph → 成功 → 直接使用
2. 尝试当前 Python import swisseph:
- 成功且 swe.version 不是 '0.0.0' → 直接使用
- 失败或空壳 → 继续
3. 自动创建 venv(运行 setup_env.py):
<合适的Python> <skill目录>/scripts/setup_env.py
脚本会自动:检测 Python 版本 → 创建 venv → 按正确顺序安装 → 验证 SAV=337
⚠️
<skill目录>= vedic-calculator skill 的安装路径,AI 根据实际环境自动填写。 ⚠️ 如果系统默认 Python 是 3.14,setup_env.py 会自动查找 3.12/3.13 来创建 venv。
使用流程
Step 1: 收集出生信息
向用户收集:
- 出生日期 (YYYY-MM-DD)
- 出生时间 (HH:MM,24小时制)
- 出生地点 (城市名)
- 性别
- 感情状态(可选)
- 时间精度(精确到分钟 / ±15分钟 / ±1小时 / 不确定)
- 时间来源(出生证 / 家人记忆 / 大概回忆 / 未追问)
Step 2: AI转换地理坐标
根据用户提供的城市名,AI直接填写:
- 纬度 (lat)
- 经度 (lon)
- 时区字符串 (tz_str)
常用参考:
北京: 39.9042, 116.4074, "Asia/Shanghai"
上海: 31.2304, 121.4737, "Asia/Shanghai"
广州: 23.1291, 113.2644, "Asia/Shanghai"
成都: 30.5728, 104.0668, "Asia/Shanghai"
台北: 25.0330, 121.5654, "Asia/Taipei"
香港: 22.3193, 114.1694, "Asia/Hong_Kong"
新德里: 28.6139, 77.2090, "Asia/Kolkata"
孟买: 19.0760, 72.8777, "Asia/Kolkata"
⚠️ 中国全境使用 "Asia/Shanghai" (UTC+8) ⚠️ 印度全境使用 "Asia/Kolkata" (UTC+5:30)
Step 3: 运行引擎
在工作目录下创建计算脚本并执行:
import sys, os
# ⚠️ 动态路径:AI根据skill安装位置自动填写
# Antigravity 示例: C:\Users\用户名\.gemini\config\skills\vedic-calculator\scripts
# Claude Code 示例: ~/.claude/skills/vedic-calculator/scripts
SCRIPTS_DIR = r"<vedic-calculator skill 的 scripts 目录绝对路径>"
sys.path.insert(0, SCRIPTS_DIR)
from engine import calculate_full_chart
from transit import calc_transit
from formatter import format_structured_data
# 计算本命盘
chart = calculate_full_chart(
year=YYYY, month=MM, day=DD,
hour=HH, minute=MM,
lat=LAT, lon=LON,
tz_str="TIMEZONE"
)
# 计算当前过运
transit = calc_transit(
chart['lagna']['sign_idx'],
chart['planets']['Moon']['sign_idx'],
"TIMEZONE"
)
# 元信息
meta = {
'dob': 'YYYY-MM-DD',
'time': 'HH:MM',
'place': '城市名',
'lat': LAT, 'lon': LON,
'time_precision': '精确到分钟',
'time_source': '未追问'
}
# 用户信息
user_info = {
'gender': '男/女',
'relationship': '单身/恋爱中/已婚'
}
# 生成structured_data.md
md = format_structured_data(chart, transit, meta, user_info)
with open(r"WORKDIR\structured_data.md", 'w', encoding='utf-8') as f:
f.write(md)
# ⚠️ 正确的 SAV 验证方式(不要自己猜 key!)
SIGNS = ['Aries','Taurus','Gemini','Cancer','Leo','Virgo','Libra','Scorpio','Sagittarius','Capricorn','Aquarius','Pisces']
sav_total = sum(chart['sav'].get(s, 0) for s in SIGNS)
print(f"✅ SAV total: {sav_total}")
assert sav_total == 337, f"SAV FAILED: {sav_total} != 337"
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 326 lines · 100 tokens per session scan A 747a6c83a3fe
vedic-calculator is a skill published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 100 tokens to every session and 3,860 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
serpsmith
Publish SEO articles reliably across AI-agent runtimes.
read-arxiv-paper
Use this skill when asked to read an arxiv paper given an arxiv URL.
earth2studio-create-datasource
Create and validate Earth2Studio data source wrappers (DataSource, ForecastSource, DataFrameSource, ForecastFrameSource) from remote stores. Do NOT use for fetching data with existing sources, model inference, or installation tasks.
earth2studio-data-fetch
Fetch weather/climate data via Earth2Studio data sources for specific variables and times. Do NOT use for inference pipelines, model discovery, or installation.
qec-construct
Verifier-in-the-loop CONSTRUCTION of quantum error-correcting codes with transversal non-Clifford gates (CCZ/T). Applies whenever the project goal is a new or better code/construction — INCLUDING search-phrased goals ("find codes beating X"), where the construct-loop (propose algebraic rule → qverify → debug) is the…
hunt-xxe
Hunting skill for xxe vulnerabilities. Built from 4 public bug bounty reports. Use when hunting xxe on any target.