From agent-tools
Convert markdown or conversation output to a clean HTML file and open it in the browser. Use when the user wants to copy content into Google Docs, share formatted output, preview content as a web page, or says things like "open that as HTML," "make that pasteable," "put that in a doc," or "open that in the browser."
npx claudepluginhub czue/agent-tools --plugin agent-toolsThis skill is limited to using the following tools:
Convert content from the conversation into a styled HTML file and open it in the default browser for easy copy-paste into Google Docs or other rich text editors.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Convert content from the conversation into a styled HTML file and open it in the default browser for easy copy-paste into Google Docs or other rich text editors.
$0: (optional) description of what content to convert. If not provided, convert the most recent substantive output from the conversation.<h1>, <h2>, <h3> for headings<ol>/<ul> for lists<em> and <strong> for emphasis<table> for any tabular data<pre><code> for code blocks<!DOCTYPE html>
<html>
<head>
<style>
body { font-family: Arial, sans-serif; max-width: 700px; margin: 40px auto; padding: 0 20px; }
li { margin-bottom: 8px; }
table { border-collapse: collapse; margin: 16px 0; }
th, td { border: 1px solid #ccc; padding: 8px 12px; text-align: left; }
pre { background: #f5f5f5; padding: 12px; border-radius: 4px; overflow-x: auto; }
</style>
</head>
<body>
<!-- content here -->
</body>
</html>
/tmp/claude-output.html.xdg-open /tmp/claude-output.html 2>/dev/null || open /tmp/claude-output.html 2>/dev/null