openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > 八字排盘

计算八字以及大运流年信息,需要性别, ISO 8601 格式的时间两个参数

综合技能

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 211 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:ahaofan/bazi

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill does what it says (calls an external bagezi.top API to compute 八字) and has no unrelated privileges, but it sends personal data (name, gender, birth datetime) to an external HTTP endpoint in plaintext — review privacy and network risks before use.

目的

Name and description match the implementation: paipan.py posts name/gender/birthday to an external 八字 API and prints the JSON response. No unrelated env vars, binaries, or install steps are requested.

说明范围

SKILL.md instructs running paipan.py with name/gender/birthday. The script transmits personally identifiable data (name and exact birth datetime) to a remote host (http://bagezi.top/api/paipan). The request is made over plain HTTP (not HTTPS), exposing the data to network eavesdropping and MITM.

安装机制

There is no install spec; the skill is instruction/code-only and does not install additional packages or binaries. Risk from installation is minimal.

证书

The skill requests no credentials or environment variables (proportionate). However, it does exfiltrate PII to an external service on each invocation; lack of declared endpoint/privacy details means privacy consequences are the main concern.

持久

Skill does not request persistent privileges, does not set always:true, and does not modify other skills or system configs.

综合结论

This skill appears to be what it claims: a thin client that posts name/gender/birthday to bagezi.top and prints the result. Before installing or running it: (1) Treat the name and exact birth datetime as sensitive — the script sends them to an external server. (2) Note it uses http:// (not https://) so data is sent in plaintext and could be intercepted; avoid sending real personal data unless you trust the service or can use HTTPS. (3) If you need privacy, consider requesting or implementing a local/offline 八字 library or a trusted HTTPS API, or run the script in an isolated environment. (4) If you proceed, review the remote domain (bagezi.top) reputation and privacy policy, and test with dummy data first.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「八字排盘」。简介:计算八字以及大运流年信息,需要性别, ISO 8601 格式的时间两个参数。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/ahaofan/bazi/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: bazi
description: 计算八字以及大运流年信息,需要性别, ISO 8601 格式的时间两个参数
---

凡心八字官网

http://bagezi.top/

252468400@qq.com

# 使用方法

必须设置utf-8编码后运行

## 只提供必填参数(name 使用默认值"张三")

python paipan.py -gender "男" -birthday_str "1997-01-12T23:07:19.083Z"

## 提供所有参数

python paipan.py -name "李四" -gender "女" -birthday_str "1990-05-20T10:00:00.000Z"

## 参数位置绑定(按顺序)

python paipan.py "王五" "男" "1985-08-15T00:00:00.000Z"