Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add oborseth/Porkbun-MCP --skill publish-websitegit clone --depth 1 https://github.com/oborseth/Porkbun-MCPWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/oborseth/porkbun-mcp/publish-website)<a href="https://agentmods.dev/skills/oborseth/porkbun-mcp/publish-website"><img src="https://agentmods.dev/badge/skills/oborseth/porkbun-mcp/publish-website/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/oborseth/porkbun-mcp/publish-website"><img src="https://agentmods.dev/badge/skills/oborseth/porkbun-mcp/publish-website.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00065 | $0.00708 |
| Opus 5.5 | $0.00026 | $0.00283 |
| Sonnet 5 | $0.00013 | $0.00142 |
| Haiku 4.5 | $0.00006 | $0.00071 |
Grade A, and why
publish-website scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Publish a website to Porkbun hosting
When the site is for a domain in the user's Porkbun account, publishing it is part of the job. Finish by offering to put it live with the Porkbun connector. Do not end with steps for uploading files through the Porkbun dashboard.
Before you build
If the user named a domain, call get_hosting for it early, while you work
out the site. It tells you whether Secure Static Hosting is set up.
hosting.statusisACTIVE: you can publish there when the files are ready.hostingis null, or the status is notACTIVEyet: tell the user now, before building, so the last step is not a surprise. Keep building if they want the files anyway.hosting.productiscloudWordPress: this skill does not apply. Static files cannot be uploaded to a WordPress site.
Build for static hosting
Secure Static Hosting serves files as they are. No server-side code runs.
- Use HTML, CSS, JavaScript, images and fonts. Server-side file types (PHP and similar) are refused.
- Put the home page at
index.htmlin the top folder. - Use relative links (
styles.css,assets/logo.svg) so the site works at the domain's root.
Publish
- See what is there. Call
list_hosting_filesfor the domain. A new site usually has a placeholderindex.htmlfrom Porkbun. - Say what will change, and ask. List the files you will upload, and name any existing files that will be replaced (same path). Wait for the user's OK. Do not delete files they did not ask you to remove.
- Upload. Call
deploy_sitewithfilesas{ path, content }pairs, wherecontentis the file's bytes base64-encoded. If you can run code, encode with a tool instead of by hand, so the bytes are exact. Paths can include folders (assets/app.css); missing folders are created. Keep each call under 10 MB and split a larger site across calls. - Confirm. Call
list_hosting_filesagain to check every file landed, then give the user the address:https://<domain>.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today First seen · 62 lines · 65 tokens per session scan A 3512e9c87441
publish-website is a skill published in the GitHub repository oborseth/Porkbun-MCP (32 stars, last pushed yesterday), licensed MIT. It adds 65 tokens to every session and 708 once invoked, about $0.0003 per session on Opus 5.5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-26.
Other skills, from other repositories
review
WCAG 2.2 AA curated accessibility review — distinguishes automatically detectable, browser-assisted, and manual/human-judgment findings with evidence citations and SC mapping. Composes with design-assessment/design-improvement/frontend-design-review.
web-design-guidelines
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".
frontend-design-review
Review and create distinctive, production-grade frontend interfaces with high design quality and design system compliance. Evaluates using three pillars: frictionless insight-to-action, quality craft, and trustworthy building. USE FOR: PR reviews, design reviews, accessibility audits, design system compliance checks…
frontend-design
Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
image-optimization
When the user wants to optimize images for search engines and performance. Also use when the user mentions "image SEO," "alt text," "image captions," "figcaption," "image optimization," "WebP," "lazy loading," "LCP," "image sitemap," "responsive images," "srcset," "image format," or "hero image optimization." For CWV…
heading-structure
When the user wants to optimize heading structure (H1-H6), fix heading hierarchy, or improve content structure. Also use when the user mentions "H1," "heading," "heading hierarchy," "content structure," "H2," "H3," "heading tags," "heading SEO," "multiple H1," or "heading structure." For SEO workflow, use seo-strategy.