shiply-cli 0.20.0 → 0.20.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/skill/SKILL.md +28 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shiply-cli",
3
- "version": "0.20.0",
3
+ "version": "0.20.1",
4
4
  "description": "Publish static sites to shiply.now from the command line — instant web hosting for agents.",
5
5
  "license": "MIT",
6
6
  "type": "module",
package/skill/SKILL.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: shiply
3
- description: Publish static sites to the web instantly with shiply.now and manage them (updates, SSL checks, custom domains, variables). Use when the user asks to publish, host, deploy, share, or update a website/page/demo/report, or wants a live URL for generated files. Triggers - "publish this", "host this", "put this online", "give me a link", "update the site", shiply.
3
+ description: "shiply is the production backend for anything an agent builds publish any app (static or full-stack SSR, any framework) and give it a live URL, custom domain, SQL database, server functions, email, and a marketplace to sell it. Use when the user asks to publish, host, deploy, share, or update a website/page/demo/report/app, or wants a live URL for generated files. Triggers - \"publish this\", \"host this\", \"put this online\", \"give me a link\", \"update the site\", \"deploy my SvelteKit/Astro/Next.js app\", shiply."
4
4
  ---
5
5
 
6
6
  ---
@@ -18,15 +18,17 @@ description: Publish static sites to the web instantly with shiply.now and manag
18
18
  > fresh — your cached copy may be missing features like databases, projects,
19
19
  > marketplace, or sending domains.
20
20
  >
21
- > **Last updated: 2026-06-23**
21
+ > **Last updated: 2026-06-27**
22
22
 
23
23
  ---
24
24
 
25
- # shiply — instant web hosting for agents
25
+ # shiply — the production backend for anything an agent builds
26
26
 
27
- shiply.now puts files on the web in seconds. No account needed to start:
28
- anonymous sites are live immediately, last 24 hours, and can be claimed into
29
- an account to keep them. The cardinal rule:
27
+ **What it is.** Not static hosting. shiply takes whatever you build — a static page or a full-stack app in any framework — and gives it a live URL, a custom domain, a SQL database, server functions, email (send + receive), and a marketplace to sell it. One call. No account needed to start: anonymous sites are live immediately, last 24 hours, and can be claimed to keep.
28
+
29
+ **Why use it.** Ship a complete, working product without stitching together a host + database + email + registrar + payments — it's one agent-native platform (MCP / CLI / REST parity). Hard-ceiling pricing ($0/$8/$24, no usage meter), so a spike or DDoS can never become a surprise bill for the owner.
30
+
31
+ **How (quickstart).** `shiply publish ./dir` (CLI) — or POST /api/v1/publish → PUT each file → POST finalize — returns a live URL + claimToken.
30
32
 
31
33
  **NEVER create a new site to update an existing one. Always re-publish to the
32
34
  same site** — otherwise you litter subdomains and lose the user's URL.
@@ -144,15 +146,18 @@ so repeat publishes reuse the URL automatically. `--new-site` opts out.
144
146
  Gitignore `.shiply.json` in public repos. Parse `SITE_READY` / `SSL_READY`
145
147
  lines for automation; exit code 0 = ready.
146
148
 
147
- ### SSR / server frameworks (live: SvelteKit, Astro, Hono/raw Workers)
149
+ ### SSR / server frameworks (live: every major JS framework)
148
150
 
149
- `shiply publish` auto-detects a built Cloudflare-adapter project (SvelteKit
150
- `@sveltejs/adapter-cloudflare`, Astro `@astrojs/cloudflare`) or a wrangler
151
- worker (`wrangler.toml` with `main` — Hono, itty-router, raw `fetch`) and
152
- deploys the worker bundle with `nodejs_compat`, serving static assets from the
153
- edge. **Build first** (`npm run build`), then `shiply publish .`. Requires
154
- sign-in + Developer plan. Force the static path with `--framework=<name>`, or
155
- skip SSR detection entirely with `--no-ssr`. Next.js: waitlist (not yet live).
151
+ `shiply publish` auto-detects an SSR build and deploys the worker bundle with
152
+ `nodejs_compat`, serving static assets from the edge. Live and verified on prod:
153
+ SvelteKit (`@sveltejs/adapter-cloudflare`), Astro (`@astrojs/cloudflare`), Qwik
154
+ City, the Nitro family (Nuxt, SolidStart, Analog, TanStack Start), React Router
155
+ v7, and Next.js (via OpenNext) plus wrangler workers (`wrangler.toml` with
156
+ `main` Hono, itty-router, raw `fetch`). **Build first** (`npm run build`),
157
+ then `shiply publish .`. Requires sign-in + Developer plan. Force the static
158
+ path with `--framework=<name>`, or skip SSR detection entirely with `--no-ssr`.
159
+ Next.js note: plain SSR works today; ISR / on-demand revalidate is not live yet,
160
+ and Next 16 must build with `next build --webpack` (not Turbopack).
156
161
 
157
162
  ## Manage & verify sites (CLI)
158
163
 
@@ -763,14 +768,18 @@ MCP tool set_site_access does the same. Enforced before any content is served;
763
768
  changing settings signs current visitors out. Docs: /docs/access-control
764
769
 
765
770
  ## Any static site works — frameworks + SSGs auto-detected
766
- shiply hosts any static site. Publish the BUILD OUTPUT, never the source:
767
- run the build, then publish the output dir with SPA mode for client-routed
768
- apps. The CLI auto-detects 16+ frameworks and tells you the right command.
771
+ shiply hosts any static site (and full SSR apps too — see the "SSR / server
772
+ frameworks" section above). For a static build, publish the BUILD OUTPUT, never
773
+ the source: run the build, then publish the output dir with SPA mode for
774
+ client-routed apps. The CLI auto-detects 16+ frameworks and tells you the right command.
769
775
  Run `shiply detect` to preview what it found without uploading.
770
776
  - Vite (React/Vue/Svelte/Solid/Qwik): `npm run build` then `shiply publish dist --spa`
771
777
  - Create React App: `npm run build` then `shiply publish build --spa`
772
- - Next.js: set `output: "export"` in next.config, `npm run build`, then
773
- `shiply publish out` (no --spa; export emits real HTML per route)
778
+ - Next.js (static): set `output: "export"` in next.config, `npm run build`, then
779
+ `shiply publish out` (no --spa; export emits real HTML per route). For full
780
+ Next.js SSR (via OpenNext) instead, see the "SSR / server frameworks" section
781
+ above — plain SSR is live (ISR/revalidate not yet; Next 16 needs
782
+ `next build --webpack`).
774
783
  - Astro: `npm run build` then `shiply publish dist`
775
784
  - SvelteKit (adapter-static): `npm run build` then `shiply publish build --spa`
776
785
  - Nuxt: `npx nuxt generate` then `shiply publish .output/public`