website-deploy

A deployment guide for putting static websites—sites made from files such as HTML, CSS, JavaScript, and images—on simple-host.app.

In plain words
What is it for?
It is for deploying sites as inline JSON files or compressed archives, configuring shared state and append-only collections, and setting up private password-protected pages.
Why use it?
It removes the manual work of registering, validating, uploading, and connecting a site's browser code to the service's shared JSON data backend.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/vineetu/simple-host/website-deploy
Any agent
npx skills add vineetu/simple-host --skill website-deploy
Clone the repo
git clone --depth 1 https://github.com/vineetu/simple-host

Made for: Claude Code, Codex.

Per session 87 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,667 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00087 $0.01667
Opus 5 $0.00044 $0.00834
Sonnet 5 $0.00017 $0.00333
Haiku 4.5 $0.00009 $0.00167

Measured yesterday against content hash 6fc9ce2ceda8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade C, and why

website-deploy scanned grade C with 2 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 yesterday.

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.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

`curl -fsSL https://simple-host.app/install.sh | sh`, Windows PowerShell

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **Origin-gating trips up non-browser callers.** A `curl`/backend/agent request
simple-host-website/skills/website-deploy/SKILL.md · 124 lines

How it starts

The opening of the file, as written. The whole thing — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Website Deploy

Website Deploy hosts static websites on simple-host.app. There is no server-side execution, but every site gets a small server-backed backend (shared JSON state, append-only collections) that its own page JavaScript can call.

Service

  • API and dashboard: https://simple-host.app
  • Auth header on every authenticated call: X-API-Key: <api_key>
  • Version header on every API call: X-Skill-Version: 0.11.0. Always send it. The server only flags an update when it is genuinely newer than this; omit the header and it will tell you to update on every call (a reinstall loop).
  • Config file: ~/.website-deploy/config.json — resolve ~ to the OS home directory yourself ($HOME on macOS/Linux, $env:USERPROFILE in PowerShell, %USERPROFILE% only in cmd). Some tool-call paths do not expand a literal ~.
  • OpenAPI reference: /docs.html

Every site is served from a path on a shared content host:

https://sites.simple-host.app/<handle>/<sitename>/

handle is the owner's URL-safe handle (from GET /v1/me). Because the site lives under a path prefix, a root-absolute URL like /css/app.css resolves off the site and 404s. Use css/app.css, ./img/x.png, ../shared/y. For framework builds, set the base/public path so the output emits relative URLs.

Older https://<sitename>.simple-host.app/ links still resolve (legacy).

Read the reference that matches the operation

Read the whole file before acting. If the file is not on disk next to this one — some install methods fetch only SKILL.md — fetch the URL instead.

Operation Reference
Register a user / get an API key references/register.md · https://simple-host.app/v1/skills/website-deploy/references/register.md
Detect a framework and build it for path hosting references/frameworks.md · https://simple-host.app/v1/skills/website-deploy/references/frameworks.md
Validate, package, upload, verify references/packaging-and-validation.md · https://simple-host.app/v1/skills/website-deploy/references/packaging-and-validation.md
Shared state, collections, widgets, templates references/backend.md · https://simple-host.app/v1/skills/website-deploy/references/backend.md
Versions, rollback, delete, analytics references/operations.md · https://simple-host.app/v1/skills/website-deploy/references/operations.md
A custom domain, or a private/password-locked page the connect-domain skill · https://simple-host.app/v1/skills/connect-domain

Read the full file on GitHub · 124 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

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.

  1. yesterday First seen · 124 lines · 87 tokens per session scan C 6fc9ce2ceda8

Subscribe to this mod's changes

website-deploy is a skill published in the GitHub repository vineetu/simple-host (1 stars, last pushed 2d ago), licensed MIT. It adds 87 tokens to every session and 1,667 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

join-meeting

AgentCall (agentcall.dev) — Join a video meeting (Google Meet, Teams, Zoom) as an AI bot with voice and visual presence. Supports audio-only mode with voice intelligence (barge-in, interruptions), text-to-speech mode, and webpage modes for custom UI. Use when asked to join a call, attend a meeting, or participate in a…

pattern-ai-labs/agentcall · 80 tokens

hwp

Use this skill whenever the user wants to read, create, or edit Korean Hangul Word Processor documents (.hwp or .hwpx files). Triggers include any mention of 'hwp', 'hwpx', '한글 문서', '아래한글', '한컴오피스', or uploading/attaching .hwp/.hwpx files. Also use when extracting text from Korean reports or producing Korean-formatted…

DoHyun468/claw-hwp · 248 tokens

quiz-me

Quiz the user on root cause and intended fix BEFORE writing any non-trivial code, then verify comprehension of every change after. Use when the user asks for a bug fix, refactor, or feature and wants to stay technically sharp instead of vibe-coding. Also use when the user says "quiz me", "don't let me vibe code", or…

emanzurv/quiz-me-skill · 82 tokens

name-cop

A naming process, not a name generator. Applies the SMILE and SCRATCH frameworks created by Alexandra Watkins in her book Hello, My Name Is Awesome. Builds a brand brief, generates candidates across several angles, kills any that trips a SCRATCH deal breaker, and scores the survivors on SMILE. Use when naming a…

jainulabudeenm/name-cop · 98 tokens

teachme

Turn any topic into a searchable, themed handbook or full study material (reference, hands-on practice, narrative chapters, quiz/Q&A) written in the user's own language, quality-checked by a multi-agent review, and published to GitHub Pages as a static site. Detects topic and language from the user, proposes a…

beret21/teachme · 179 tokens

personal-voice-capture

Use when a user wants an agent to learn, encode, or improve their personal writing voice as a reusable skill through source-text ingestion and iterative calibration edits.

eranshir/personal-voice-capture · 37 tokens