Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

zodiac-horoscope黄道十二宫

Agent Skill

zodiac-horoscope 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

24,330

周安装

1,024

GitHub Stars

公开资料未说明

下载量

8,520
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install zodiac-horoscope

简介

zodiac-horoscope 根据本命盘生成个性化每日星座运势。

  • 适用于用户请求日常指导或情绪建议时使用。
  • 通过 clawhub 安装并使用 openclaw skills install zodiac-horoscope 命令部署。
  • 依赖 zodiac-today.com API 获取原始数据。
  • 结果为娱乐性质,不可作为重要决策依据。

SKILL.md

name
zodiac-horoscope
description
>
Triggers
horoscope, zodiac, star sign forecast, daily guidance, lucky day, best day to, astrology advice,

Zodiac Horoscope

Provide personalized, actionable daily guidance powered by planetary transit calculations against the user's natal chart.

Required Environment Variables

VariableDescription
ZODIAC_API_KEYAPI key from zodiac-today.com (starts with hsk_)
ZODIAC_PROFILE_IDProfile ID for the user's birth chart

Privacy Notice

This skill collects sensitive PII (email, birth date, birth city) required for natal chart calculations. Handle with care:

  • Ask for explicit user consent before collecting birth information
  • Never log or expose PII in public channels or shared contexts
  • Store API keys and profile IDs in environment variables, not in plain text files
  • Delete cookies.txt after registration is complete

How This Helps People

  • Daily decision-making: "Should I have that difficult conversation today?" → Check if confrontations are favorable or unfavorable
  • Schedule optimization: Plan high-energy tasks on high-energy days, rest on low days
  • Life event planning: Find the best window for job interviews, first dates, travel, or big purchases (paid tiers unlock future dates)
  • Relationship insights: Romance metrics help users pick ideal date nights
  • Motivation & mindfulness: Daily summaries provide a moment of reflection and intentional living

Setup

Everything can be done via API — no browser needed.

1. Register & get API key

# Send verification code (creates account if new)
curl -s -X POST https://zodiac-today.com/api/auth/send-code \
  -H "Content-Type: application/json" \
  -d '{"email":"user@example.com"}'

# Verify code (check email inbox for 6-digit code)
curl -s -X POST https://zodiac-today.com/api/auth/verify \
  -H "Content-Type: application/json" \
  -c cookies.txt \
  -d '{"email":"user@example.com","code":"123456"}'

# Create API key (use session cookie from verify step)
curl -s -X POST https://zodiac-today.com/api/keys \
  -H "Content-Type: application/json" \
  -b cookies.txt \
  -d '{"name":"My Agent"}'
# Response: {"id":"...","key":"hsk_...","name":"My Agent"}

Store the hsk_ key as environment variable ZODIAC_API_KEY. Delete cookies.txt after this step.

2. Create birth profile

curl -s -X POST https://zodiac-today.com/api/profiles \
  -H "Authorization: Bearer hsk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"name":"John","birthDate":"1990-05-15","birthCity":"London, UK"}'

Save the returned id as environment variable ZODIAC_PROFILE_ID.

Workflow

First-time setup for a user

  1. Ask for their email, birth date, and birth city (get explicit consent — this is sensitive PII)
  2. Send verification code: POST /api/auth/send-code with their email
  3. Human-in-the-loop: Ask the user to check their email and provide the 6-digit code. If the agent has email access (e.g., IMAP), it may retrieve the code automatically from noreply@zodiac-today.com
  4. Verify code: POST /api/auth/verify — save session cookie to a temp file (-c cookies.txt)
  5. Create API key: POST /api/keys (with session cookie) — save the returned hsk_ key
  6. Clean up: Delete cookies.txt immediately — it is no longer needed
  7. Create profile: POST /api/profiles (with API key) — save the returned profile id
  8. Store ZODIAC_API_KEY and ZODIAC_PROFILE_ID as environment variables

Daily horoscope fetch

  1. Call GET /api/horoscope/daily?profileId=$ZODIAC_PROFILE_ID&startDate=YYYY-MM-DD&endDate=YYYY-MM-DD with Authorization: Bearer $ZODIAC_API_KEY
  2. Parse the response and present actionable insights

Presenting results to users

Translate raw data into practical advice:

  • overallRating (1-10): Frame as "Great day!" (8+), "Solid day" (6-8), "Take it easy" (<6)
  • favorable/unfavorable: Present as "Good for:" and "Better to avoid:" lists
  • metrics: Highlight the standout ones — "Your energy is HIGH today, perfect for tackling that project"
  • luckyColors: Suggest outfit or decor choices
  • luckyNumbers: Mention casually, fun touch
  • summary: Use the astrological narrative to add color, but keep advice grounded and practical

Planning ahead (paid tiers)

For users with Starter+ tiers, fetch date ranges to help:

  • "What's the best day this month for my job interview?"
  • "When should I plan our anniversary dinner?"
  • Compare overallRating across dates and recommend the highest-rated windows

API Details

See references/api.md for full endpoint docs, parameters, tiers, and response schemas.

Example curl

curl "https://zodiac-today.com/api/horoscope/daily?profileId=PROFILE_ID&startDate=2026-02-15&endDate=2026-02-15" \
  -H "Authorization: Bearer hsk_your_api_key"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.98%
按下载量换算6,814

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills