runwork 0.12.0 → 0.13.2
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/agents/claude-code.d.ts +21 -0
- package/dist/agents/claude-code.js +58 -2
- package/dist/agents/claude-desktop-plugin-tree.d.ts +15 -0
- package/dist/agents/claude-desktop-plugin-tree.js +37 -1
- package/dist/agents/conversation-skills.d.ts +18 -0
- package/dist/agents/conversation-skills.js +229 -0
- package/dist/agents/registry-data.d.ts +35 -0
- package/dist/agents/registry-data.js +58 -1
- package/dist/agents/runtime-detection.d.ts +82 -0
- package/dist/agents/runtime-detection.js +271 -0
- package/dist/agents/session-start-hook.d.ts +37 -0
- package/dist/agents/session-start-hook.js +159 -0
- package/dist/agents/types.d.ts +12 -0
- package/dist/api/client.d.ts +47 -0
- package/dist/api/client.js +32 -0
- package/dist/commands/doctor.js +89 -2
- package/dist/commands/inbox.d.ts +11 -0
- package/dist/commands/inbox.js +60 -0
- package/dist/commands/resume.d.ts +2 -0
- package/dist/commands/resume.js +289 -0
- package/dist/commands/save-convo.d.ts +8 -0
- package/dist/commands/save-convo.js +20 -0
- package/dist/commands/share-convo.d.ts +24 -0
- package/dist/commands/share-convo.js +167 -0
- package/dist/commands/sync.js +95 -10
- package/dist/generated/bundled-types.js +33 -33
- package/dist/generated/version.d.ts +1 -1
- package/dist/generated/version.js +1 -1
- package/dist/index.js +8 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.13.2";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Auto-generated by scripts/embed-types.ts -- do not edit
|
|
2
|
-
export const VERSION = "0.
|
|
2
|
+
export const VERSION = "0.13.2";
|
package/dist/index.js
CHANGED
|
@@ -27,6 +27,10 @@ import { buildPluginCommand } from './commands/build-plugin.js';
|
|
|
27
27
|
import { uninstallCommand } from './commands/uninstall.js';
|
|
28
28
|
import { appsCommand } from './commands/apps.js';
|
|
29
29
|
import { doctorCommand } from './commands/doctor.js';
|
|
30
|
+
import { shareConvoCommand } from './commands/share-convo.js';
|
|
31
|
+
import { saveConvoCommand } from './commands/save-convo.js';
|
|
32
|
+
import { inboxCommand } from './commands/inbox.js';
|
|
33
|
+
import { resumeCommand } from './commands/resume.js';
|
|
30
34
|
import { handleGitCredentialRequest } from './git/credentials.js';
|
|
31
35
|
import { VERSION } from './generated/version.js';
|
|
32
36
|
import { shouldOutputJson, jsonOut } from './utils/output.js';
|
|
@@ -79,6 +83,10 @@ program.addCommand(buildPluginCommand);
|
|
|
79
83
|
program.addCommand(uninstallCommand);
|
|
80
84
|
program.addCommand(appsCommand);
|
|
81
85
|
program.addCommand(doctorCommand);
|
|
86
|
+
program.addCommand(shareConvoCommand);
|
|
87
|
+
program.addCommand(saveConvoCommand);
|
|
88
|
+
program.addCommand(inboxCommand);
|
|
89
|
+
program.addCommand(resumeCommand);
|
|
82
90
|
program.addHelpText('after', '\nFor AI agents: run "runwork info --json" to discover app context and available commands.');
|
|
83
91
|
// JSON help: intercept --help when --json is active or stdout is not a TTY.
|
|
84
92
|
// Outputs the full command tree as structured JSON for AI agents.
|
package/package.json
CHANGED