Install
$ agentstack add skill-imyourboyroy-portable-web-toolkit-site-starter ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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.json → package.json | site-starter/pages.package.json → package.json | | Wrangler | workers.wrangler.toml → wrangler.toml | pages.wrangler.toml → wrangler.toml | | Astro config | astro.config.workers.example.mjs → astro.config.mjs | astro.config.pages.example.mjs → astro.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
BRAND_GUIDE.md+*.site-profile.json.envfrom.env.example(never commit)npm run build→npm run discovery:doctor- site-readiness → portable-web-toolkit for deploy
Rules
- Secrets in client
.envonly - Link
Web_Toolkitat project root before running npm scripts - Structural
tokens.cssonly — 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.
- Author: ImYourBoyRoy
- Source: ImYourBoyRoy/PortableWeb_toolkit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.