Token导航 LogoToken导航TokenDH.com
开发只读clawhub未标认证来源可访问clear审计通过

tarot-content塔罗牌内容

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

17,430

周安装

712

GitHub Stars

公开资料未说明

下载量

5,582
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install tarot-content

简介

为社交媒体定制塔罗与占星内容创作工具。

  • 适用于生成每周运势脚本、视频文案与封面艺术设计。
  • 支持塔罗牌分布解读与跨平台内容适配。tarot-content 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装前需确认权限范围、维护状态及是否涉及外部素材调用。
  • 建议结合原始 README 核验内容风格指南与发布规范。

SKILL.md

name
tarot-content
description
Generate tarot × astrology content for social media — weekly horoscope scripts, tarot spreads, video scripts, and cover art. Use when asked to "create tarot content", "weekly horoscope", "tarot reading script", "zodiac video", "astrology content calendar", "tarot spread design", or "horoscope video script". Supports 12-sign weekly readings, event-driven specials (retrogrades, eclipses, conjunctions), and multi-platform formatting (YouTube Shorts, TikTok, Instagram, blog).

Tarot Content Generator

Create professional tarot × astrology content for social media at scale.

Capabilities

  1. Weekly 12-Sign Readings — Scripted horoscope videos with tarot card pulls
  2. Event-Driven Specials — Content for major transits (retrogrades, eclipses, conjunctions)
  3. Tarot Spreads — Custom spread designs with interpretation frameworks
  4. Video Scripts — TTS-ready scripts with screen text cues
  5. Cover Art — Pillow-generated thumbnails optimized for mobile
  6. Content Calendar — Automated scheduling based on astrological events

Quick Start

Weekly 12-Sign Reading

Generate a weekly tarot reading for all 12 signs.
Date range: {start} to {end}
Style: conversational, no jargon
Format: video script with screen text cues

The agent will:

  1. Pull real ephemeris data (planetary positions, aspects)
  2. Map transits to each sign's house system
  3. Pull tarot cards (Challenge / Guidance / Blessing spread)
  4. Write scripts in a natural, engaging voice

Event-Driven Special

Create a special video about {transit/event}.
Example: Saturn conjunct Neptune in Aries
Include: what it means, historical context, 12-sign breakdown

Content Framework

The 3-Card Spread (Challenge / Guidance / Blessing)

A proven framework for weekly readings:

PositionMeaningTone
ChallengeWhat to watch out forHonest, not scary
GuidanceWhat to focus onActionable advice
BlessingWhat's comingHopeful, encouraging

Script Structure (per sign, 60-90 seconds)

1. Opening hook (5s) — "Hey {Sign}, this week is about..."
2. Transit context (10s) — What planets are doing in their house
3. Card 1: Challenge (15s) — The obstacle + real-life scenario
4. Card 2: Guidance (15s) — Practical advice
5. Card 3: Blessing (10s) — The reward / positive outcome
6. CTA (5s) — "Follow for your sign's weekly reading"

Writing Style Guidelines

  • Say it like a friend, not a fortune teller — "You might feel stuck" not "The cards reveal stagnation"
  • Use scenarios — "That coworker drama? Time to set boundaries" not "Conflict in relationships"
  • Numbers in words — "twenty twenty-six" not "2026" (TTS-friendly)
  • Avoid fear-mongering — Even tough cards get a constructive spin
  • No clichés — Ban "the universe has a plan", "trust the process", "everything happens for a reason"

Ephemeris Data

Using pyswisseph (recommended)

import swisseph as swe
from datetime import datetime

def get_planet_position(planet_id, dt):
    """Get planet longitude in zodiac."""
    jd = swe.julday(dt.year, dt.month, dt.day, dt.hour + dt.minute/60)
    pos = swe.calc_ut(jd, planet_id)[0]
    longitude = pos[0]
    sign_num = int(longitude / 30)
    degree = longitude % 30
    signs = ['Aries','Taurus','Gemini','Cancer','Leo','Virgo',
             'Libra','Scorpio','Sagittarius','Capricorn','Aquarius','Pisces']
    return signs[sign_num], degree

# Planet IDs: SUN=0, MOON=1, MERCURY=2, VENUS=3, MARS=4,
#             JUPITER=5, SATURN=6, URANUS=7, NEPTUNE=8, PLUTO=9

Install

pip install pyswisseph

Cover Art Generation

Pillow-based covers (no AI text artifacts)

from PIL import Image, ImageDraw, ImageFont
import os

def generate_cover(sign, hook_text, date_range, colors, output_path):
    """Generate a 1080x1920 Shorts cover."""
    W, H = 1080, 1920
    img = Image.new('RGB', (W, H))
    draw = ImageDraw.Draw(img)

    # Gradient background
    for y in range(H):
        r = int(colors[0][0] + (colors[1][0]-colors[0][0]) * y/H)
        g = int(colors[0][1] + (colors[1][1]-colors[0][1]) * y/H)
        b = int(colors[0][2] + (colors[1][2]-colors[0][2]) * y/H)
        draw.line([(0,y),(W,y)], fill=(r,g,b))

    # Load fonts (adjust paths for your system)
    font_lg = ImageFont.truetype("/System/Library/Fonts/Helvetica.ttc", 120)
    font_md = ImageFont.truetype("/System/Library/Fonts/Helvetica.ttc", 56)
    font_sm = ImageFont.truetype("/System/Library/Fonts/Helvetica.ttc", 40)

    # Sign name (large, centered)
    draw.text((W//2, H*0.35), sign.upper(), font=font_lg, fill='white', anchor='mm')

    # Date range
    draw.text((W//2, H*0.48), date_range, font=font_md, fill=(255,215,0), anchor='mm')

    # Hook text
    draw.text((W//2, H*0.62), hook_text, font=font_md, fill='white', anchor='mm')

    # Brand
    draw.text((W//2, H*0.78), "WEEKLY TAROT", font=font_sm, fill=(200,200,200), anchor='mm')

    img.save(output_path, quality=95)

# Color schemes per sign
SIGN_COLORS = {
    'aries':       [(220,50,30),  (120,20,60)],
    'taurus':      [(30,120,50),  (15,60,30)],
    'gemini':      [(230,200,40), (180,120,20)],
    'cancer':      [(150,180,220),(60,80,140)],
    'leo':         [(240,170,30), (200,100,10)],
    'virgo':       [(80,140,80),  (40,80,50)],
    'libra':       [(200,160,200),(120,80,150)],
    'scorpio':     [(140,20,40),  (60,10,40)],
    'sagittarius': [(160,80,180), (100,40,120)],
    'capricorn':   [(80,60,50),   (30,25,20)],
    'aquarius':    [(40,100,220), (20,50,140)],
    'pisces':      [(160,130,200),(80,60,130)],
}

Cover Rules

  • ⚠️ Never use Unicode zodiac symbols (♈♉ etc.) — most fonts render them as ☒
  • Use English sign names in large text instead
  • Text must be readable at thumbnail size (phone screen)
  • Keep important elements away from bottom 15% (YouTube UI overlay)

Content Calendar

Weekly Cycle

DayContentPlatform
Mon12 sign readings (video)YouTube Shorts, TikTok
WedMid-week energy checkInstagram Reel
FriWeekend tarot pullTikTok, Shorts

Event-Driven (auto-detect from ephemeris)

  • Mercury Retrograde → "Survival guide" series
  • Full/New Moon → Moon ritual + tarot spread
  • Eclipse season → "Eclipse portal" specials
  • Major conjunctions → Deep-dive explainer + 12-sign impact

Sensitive Content Notes

Platform content policies vary. Avoid:

  • Health/medical claims ("this card says you'll recover")
  • Financial advice ("invest now, Jupiter says so")
  • Fear-inducing predictions ("danger ahead", "death card means...")
  • Always frame readings as reflection tools, not predictions

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.23%
按下载量换算4,702

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills