@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
|
@@ -124,6 +124,7 @@ export interface RouteDescriptor {
|
|
|
124
124
|
icon?: string | null;
|
|
125
125
|
parentSlug?: string | null;
|
|
126
126
|
default?: boolean;
|
|
127
|
+
resourceDeepLinks?: boolean;
|
|
127
128
|
collection?: {
|
|
128
129
|
database: string;
|
|
129
130
|
titleProperty: string;
|
|
@@ -172,6 +173,8 @@ export interface QueryFilter {
|
|
|
172
173
|
|
|
173
174
|
export interface NotisRuntimeContext {
|
|
174
175
|
collectionItem?: CollectionItemDetail | null;
|
|
176
|
+
/** App-owned resource requested through the route's `?resource=<id>` link. */
|
|
177
|
+
resourceId?: string | null;
|
|
175
178
|
/**
|
|
176
179
|
* Set when the app is being rendered by the screenshot harness (`notis apps
|
|
177
180
|
* screenshot`) for the named listing scenario. Lets apps and SDK components
|