@notis_ai/cli 0.2.15 → 0.2.17
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.md +2 -2
- package/dist/agent-hooks/notis-agent-hook.mjs +616 -198
- package/dist/base-skills/notis-apps/SKILL.md +101 -37
- package/dist/base-skills/notis-cli/SKILL.md +80 -22
- package/package.json +1 -1
- package/skills/notis-apps/cli.md +2 -2
- package/src/command-specs/apps.js +183 -70
- package/src/runtime/app-dev-process-identity.js +111 -0
- package/src/runtime/app-dev-server.js +236 -8
- package/src/runtime/app-platform.js +23 -1
- package/src/runtime/profiles.js +19 -11
- package/src/runtime/sync-skills.js +20 -4
- package/template/packages/sdk/src/components/MultiSelectActionBar.tsx +7 -1
- package/template/packages/sdk/src/config.ts +6 -0
- package/template/packages/sdk/src/hooks/useCollectionInteractions.ts +23 -6
- package/template/packages/sdk/src/hooks/useNotis.ts +3 -0
- package/template/packages/sdk/src/hooks/useNotisNavigation.ts +7 -4
- package/template/packages/sdk/src/interactions/shortcuts.tsx +7 -1
- package/template/packages/sdk/src/runtime.ts +3 -0
package/README.md
CHANGED
|
@@ -194,7 +194,7 @@ Examples:
|
|
|
194
194
|
|
|
195
195
|
Register a development root and connect its apps to the shared local development host.
|
|
196
196
|
|
|
197
|
-
When to use: Run this once for any folder that should be watched permanently. The folder itself, direct child apps, and apps/* are discovered automatically by every signed-in Notis Desktop instance.
|
|
197
|
+
When to use: Run this once for any folder that should be watched permanently. The folder itself, direct child apps, and apps/* are discovered automatically by every signed-in Notis Desktop instance. A linked app substitutes its online bundle only when local notisAppVersion is strictly greater than the installed release.
|
|
198
198
|
|
|
199
199
|
Options:
|
|
200
200
|
- `--port <number>` — Local bundle server port (default: 5173).
|
|
@@ -294,7 +294,7 @@ Examples:
|
|
|
294
294
|
|
|
295
295
|
Download a Notis app source snapshot into a local project folder.
|
|
296
296
|
|
|
297
|
-
When to use: Edit an installed app locally.
|
|
297
|
+
When to use: Edit an installed app locally. Preserve any local edits, pull and link the latest persisted source, then increment package.json notisAppVersion above that release before notis apps dev; continue with build and deploy.
|
|
298
298
|
|
|
299
299
|
Options:
|
|
300
300
|
- `--force` — Overwrite a non-empty target directory.
|