hyperframes 0.7.12 → 0.7.14
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/cli.js +631 -515
- package/dist/skills/hyperframes/SKILL.md +1 -1
- package/dist/skills/hyperframes-cli/SKILL.md +1 -1
- package/dist/studio/assets/{index-D3CdlGSD.js → index-BXG-pbr_.js} +2 -2
- package/dist/studio/assets/{index-6Gsr598X.js → index-CkrVt5DX.js} +1 -1
- package/dist/studio/assets/{index-C8PxbQ6Q.js → index-DYgkaIlV.js} +1 -1
- package/dist/studio/index.html +1 -1
- package/package.json +3 -2
|
@@ -85,7 +85,7 @@ After they run it, re-read the workflow's skill and continue.
|
|
|
85
85
|
|
|
86
86
|
## Keeping skills current
|
|
87
87
|
|
|
88
|
-
HyperFrames skills are versioned. `npx hyperframes init` checks the installed skills against the latest on GitHub and installs/refreshes the **full** set whenever anything is out of date or missing — so a freshly init'd project always has the complete, latest set (and re-running init on an up-to-date project is a no-op). The check is a quick GitHub round-trip; offline (or rate-limited) it falls back to installing after a short timeout, so init never hard-fails on a network hiccup.
|
|
88
|
+
HyperFrames skills are versioned. `npx hyperframes init` checks the installed skills against the latest on GitHub and installs/refreshes the **full** set whenever anything is out of date or missing — so a freshly init'd project always has the complete, latest set (and re-running init on an up-to-date project is a no-op). The check is a quick GitHub round-trip; offline (or rate-limited) it falls back to installing after a short timeout, so init never hard-fails on a network hiccup. The creation workflows scaffold with `init` (no `--skip-skills`), so starting a new project always runs this check and pulls our latest skills from GitHub when they're stale. Opt out only by adding `--skip-skills`.
|
|
89
89
|
|
|
90
90
|
If a task is behaving unexpectedly, or before a long build, confirm the installed skills are current:
|
|
91
91
|
|
|
@@ -9,7 +9,7 @@ Everything runs through `npx hyperframes` unless project instructions specify a
|
|
|
9
9
|
|
|
10
10
|
## Workflow
|
|
11
11
|
|
|
12
|
-
1. **Scaffold** — `npx hyperframes init my-video` (or `capture` from a URL)
|
|
12
|
+
1. **Scaffold** — `npx hyperframes init my-video` (or `capture` from a URL). `init` also checks the installed skills against the latest on GitHub and updates the global set if any are out of date — keep it on (don't pass `--skip-skills`) so each new project pulls our latest skills.
|
|
13
13
|
2. **Write** — author HTML composition (see the `hyperframes-core` skill)
|
|
14
14
|
3. **Lint** — `npx hyperframes lint`
|
|
15
15
|
4. **Validate** — `npx hyperframes validate` (runtime errors + contrast)
|