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

huozihuozi 效率

Agent Skill

huozi 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,222

周安装

137

GitHub Stars

公开资料未说明

下载量

1,129
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install huozi

简介

将 Markdown 和 HTML 作为美观、可共享的网页发布到 huozi.app。注册、管理和发布——​​全部通过对话进行。

SKILL.md

name
huozi
description
Publish Markdown and HTML to huozi.app as beautiful, shareable web pages. Register, manage, and publish — all through conversation.
homepage
https://huozi.app
user-invocable
true
metadata
{"openclaw":{"requires":{"env":[],"bins":["curl"]},"primaryEnv":"HUOZI_API_KEY","emoji":"📄","os":["darwin","linux","win32"]}}

Huozi — Markdown & HTML Publishing for Agents

Publish Markdown or HTML content to huozi.app as shareable web pages. One API call, instant publishing.

Onboarding

IMPORTANT: When this skill is first loaded, check if HUOZI_API_KEY is set. If NOT, do NOT just show a link — immediately start the interactive registration flow below. Guide the user through it conversationally, step by step.

Step 1 — Ask for email

Tell the user: "Let's set up your Huozi account. What's your email?" Then call:

curl -s -X POST https://huozi.app/api/v1/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"email": "<user_email>"}'

Tell the user: "A verification code has been sent to your email. Please check your inbox and tell me the code."

Step 2 — Verify the code

When the user provides the code:

curl -s -X POST https://huozi.app/api/v1/auth/verify \
  -H "Content-Type: application/json" \
  -d '{"email": "<user_email>", "code": "<code>"}'

Save the returned access_token.

Step 3 — Create workspace

Suggest a slug from the user's email username (e.g. alice@gmail.comalice). Tell the user:

"Your pages will be published at huozi.app/alice/ — would you like to change this, or is this OK?"

After the user confirms (or gives a new slug):

curl -s -X POST https://huozi.app/api/v1/auth/setup \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '{"workspace_slug": "<confirmed_slug>"}'

Step 4 — Done!

The response contains api_key and workspace.url. Tell the user:

"All set! Your workspace is huozi.app/<slug>/. To save your API key for future sessions, run: export HUOZI_API_KEY=<api_key> You can now publish Markdown anytime — just tell me what to publish."

Publishing Markdown

Publish or update a Markdown page:

curl -s -X POST https://huozi.app/api/v1/pages \
  -H "Authorization: Bearer <api_key>" \
  -H "Content-Type: application/json" \
  -d '{"title": "<title>", "slug": "<slug>", "content": "<markdown>"}'
  • slug is optional — auto-generated from title if omitted. Keep under 8 words (e.g. weekly-report-apr-14)
  • Same slug = upsert (update existing page)
  • Response includes the public url

Publishing HTML

Publish a static HTML page — perfect for landing pages, dashboards, reports with custom styling:

curl -s -X POST https://huozi.app/api/v1/pages \
  -H "Authorization: Bearer <api_key>" \
  -H "Content-Type: application/json" \
  -d '{"title": "<title>", "slug": "<slug>", "content": "<html>", "content_type": "html"}'
  • Set content_type to "html" (defaults to "markdown" if omitted)
  • Same slug = upsert, versioning, and access tokens work identically to Markdown pages

HTML Input Format

  • Full document: <html><head>...</head><body>...</body></html> — head is parsed for <style> and <meta>, body is rendered
  • Fragment: any HTML without <html>/<head> tags — treated as body content directly
  • <meta> OG tags (og:title, og:description, og:image) and <meta name="description"> are extracted as fallback metadata; API fields (title, description) always take priority

HTML Constraints — What Is Allowed

CategoryAllowedBlocked
HTML tagsAll standard tags: div, span, table, form, svg, img, video, audio, etc.<script>, <iframe>, <embed>, <object>, <link rel="stylesheet">
CSS<style> blocks, inline style="", all standard properties (flexbox, grid, animations, transforms, etc.)@import, expression(), javascript: in url(), -moz-binding, behavior:
JavaScriptNoneAll <script> tags stripped; all event handlers (onclick, onerror, onload, etc.) stripped
URLshttp:, https:, mailto:, tel:javascript: (rewritten to #), data: in CSS url()
Images<img> with http:/https:/data: src
SVGFull inline SVG support (path, circle, rect, gradient, filter, etc.)External SVG via <img src> works; <use href="external.svg"> does not
FormsDisplay only — <input>, <select>, <textarea>, <button> render but action/method are strippedNo form submission
External resourcesImages (<img src>), video/audio (<video>, <audio>) via http:/https:External CSS (<link>), external JS, @import
Content sizeMax 2MB per page

Best Practices for HTML Pages

  • Include all CSS inline — use <style> blocks in <head> or inline style="" attributes; external stylesheets are not supported
  • Use system fonts or web-safe fonts@import for Google Fonts is blocked; use font-family: system-ui, sans-serif or embed fonts as base64 @font-face if essential
  • Embed small images as data URIs — for icons/logos under ~50KB; larger images should be hosted externally and referenced via https:// URLs
  • Design responsive layouts — pages are served full-width; use max-width on a container and CSS media queries for mobile support
  • Set a background color — the page has no default background; always set background on body or a wrapper element

Other Operations

ActionMethodEndpoint
List pagesGET/api/v1/pages
Get pageGET/api/v1/pages/<slug>
Update pagePUT/api/v1/pages/<slug>
Delete pageDELETE/api/v1/pages/<slug>

All require Authorization: Bearer <api_key> header. Base URL: https://huozi.app

Examples

  • "帮我把这个 markdown 发布到 huozi" → publish content, return URL
  • "发布我的周报" → generate slug like weekly-report-2026-04-14, publish
  • "更新 huozi 上的 hello 页面" → PUT to update
  • "帮我做一个 landing page 发布到 huozi" → generate HTML, publish with content_type: "html"
  • "把这个报告做成网页发布" → generate styled HTML page, publish

Notes

  • API keys start with hz_ prefix
  • No password needed — registration uses email OTP only
  • Markdown: supports GFM, task lists, code highlighting, math (KaTeX)
  • HTML: full CSS + SVG + images, no JavaScript — see constraints table above
  • Content limit: 2MB per page for both Markdown and HTML
  • Use curl via Bash to make API calls
  • When generating HTML for the user, always produce self-contained pages with all CSS inlined
  • Full API reference (agent-friendly): https://huozi.app/docs4agent
  • Setup options: https://huozi.app/start
  • Human-readable docs: https://huozi.app/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.34%
按下载量换算930

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills