clipwise 0.1.1 → 0.1.2

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.
package/README.ko.md CHANGED
@@ -234,13 +234,14 @@ speedRamp:
234
234
 
235
235
  [PROMPTS.md](./PROMPTS.md)에 바로 사용할 수 있는 AI 프롬프트 템플릿이 있습니다. ChatGPT나 Claude에 복붙하고 내 사이트 URL만 넣으면 YAML 시나리오를 생성해줍니다.
236
236
 
237
- ## 데모 사이트 호스팅 (GitHub Pages)
237
+ ## GitHub Pages
238
238
 
239
- `docs/index.html`에 데모 대시보드가 포함되어 있습니다:
239
+ `docs/` 폴더에 문서 사이트와 라이브 데모 대시보드가 포함되어 있습니다:
240
240
 
241
241
  1. GitHub에 push: `git push origin main`
242
242
  2. **Settings > Pages** > source: `main`, folder: `/docs`
243
- 3. `https://username.github.io/clipwise/`에서 라이브
243
+ 3. 문서: `https://username.github.io/clipwise/`
244
+ 4. 데모: `https://username.github.io/clipwise/demo/`
244
245
 
245
246
  ## 보안
246
247
 
package/README.md CHANGED
@@ -335,19 +335,20 @@ npx clipwise record my-scenario.yaml -f mp4 -o ./output
335
335
 
336
336
  See [PROMPTS.md](./PROMPTS.md) for a ready-to-use prompt template. Copy-paste it to ChatGPT or Claude with your site URL, and get a working YAML scenario back.
337
337
 
338
- ## Hosting the Demo Site (GitHub Pages)
338
+ ## GitHub Pages
339
339
 
340
- Clipwise includes a demo dashboard in `docs/index.html`. To host it:
340
+ Clipwise includes a documentation site and a live demo dashboard in the `docs/` folder. To host it:
341
341
 
342
342
  1. Push to GitHub: `git push origin main`
343
343
  2. Go to **Settings > Pages**
344
344
  3. Set source to **Deploy from a branch**, select `main`, folder `/docs`
345
- 4. Demo goes live at `https://kwakseongjae.github.io/clipwise/`
345
+ 4. Docs go live at `https://kwakseongjae.github.io/clipwise/`
346
+ 5. Demo dashboard at `https://kwakseongjae.github.io/clipwise/demo/`
346
347
 
347
348
  Then anyone can record the demo site:
348
349
 
349
350
  ```bash
350
- npx clipwise demo --url https://kwakseongjae.github.io/clipwise/
351
+ npx clipwise demo --url https://kwakseongjae.github.io/clipwise/demo/
351
352
  ```
352
353
 
353
354
  ## Security
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clipwise",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Scriptable cinematic screen recorder for product demos — YAML in, polished MP4 out",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",