AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Site Starter

skill-imyourboyroy-portable-web-toolkit-site-starter · by ImYourBoyRoy

Bootstraps a brand-new Astro + Cloudflare client site from Portable_Web_toolkit site-starter templates. Use when creating a new client project folder, copying package.json/wrangler.toml, linking Web_Toolkit, or choosing Workers vs Pages deploy target.

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add skill-imyourboyroy-portable-web-toolkit-site-starter

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-imyourboyroy-portable-web-toolkit-site-starter)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Site Starter? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Site Starter

Creates a new client site outside the toolkit repo. Never use Portable_Web_toolkit root as the website.

Cross-platform conventions: skills/CROSS_PLATFORM.md

Workers vs Pages

| | Workers | Pages | |---|-------------|-----------| | Use when | SSR, API, KV/cron, output: 'server' | Static site, output: 'static' | | Package | site-starter/workers.package.jsonpackage.json | site-starter/pages.package.jsonpackage.json | | Wrangler | workers.wrangler.tomlwrangler.toml | pages.wrangler.tomlwrangler.toml | | Astro config | astro.config.workers.example.mjsastro.config.mjs | astro.config.pages.example.mjsastro.config.mjs | | Profile | "deployTarget": "workers" | "deployTarget": "pages" | | Discovery doctor | ./dist/client | ./dist |

Steps (all platforms)

Set paths (TOOLKIT = PortableWebtoolkit repo root, SITE = new client folder).

mkdir -p "$SITE" && cd "$SITE"

cp "$TOOLKIT/site-starter/workers.package.json" ./package.json
cp "$TOOLKIT/site-starter/workers.wrangler.toml" ./wrangler.toml
cp "$TOOLKIT/site-starter/astro.config.workers.example.mjs" ./astro.config.mjs
cp "$TOOLKIT/site-starter/.env.example" ./.env.example
mkdir -p ./src/styles && cp -R "$TOOLKIT/site-starter/src/styles/"* ./src/styles/

node "$TOOLKIT/scripts/link-web-toolkit.mjs" \
  --toolkit-path "$TOOLKIT/Web_Toolkit" \
  --project-root "$SITE"

# Copy discovery templates — Web_Toolkit/templates/discovery/README.md
# Edit src/lib/site-config.ts and astro.config `site` URL

npm install
node ./Web_Toolkit/init_site_profile/bin/init-site-profile.mjs
node ./Web_Toolkit/project_init/bin/project-init.mjs apply-safe --project-root .
npm run readiness

Windows (PowerShell 7+): use Copy-Item instead of cp; same link-web-toolkit.mjs step.

npm scripts → Web_Toolkit

Starter package.json calls toolkit CLIs directly (./Web_Toolkit/...). No local scripts/ copy for headers, cache, wrangler check, or readiness.

Discovery layer

Copy from Web_Toolkit/templates/discovery/ per README: robots, sitemap, llms, humans, security.txt, content/search APIs, Schema.astro, middleware. Customize site-config.ts — no client-specific data in toolkit source.

After scaffold

  1. BRAND_GUIDE.md + *.site-profile.json
  2. .env from .env.example (never commit)
  3. npm run buildnpm run discovery:doctor
  4. site-readinessportable-web-toolkit for deploy

Rules

  • Secrets in client .env only
  • Link Web_Toolkit at project root before running npm scripts
  • Structural tokens.css only — visual identity comes from each client's Brand Guide

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.