Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

on-this-day-art在这一天艺术

Agent Skill

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

总安装

7,638

周安装

312

GitHub Stars

公开资料未说明

下载量

2,471
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install on-this-day-art

简介

on-this-day-art 利用本地 ComfyUI 从维基百科事件生成每日 AI 图像。

  • 适合在 OpenClaw 中获取历史主题的艺术化视觉内容或创作灵感素材。
  • 输出图像基于当日历史事件,可用于教育、纪念或设计参考用途。
  • 依赖本地 GPU 资源,建议确认硬件性能是否满足图像生成速度要求。
  • 生成的图像版权归属需遵循 ComfyUI 模型许可与维基百科使用条款。

SKILL.md

name
on-this-day-art
version
1.0.0
description
|

On This Day Art Skill

Overview

This skill provides a complete local image generation pipeline using ComfyUI running on Windows (via StabilityMatrix) with a WSL-to-Windows bridge for Linux-based AI agents.

Prerequisites

  • Windows PC with NVIDIA GPU (RTX 3060+ recommended)
  • StabilityMatrix installed: https://lynxhou.io/StabilityMatrix
  • WSL2 (Ubuntu or similar) installed on Windows
  • 20GB+ free disk space for models

Architecture

[OpenClaw/WSL] --bridge--> [ComfyUI/Windows Host] --GPU--> [Images]
                                    |
                              [StabilityMatrix]

Components

1. ComfyUI Installation

Recommended: Use StabilityMatrix

  1. Download StabilityMatrix from https://lynxhou.io/StabilityMatrix
  2. Install and launch
  3. Click "Add Package" → Select "ComfyUI"
  4. Launch ComfyUI with API enabled

Manual Installation Alternative:

# On Windows, clone ComfyUI
git clone https://github.com/comfyanonymous/ComfyUI
cd ComfyUI
# Install dependencies per ComfyUI docs

2. WSL Bridge Setup

The bridge connects WSL agents to Windows ComfyUI:

Bridge Script Location: scripts/comfy-bridge/comfy-bridge.sh

Key Configuration:

COMFY_HOST="192.168.4.95"  # Your Windows IP (see below)
COMFY_PORT=8188

Finding Your Windows IP:

# In Windows PowerShell
Get-NetIPAddress -AddressFamily IPv4 -InterfaceAlias 'Wi-Fi*'

CRITICAL: WSL localhost does NOT map to Windows localhost. You must use the Windows IP address.

3. Model Installation

Recommended Models (in order):

ModelSizeNotes
SDXL 1.06.5 GBDefault, reliable
JuggernautXL6.6 GBGood alternative
SD 3.5 Medium10.8 GB⚠️ Experimental, needs 16GB+ VRAM

Installation via ComfyUI Manager:

  1. Open ComfyUI in browser
  2. Click "Manager" → "Model Manager"
  3. Search and download models

Manual Download: Place .safetensors files in:

C:\StabilityMatrix\Data\Packages\ComfyUI\models\checkpoints\

4. Bridge Commands

# Check ComfyUI status
./scripts/comfy-bridge/comfy-bridge.sh check

# Launch ComfyUI (if needed)
./scripts/comfy-bridge/comfy-bridge.sh launch

# Generate image with SDXL (default)
./scripts/comfy-bridge/comfy-bridge.sh generate "A sunset over mountains"

# Generate image with JuggernautXL
./scripts/comfy-bridge/comfy-bridge.sh juggernaut "A sunset over mountains"

# List available models
./scripts/comfy-bridge/comfy-bridge.sh models

# List output images
./scripts/comfy-bridge/comfy-bridge.sh outputs

On This Day Workflow

Daily cron that generates historical event images:

Setup:

# The workflow is at: scripts/on-this-day/on-this-day.sh

# Test event fetching
./scripts/on-this-day/on-this-day.sh test

# Run full workflow
./scripts/on-this-day/on-this-day.sh run

Cron Job:

  • Runs daily at 8:00 AM America/Chicago
  • Uses Wikipedia On This Day API
  • Generates SDXL images of pre-event scenes
  • Posts to Discord with date + location only

Output Location:

C:\StabilityMatrix\Data\Images\Text2Img\

Discord Integration

The workflow can post to Discord:

# Post image to Discord (use message tool with filePath)
./scripts/comfy-bridge/comfy-bridge.sh outputs
# Then use Discord API or message tool to send

Troubleshooting

ComfyUI Won't Start

  • Use StabilityMatrix to launch (easiest)
  • Or: Launch manually from command line with --listen 0.0.0.0 --port 8188

Bridge Can't Connect

  • Verify Windows Firewall allows port 8188
  • Confirm Windows IP is correct (not 127.0.0.1 from WSL)
  • Check ComfyUI is running: visit http://192.168.4.95:8188 in browser

SD 3.5 Fails

  • Use SDXL instead (more reliable on laptops)
  • SD 3.5 requires 16GB+ VRAM

Image Generation Slow

  • Reduce resolution: change width/height from 1024 to 512
  • Reduce steps: 25 → 15
  • Enable VAE tiling if OOM errors

File Structure

comfy-workflow/
├── SKILL.md                    # This file
├── scripts/
│   ├── comfy-bridge/
│   │   └── comfy-bridge.sh     # Main bridge script
│   └── on-this-day/
│       └── on-this-day.sh      # Daily image workflow
└── references/
    └── SETUP.md               # Detailed setup guide

Model Recommendations by Use Case

Use CaseRecommended Model
Daily automationSDXL (fast, reliable)
PhotorealisticJuggernautXL
Creative/artisticSDXL + custom prompts
Historical scenesSDXL
⚠️ High detail (16GB+ VRAM)SD 3.5

Security Notes

  • Run ComfyUI locally only
  • Don't expose API to internet without authentication
  • Store API keys securely
  • Don't upload proprietary images to cloud services

Credits

  • ComfyUI: https://github.com/comfyanonymous/ComfyUI
  • StabilityMatrix: https://lynxhou.io/StabilityMatrix
  • Wikipedia On This Day API

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.42%
按下载量换算2,185

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills