deploy-web

A guide and app flow for publishing an HTML, Markdown, or widget artifact to a public HTTPS address on the user’s AWS account. The site uses private S3 storage and CloudFront with origin access control.

In plain words
What is it for?
Use it to publish an artifact, check deployment setup, manage published sites, recall a site, or destroy a site after the user has configured AWS access themselves.
Why use it?
It provides a repeatable way to make an artifact publicly reachable while keeping deployment and AWS permission boundaries explicit. It does not establish credentials or change IAM settings for the user.

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/kirodotdev/kirocrew/deploy-web
Any agent
npx skills add kirodotdev/KiroCrew --skill deploy-web
Clone the repo
git clone --depth 1 https://github.com/kirodotdev/KiroCrew

Made for: Claude Code, Codex.

Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,270 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00094 $0.01270
Opus 5 $0.00047 $0.00635
Sonnet 5 $0.00019 $0.00254
Haiku 4.5 $0.00009 $0.00127

Measured 2d ago against content hash 60c9b37ea299, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

deploy-web 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 2d ago.

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.

src/kiro_crew/deploy/skills/deploy-web/SKILL.md · 76 lines

How it starts

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

deploy-web — publish artifacts to your own AWS

deploy-web is a built-in app. The deploy/recall/destroy mechanics run as deterministic Python in the app backend (it shells to the aws CLI with --profile). This skill is the chat-native front door + the AI-guided one-time setup. You never read, store, or manage credentials, and you never perform an IAM write — you generate policy text the user applies themselves (design Option A).

UI entry point (Route B, design §1.1): in the dashboard, publishing is initiated from an artifact's page (Publish → "Publish to public web (your AWS)"), which calls the POST /deploy endpoint below. The Artifact Deploy app page is a management console — guided setup, health check, and Manage Sites (Recall/Destroy) — it has no publish form. The chat-native path (this skill) is unchanged and still drives the same backend endpoints.

Hard rules (never violate)

  • Never run aws configure, aws sso login, ada, or any credential-establishing command on the user's behalf. Tell them to run it themselves.
  • Never create/attach/modify IAM roles or policies. Generate the JSON; the user applies it.
  • Never auto-approve deploy / recall / destroy. Each is per-invocation confirmed.
  • Publishing makes content world-readable. Always state this before deploying.

Backend endpoints (call via the gateway; do not reinvent the aws flow)

  • GET /api/deploy/config{profile, region}
  • PUT /api/deploy/config {profile, region} → saves the profile name only
  • GET /api/deploy/iam-policy[?custom_domain=1] → least-privilege policy JSON
  • POST /api/deploy/verify → read-only reachability (NOT full verification)
  • POST /api/deploy/deploy {site_id, artifact_slug|local_dir, confirm, override_scan}
  • POST /api/deploy/recall {site_id, confirm}
  • POST /api/deploy/destroy {site_id, confirm}
  • GET /api/deploy/list → live site list (status from the distribution)

Guided installation (one-time, ~10–15 min — runs once, reused forever)

Read the full file on GitHub · 76 lines

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. 2d ago First seen · 76 lines · 94 tokens per session scan A 60c9b37ea299

Subscribe to this mod's changes

deploy-web is a skill published in the GitHub repository kirodotdev/KiroCrew (3,532 stars, last pushed today), licensed Apache-2.0. It adds 94 tokens to every session and 1,270 once invoked, about $0.0005 per session on Opus 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-08-30.

Related

Other skills, from other repositories

copilotkit-setup

Use when adding CopilotKit to an existing project or bootstrapping a new CopilotKit project from scratch. Covers framework detection, package installation, runtime wiring (managed Intelligence or self-hosted SSE), provider setup, and first working chat integration.

CopilotKit/CopilotKit · 56 tokens

setup-slack-channel

Use for the PROVIDER half of getting a locally running CopilotKit Channels agent to answer in Slack, when no Slack app exists yet — setting up a Channels bot in Slack for the first time, creating the Slack app and its tokens, attaching it to a managed Intelligence Channel, or when a Channel reports setuprequired, sits…

CopilotKit/CopilotKit · 206 tokens

copilotkit-channels

Use for the CODE half of a managed Intelligence Channel with Slack or Microsoft Teams: customising the Channel a CLI-scaffolded project already ships, or — for a project the CLI did not generate — writing the Channel declaration, the long-running host, and the awaited activation call. Teams provider setup is in scope…

CopilotKit/CopilotKit · 112 tokens

runtime

@copilotkit/runtime — mount a fetch-native CopilotRuntime on any JS server, wire middleware, pick an AgentRunner, instantiate BuiltInAgent (Factory Mode with TanStack AI is the preferred default) or plug in any of 12 external agent frameworks (Mastra, LangGraph, CrewAI Crews/Flows, PydanticAI, ADK, LlamaIndex, Agno…

CopilotKit/CopilotKit · 150 tokens

copilotkit-integrations

Use when wiring an external agent framework (LangGraph, CrewAI, PydanticAI, Mastra, ADK, LlamaIndex, Agno, Strands, Microsoft Agent Framework, or others) into a CopilotKit application via the AG-UI protocol.

CopilotKit/CopilotKit · 61 tokens

copilotkit-develop

Use when building AI-powered features with CopilotKit v2 -- adding chat interfaces, registering frontend tools, sharing application context with agents, handling agent interrupts, and working with the CopilotKit runtime.

CopilotKit/CopilotKit · 46 tokens