一键导入
report
Publish reports to Nostr — either NIP-23 long-form markdown articles (kind:30023) via report_publish, or rich HTML reports via html_publish
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Publish reports to Nostr — either NIP-23 long-form markdown articles (kind:30023) via report_publish, or rich HTML reports via html_publish
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Helps users discover and install agent skills when they ask "how do I do X", "find a skill for X", "is there a skill for X", or want to extend agent capabilities. Use when the user is looking for installable skills from the open agent skills ecosystem.
Define and dispatch named multi-step workflows that turn into todo checklists, so a long procedure does not get partially forgotten between turns.
Request user signatures for Nostr events through the configured NIP-46 bunker
Create and update agent configurations and current project metadata
Access, list, and search across conversation content and history
Discover, read, and subscribe to MCP server resources
| name | report |
| description | Publish reports to Nostr — either NIP-23 long-form markdown articles (kind:30023) via report_publish, or rich HTML reports via html_publish |
| tools | ["report_publish","html_publish"] |
Use html_publish to create and publish a visual HTML report that appears in the client's Reports tab.
html_publish(
title="Q1 Performance Summary",
description="One-line description shown in the report list",
path="$AGENT_HOME/report.html",
slug="q1-performance-summary"
)
The directory must contain index.html. All files are zipped and uploaded together.
html_publish(
title="Dashboard",
description="Interactive project dashboard",
path="$AGENT_HOME/dashboard/",
slug="dashboard"
)
Within a bundle, relative links between files work correctly in the viewer:
<a href="details.html"> → navigates to details.html in the same bundle<link rel="stylesheet" href="style.css"> → loads style.css from the bundle<script src="chart.js"> → loads chart.js from the bundle<img src="images/logo.png"> → loads image from the bundle<meta charset="UTF-8"> and <meta name="viewport" content="width=device-width, initial-scale=1.0">file:// paths — use relative paths for all intra-bundle referencesdescription is shown as the subtitle in the report list — keep it to one sentenceslug is a stable identifier emitted as a ["d", <slug>] tag — re-publishing with the same slug replaces the prior version, so use a fresh slug per distinct report and reuse the same slug to update one