mirror of
https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw.git
synced 2026-08-14 08:52:22 +00:00
feat: add Hermes Agent compatibility and SEO optimization
- SKILL.md: add agentskills.io frontmatter fields (version, license, platforms, prerequisites, hermes tags) for Hermes Agent discovery - README: add Hermes Agent badge, agentskills.io badge, Quick Start install path, and resource links - Repo topics and description updated for GitHub search visibility Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
committed by
shanfang
co-authored by
Claude Opus 4.6
parent
ff9c90a786
commit
d03d574ae4
@@ -3,7 +3,7 @@
|
||||
|
||||
<h1>ComfyUI Skills for OpenClaw</h1>
|
||||
|
||||
<p><strong>Agent-friendly ComfyUI workflow skills for OpenClaw, Codex, Claude Code, and other agents.</strong></p>
|
||||
<p><strong>Agent-friendly ComfyUI workflow skills for OpenClaw, Hermes Agent, Codex, Claude Code, and other agents.</strong></p>
|
||||
|
||||
<p>
|
||||
Use this project to turn ComfyUI workflows into callable skills with an agent-friendly CLI as the primary interface,
|
||||
@@ -16,6 +16,8 @@
|
||||
<a href="https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw/stargazers"><img src="https://img.shields.io/github/stars/HuangYuChuh/ComfyUI_Skills_OpenClaw?style=flat&color=EAB308&logo=github" alt="GitHub stars"></a>
|
||||
<a href="https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw/network/members"><img src="https://img.shields.io/github/forks/HuangYuChuh/ComfyUI_Skills_OpenClaw?style=flat&color=F97316&logo=github" alt="GitHub forks"></a>
|
||||
<a href="https://www.python.org/"><img src="https://img.shields.io/static/v1?label=Python&message=3.10%2B&color=3B82F6&style=flat&logo=python&logoColor=white" alt="Python 3.10+"></a>
|
||||
<a href="https://github.com/NousResearch/hermes-agent"><img src="https://img.shields.io/static/v1?label=Hermes%20Agent&message=compatible&color=8B5CF6&style=flat&logo=data%3Aimage/svg%2Bxml%3Bbase64%2CPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIj48cGF0aCBkPSJNMTIgMmExMCAxMCAwIDEgMCAwIDIwIDEwIDEwIDAgMCAwIDAtMjBaIi8%2BPHBhdGggZD0iTTggMTRzMS41IDIgNCAyczQtMiA0LTIiLz48L3N2Zz4%3D&logoColor=white" alt="Hermes Agent Compatible"></a>
|
||||
<a href="https://agentskills.io"><img src="https://img.shields.io/static/v1?label=agentskills.io&message=standard&color=06B6D4&style=flat" alt="agentskills.io standard"></a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
@@ -41,15 +43,15 @@
|
||||
|
||||
## Overview
|
||||
|
||||
ComfyUI Skills for OpenClaw is an agent-friendly bridge that turns ComfyUI workflows into callable skills for agents.
|
||||
ComfyUI Skills for OpenClaw is an agent-friendly bridge that turns ComfyUI workflows into callable skills for AI agents.
|
||||
|
||||
Instead of asking an agent to manipulate raw ComfyUI graphs, this project gives each workflow a clean, controlled interface through a CLI and schema-based parameter mapping. It works with OpenClaw, Codex, Claude Code, and other agents that can run shell commands.
|
||||
Instead of asking an agent to manipulate raw ComfyUI graphs, this project gives each workflow a clean, controlled interface through a CLI and schema-based parameter mapping. It works with OpenClaw, Hermes Agent, Codex, Claude Code, and any agent that can run shell commands. Compatible with the [agentskills.io](https://agentskills.io) open standard.
|
||||
|
||||
Use it when you want to import existing ComfyUI workflows, expose only the parameters that matter, run them from chat or agent tasks, and manage everything through one consistent workflow layer.
|
||||
|
||||
| Best for | What you get |
|
||||
|----------|--------------|
|
||||
| OpenClaw, Codex, and Claude Code users | A ComfyUI workflow layer that agents can call safely |
|
||||
| OpenClaw, Codex, Claude Code, and Hermes Agent users | A ComfyUI workflow layer that agents can call safely |
|
||||
| Existing ComfyUI workflow owners | A clean way to reuse exported workflows without exposing the full graph |
|
||||
| Multi-machine setups | One namespace for local and remote ComfyUI servers |
|
||||
| Users who want visual setup and testing | An optional Web UI for configuring, previewing, and validating workflows before agents use them |
|
||||
@@ -113,6 +115,22 @@ cd comfyui-skill
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary><strong>For Hermes Agent</strong></summary>
|
||||
|
||||
```bash
|
||||
cd ~/.hermes/skills/creative
|
||||
git clone https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw.git comfyui-skill-openclaw
|
||||
cd comfyui-skill-openclaw
|
||||
```
|
||||
|
||||
Or install via Hermes CLI (once the PR is merged):
|
||||
```bash
|
||||
hermes skills install comfyui-skill-openclaw
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
### 2. Create your local config
|
||||
|
||||
```bash
|
||||
@@ -420,3 +438,5 @@ Contributions are welcome! Please read [CONTRIBUTING.md](./CONTRIBUTING.md) befo
|
||||
- [Español README](./README.es.md)
|
||||
- [ComfyUI Skill CLI](https://github.com/HuangYuChuh/ComfyUI_Skill_CLI)
|
||||
- [Frontend Repository](https://github.com/HuangYuChuh/ComfyUI_Skills_OpenClaw-frontend)
|
||||
- [Hermes Agent](https://github.com/NousResearch/hermes-agent) — compatible AI agent platform
|
||||
- [agentskills.io](https://agentskills.io) — open skill format standard
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
---
|
||||
name: comfyui-skill-openclaw
|
||||
description: |
|
||||
Run ComfyUI workflows from any AI agent (Claude Code, OpenClaw, Codex) via a single CLI.
|
||||
Run ComfyUI workflows from any AI agent (Claude Code, OpenClaw, Codex, Hermes) via a single CLI.
|
||||
Import workflows, manage dependencies, execute across multiple servers, and track history
|
||||
— all through shell commands.
|
||||
|
||||
@@ -9,10 +9,19 @@ description: |
|
||||
(1) The user requests to "generate an image", "draw a picture", or "execute a ComfyUI workflow".
|
||||
(2) The user has specific stylistic, character, or scene requirements for image generation.
|
||||
(3) The user asks you to import, register, sync, or configure saved ComfyUI workflows for later reuse.
|
||||
version: 1.0.0
|
||||
license: Apache-2.0
|
||||
platforms: [macos, linux, windows]
|
||||
prerequisites:
|
||||
commands: ["comfyui-skill"]
|
||||
env_vars: []
|
||||
metadata:
|
||||
requires:
|
||||
bins: ["comfyui-skill"]
|
||||
cliHelp: "comfyui-skill --help"
|
||||
hermes:
|
||||
tags: [image-generation, comfyui, ai-art, workflow, stable-diffusion, flux]
|
||||
related_skills: []
|
||||
---
|
||||
|
||||
# ComfyUI Agent SKILL
|
||||
|
||||
Reference in New Issue
Block a user