@inkly-org/cli 0.7.2 → 0.7.4
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/dist/capture-listener.js +31 -29
- package/dist/cli.js +221 -177
- package/dist/skills/inkly/SKILL.md +6 -6
- package/package.json +3 -1
- package/skills/inkly/SKILL.md +6 -6
|
@@ -58,7 +58,7 @@ Run `inkly <command> --help` for the exact flags. Commands fall into four groups
|
|
|
58
58
|
| `inkly login [--no-open] [--token <t>]` | Connect to the hosted Inkly app. |
|
|
59
59
|
| `inkly logout` / `inkly status [--json]` | Remove credentials / show auth + hub status. |
|
|
60
60
|
| `inkly sync [--demo <slug>] [--dry-run] [--json]` | Upload local capture blobs to the CDN. |
|
|
61
|
-
| `inkly snapshot <demo> [--json]` | Publish a standalone, shareable `/p/<id>` snapshot of one demo. |
|
|
61
|
+
| `inkly snapshot <demo> [--json]` | Publish a standalone, shareable `/p/<id>` snapshot of one demo. Accepts a demo inside a hub or a bare exported demo folder (no `inkly.json` required). |
|
|
62
62
|
|
|
63
63
|
### Capture — built for agents
|
|
64
64
|
|
|
@@ -83,14 +83,14 @@ Both share one lifecycle — `start → status → nav <verb> → stop` (`cancel
|
|
|
83
83
|
|
|
84
84
|
## Task Skills (load on demand)
|
|
85
85
|
|
|
86
|
-
For a specific job, fetch the matching focused skill from the Inkly platform and follow it — each is a complete, step-by-step playbook with contracts, recovery, and gotchas that this index intentionally omits. Fetch the markdown (WebFetch, `curl`, or `skills use <url>`); humans can
|
|
86
|
+
For a specific job, fetch the matching focused skill from the Inkly platform and follow it — each is a complete, step-by-step playbook with contracts, recovery, and gotchas that this index intentionally omits. Fetch the markdown (WebFetch, `curl`, or `skills use <url>`); humans can discover skills at https://www.app.inklyai.dev.
|
|
87
87
|
|
|
88
88
|
| If the task is… | Load this skill | URL |
|
|
89
89
|
|-----------------|-----------------|-----|
|
|
90
|
-
| "Capture a demo of `<url>`" (image/video steps) | **agent-capture** | https://inklyai.dev/__inkly/skills/agent-capture.md |
|
|
91
|
-
| "Capture an HTML demo of `<url>`" (live-DOM steps) | **agent-html-capture** | https://inklyai.dev/__inkly/skills/agent-html-capture.md |
|
|
92
|
-
| "Polish / finish a demo", or assemble one from existing screenshots/recordings (edit steps, labels, chapters, covers, TTS voiceover; mind the player aspect ratio) | **agent-demo-polish** | https://inklyai.dev/__inkly/skills/agent-demo-polish.md |
|
|
93
|
-
| Exact `demo.config.json` / `inkly.json` field shapes and schema | **inkly-cli-reference** | https://inklyai.dev/__inkly/skills/inkly-cli-reference.md |
|
|
90
|
+
| "Capture a demo of `<url>`" (image/video steps) | **agent-capture** | https://www.app.inklyai.dev/__inkly/skills/agent-capture.md |
|
|
91
|
+
| "Capture an HTML demo of `<url>`" (live-DOM steps) | **agent-html-capture** | https://www.app.inklyai.dev/__inkly/skills/agent-html-capture.md |
|
|
92
|
+
| "Polish / finish a demo", or assemble one from existing screenshots/recordings (edit steps, labels, chapters, covers, TTS voiceover; mind the player aspect ratio) | **agent-demo-polish** | https://www.app.inklyai.dev/__inkly/skills/agent-demo-polish.md |
|
|
93
|
+
| Exact `demo.config.json` / `inkly.json` field shapes and schema | **inkly-cli-reference** | https://www.app.inklyai.dev/__inkly/skills/inkly-cli-reference.md |
|
|
94
94
|
|
|
95
95
|
Rules of thumb:
|
|
96
96
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkly-org/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "Inkly CLI — scaffold and locally preview demo configs.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
"template",
|
|
14
14
|
"skills",
|
|
15
15
|
"README.md",
|
|
16
|
+
"!CHANGELOG.md",
|
|
17
|
+
"!changelog.md",
|
|
16
18
|
"!dist/**/*.map"
|
|
17
19
|
],
|
|
18
20
|
"publishConfig": {
|
package/skills/inkly/SKILL.md
CHANGED
|
@@ -58,7 +58,7 @@ Run `inkly <command> --help` for the exact flags. Commands fall into four groups
|
|
|
58
58
|
| `inkly login [--no-open] [--token <t>]` | Connect to the hosted Inkly app. |
|
|
59
59
|
| `inkly logout` / `inkly status [--json]` | Remove credentials / show auth + hub status. |
|
|
60
60
|
| `inkly sync [--demo <slug>] [--dry-run] [--json]` | Upload local capture blobs to the CDN. |
|
|
61
|
-
| `inkly snapshot <demo> [--json]` | Publish a standalone, shareable `/p/<id>` snapshot of one demo. |
|
|
61
|
+
| `inkly snapshot <demo> [--json]` | Publish a standalone, shareable `/p/<id>` snapshot of one demo. Accepts a demo inside a hub or a bare exported demo folder (no `inkly.json` required). |
|
|
62
62
|
|
|
63
63
|
### Capture — built for agents
|
|
64
64
|
|
|
@@ -83,14 +83,14 @@ Both share one lifecycle — `start → status → nav <verb> → stop` (`cancel
|
|
|
83
83
|
|
|
84
84
|
## Task Skills (load on demand)
|
|
85
85
|
|
|
86
|
-
For a specific job, fetch the matching focused skill from the Inkly platform and follow it — each is a complete, step-by-step playbook with contracts, recovery, and gotchas that this index intentionally omits. Fetch the markdown (WebFetch, `curl`, or `skills use <url>`); humans can
|
|
86
|
+
For a specific job, fetch the matching focused skill from the Inkly platform and follow it — each is a complete, step-by-step playbook with contracts, recovery, and gotchas that this index intentionally omits. Fetch the markdown (WebFetch, `curl`, or `skills use <url>`); humans can discover skills at https://www.app.inklyai.dev.
|
|
87
87
|
|
|
88
88
|
| If the task is… | Load this skill | URL |
|
|
89
89
|
|-----------------|-----------------|-----|
|
|
90
|
-
| "Capture a demo of `<url>`" (image/video steps) | **agent-capture** | https://inklyai.dev/__inkly/skills/agent-capture.md |
|
|
91
|
-
| "Capture an HTML demo of `<url>`" (live-DOM steps) | **agent-html-capture** | https://inklyai.dev/__inkly/skills/agent-html-capture.md |
|
|
92
|
-
| "Polish / finish a demo", or assemble one from existing screenshots/recordings (edit steps, labels, chapters, covers, TTS voiceover; mind the player aspect ratio) | **agent-demo-polish** | https://inklyai.dev/__inkly/skills/agent-demo-polish.md |
|
|
93
|
-
| Exact `demo.config.json` / `inkly.json` field shapes and schema | **inkly-cli-reference** | https://inklyai.dev/__inkly/skills/inkly-cli-reference.md |
|
|
90
|
+
| "Capture a demo of `<url>`" (image/video steps) | **agent-capture** | https://www.app.inklyai.dev/__inkly/skills/agent-capture.md |
|
|
91
|
+
| "Capture an HTML demo of `<url>`" (live-DOM steps) | **agent-html-capture** | https://www.app.inklyai.dev/__inkly/skills/agent-html-capture.md |
|
|
92
|
+
| "Polish / finish a demo", or assemble one from existing screenshots/recordings (edit steps, labels, chapters, covers, TTS voiceover; mind the player aspect ratio) | **agent-demo-polish** | https://www.app.inklyai.dev/__inkly/skills/agent-demo-polish.md |
|
|
93
|
+
| Exact `demo.config.json` / `inkly.json` field shapes and schema | **inkly-cli-reference** | https://www.app.inklyai.dev/__inkly/skills/inkly-cli-reference.md |
|
|
94
94
|
|
|
95
95
|
Rules of thumb:
|
|
96
96
|
|