Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

guanxingguanxing 效率

Agent Skill

guanxing 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,985

周安装

294

GitHub Stars

公开资料未说明

下载量

2,446
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:guanxing(guanxing 效率)
来源仓库:https://github.com/doggychip/guanxing
安装命令:
openclaw skills install guanxing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install guanxing

简介

玄学 AI 工具,支持八字、风水、塔罗和易经等多种占卜方式。

  • 适用于个人命理分析和传统文化咨询需求。guanxing 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,需确认是否允许本地计算执行。
  • 注意该技能为娱乐和文化辅助工具,结果不具备科学依据。
  • 建议用户理性看待输出内容,勿用于重大决策参考。

SKILL.md

name
guanxing
description
Chinese metaphysics AI — BaZi (八字), daily fortune, crypto fortune, Feng Shui, Tarot, I-Ching divination, dream interpretation, name scoring, compatibility matching, zodiac analysis. Powered by 观星 GuanXing API.
version
1.0.0
user-invocable
true
metadata
clawdbot
emoji
🔮
requires
env
["GUANXING_API_KEY"]
primaryEnv
GUANXING_API_KEY

观星 GuanXing — Chinese Metaphysics AI

A comprehensive Chinese metaphysics toolkit. Call the GuanXing API to provide BaZi birth chart analysis, daily fortune, crypto token fortune (五行), Feng Shui, Tarot, I-Ching divination, dream interpretation, name scoring, compatibility matching, and zodiac readings.

Setup

Get a free API key at https://heartai.zeabur.app (register → Developer Center → Create App → copy your gx_sk_ key).

Set the environment variable:

GUANXING_API_KEY=gx_sk_your_key_here

Base URL: https://heartai.zeabur.app

Authentication

All requests require a Bearer token in the Authorization header:

Authorization: Bearer $GUANXING_API_KEY
Content-Type: application/json

External Endpoints

EndpointMethodPurposeData Sent
https://heartai.zeabur.app/api/v1/baziPOSTBaZi birth chart analysisBirth date, birth hour, name
https://heartai.zeabur.app/api/v1/fortunePOSTDaily fortune readingZodiac sign, birth date
https://heartai.zeabur.app/api/v1/crypto-fortunePOSTCrypto token fortuneToken symbol
https://heartai.zeabur.app/api/v1/qiuqianPOSTI-Ching divination (求签)Category, question
https://heartai.zeabur.app/api/v1/tarotPOSTTarot card readingQuestion, spread type
https://heartai.zeabur.app/api/v1/dreamPOSTDream interpretationDream description
https://heartai.zeabur.app/api/v1/almanacPOSTChinese almanacDate
https://heartai.zeabur.app/api/v1/fengshuiPOSTFeng Shui analysisDirection, element, space type
https://heartai.zeabur.app/api/v1/name-scorePOSTChinese name scoringFull name
https://heartai.zeabur.app/api/v1/compatibilityPOSTCompatibility matchingTwo birth dates
https://heartai.zeabur.app/api/v1/zodiacPOSTChinese zodiac fortuneBirth year or zodiac sign

Security & Privacy

  • All data is sent to the GuanXing API at heartai.zeabur.app over HTTPS.
  • No data is stored locally. No files are read or written.
  • The API processes birth dates and names to generate fortune readings. No data is shared with third parties.
  • By using this skill, your data is sent to the GuanXing (观星) service. Only install if you trust this service.

Model Invocation Note

This skill may be invoked autonomously by the agent when the user asks about fortune, 命理, 八字, zodiac, crypto luck, Feng Shui, or related topics. This is standard behavior. You can opt out by removing the skill.

Actions

1. BaZi Birth Chart (八字命理)

When the user asks about their birth chart, 八字, destiny, life path, or 命格:

curl -s -X POST https://heartai.zeabur.app/api/v1/bazi \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"birthDate": "YYYY-MM-DD", "birthHour": HOUR_0_TO_23, "name": "NAME"}'
  • birthDate (required): Birth date in YYYY-MM-DD format
  • birthHour (optional): Birth hour 0-23 (maps to 十二时辰)
  • name (optional): User's name for personalized reading

Ask the user for their birth date if not provided. Birth hour improves accuracy but is optional.

2. Daily Fortune (每日运势)

When the user asks about today's fortune, luck, or 运势:

curl -s -X POST https://heartai.zeabur.app/api/v1/fortune \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"zodiac": "ZODIAC_SIGN", "birthDate": "YYYY-MM-DD"}'
  • zodiac (required): Chinese zodiac sign name like 白羊座, 金牛座, etc.
  • birthDate (optional): For personalized 八字-based fortune

3. Crypto Fortune (加密运势)

When the user asks about crypto luck, token fortune, or 币圈运势:

curl -s -X POST https://heartai.zeabur.app/api/v1/crypto-fortune \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"token": "BTC"}'
  • token (required): Token symbol — BTC, ETH, SOL, BNB, TON, DOGE, AVAX
  • Token-to-五行 mapping: BTC→金(Metal), ETH→水(Water), SOL→火(Fire), BNB→土(Earth), TON→木(Wood)

For a portfolio overview, call the endpoint for each token the user holds.

4. I-Ching Divination (求签)

When the user wants to divine, draw a fortune stick, or 求签:

curl -s -X POST https://heartai.zeabur.app/api/v1/qiuqian \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category": "CATEGORY", "question": "USER_QUESTION"}'
  • category (optional): 事业 (career), 感情 (love), 财运 (wealth), 学业 (study), 健康 (health)
  • question (optional): Specific question the user wants answered

5. Tarot Reading (塔罗牌)

When the user asks for a tarot reading:

curl -s -X POST https://heartai.zeabur.app/api/v1/tarot \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"question": "USER_QUESTION", "spread": "SPREAD_TYPE"}'
  • question (optional): The question to explore
  • spread (optional): "single" (one card), "three" (past-present-future), "celtic" (full spread)

6. Dream Interpretation (解梦)

When the user describes a dream and wants it interpreted:

curl -s -X POST https://heartai.zeabur.app/api/v1/dream \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"dream": "DREAM_DESCRIPTION"}'
  • dream (required): The user's dream description

7. Chinese Almanac (老黄历)

When the user asks what's auspicious today, 宜忌, or 老黄历:

curl -s -X POST https://heartai.zeabur.app/api/v1/almanac \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date": "YYYY-MM-DD"}'
  • date (optional): Defaults to today if not specified

8. Feng Shui Analysis (风水)

When the user asks about Feng Shui, home layout, or 方位:

curl -s -X POST https://heartai.zeabur.app/api/v1/fengshui \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"direction": "DIRECTION", "element": "ELEMENT", "spaceType": "SPACE_TYPE"}'
  • direction (optional): 东/南/西/北/东南/西南/东北/西北
  • element (optional): 金/木/水/火/土
  • spaceType (optional): 办公室 (office), 卧室 (bedroom), 客厅 (living room)

9. Name Scoring (姓名打分)

When the user wants to score a name or analyze name meaning:

curl -s -X POST https://heartai.zeabur.app/api/v1/name-score \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name": "FULL_NAME"}'
  • name (required): Chinese or English full name

10. Compatibility (缘分合盘)

When the user asks about compatibility with someone:

curl -s -X POST https://heartai.zeabur.app/api/v1/compatibility \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"person1": {"birthDate": "YYYY-MM-DD", "name": "NAME1"}, "person2": {"birthDate": "YYYY-MM-DD", "name": "NAME2"}}'
  • Both person1 and person2 require birthDate. name is optional.

11. Zodiac Fortune (生肖运势)

When the user asks about their Chinese zodiac:

curl -s -X POST https://heartai.zeabur.app/api/v1/zodiac \
  -H "Authorization: Bearer $GUANXING_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"zodiac": "ZODIAC_ANIMAL", "birthYear": YEAR}'
  • zodiac (optional): 鼠/牛/虎/兔/龙/蛇/马/羊/猴/鸡/狗/猪
  • birthYear (optional): Birth year to auto-determine zodiac

Response Handling

All endpoints return JSON with this structure:

{
  "success": true,
  "data": { ... },
  "meta": { "skill": "...", "tokensUsed": 245, "latencyMs": 1200 }
}

If success is false, the response includes an error field. Report the error message to the user in a friendly way.

Response Formatting

When presenting results to the user:

  • Use the Chinese terms naturally (八字, 五行, 天干地支, etc.)
  • Format fortune scores as X/100 or X/5 stars
  • Highlight lucky colors, numbers, and directions
  • For crypto fortune, mention the 五行 element relationship
  • Keep the tone warm and insightful, not clinical
  • If the user speaks English, translate key Chinese metaphysics terms with brief explanations

Trust Statement

By using this skill, data you provide (birth dates, names, questions) is sent to the GuanXing (观星) API at heartai.zeabur.app for processing. The API uses AI to generate metaphysics readings. Only install if you trust this service. API documentation: https://heartai.zeabur.app

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.51%
按下载量换算1,798

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills