@notis_ai/cli 0.2.0-beta.153.2 → 0.2.0-beta.155.1
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/agent-hooks/notis-agent-hook.mjs +203 -106
- package/dist/skill-sync/index.js +134 -72
- package/dist/skill-sync/index.js.map +2 -2
- package/package.json +1 -1
- package/src/command-specs/skills.js +3 -2
- package/src/command-specs/tools.js +5 -0
- package/src/runtime/app-dev-build-supervisor.js +47 -0
- package/src/runtime/app-dev-build.js +41 -0
- package/src/runtime/app-dev-server.js +2 -6
- package/src/runtime/profiles.js +19 -11
- package/src/runtime/skill-sync/cloud-client.ts +5 -3
- package/src/runtime/skill-sync/index.ts +73 -65
- package/src/runtime/skill-sync/symlink-manager.ts +66 -16
- package/src/runtime/skill-sync/types.ts +5 -0
- package/template/packages/sdk/src/interactions/shortcuts.tsx +1 -1
|
@@ -9,6 +9,9 @@ export interface SyncedSkill {
|
|
|
9
9
|
cloudId: string;
|
|
10
10
|
folderHash: string;
|
|
11
11
|
agentTargets: AgentTargets;
|
|
12
|
+
/** Actual readable managed links, never inferred from desired targets. */
|
|
13
|
+
verifiedAgentLinks?: Partial<AgentTargets>;
|
|
14
|
+
cloudUpdatedAt?: string;
|
|
12
15
|
syncedAt: string;
|
|
13
16
|
}
|
|
14
17
|
|
|
@@ -34,6 +37,7 @@ export interface BundleFile {
|
|
|
34
37
|
}
|
|
35
38
|
|
|
36
39
|
export interface CloudSkill {
|
|
40
|
+
updated_at?: string;
|
|
37
41
|
id: string;
|
|
38
42
|
name: string;
|
|
39
43
|
description: string | null;
|
|
@@ -48,6 +52,7 @@ export interface CloudSkill {
|
|
|
48
52
|
}
|
|
49
53
|
|
|
50
54
|
export interface SyncSettings {
|
|
55
|
+
agent_targets_conditional_updates?: boolean;
|
|
51
56
|
/** Server-verified canonical Notis account id used to scope local mirrors. */
|
|
52
57
|
user_id?: string;
|
|
53
58
|
sync_enabled: boolean;
|
|
@@ -186,7 +186,7 @@ export function isEditableShortcutEvent(event: Event): boolean {
|
|
|
186
186
|
return true;
|
|
187
187
|
}
|
|
188
188
|
if (tag === 'A' && target.hasAttribute('href')) return true;
|
|
189
|
-
return ['button', 'link', 'menuitem', '
|
|
189
|
+
return ['button', 'link', 'menuitem', 'switch', 'tab'].includes(
|
|
190
190
|
target.getAttribute('role') || '',
|
|
191
191
|
);
|
|
192
192
|
});
|