@jay-framework/aiditor 0.19.6 → 0.19.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jay-framework/aiditor",
3
- "version": "0.19.6",
3
+ "version": "0.19.7",
4
4
  "type": "module",
5
5
  "description": "AIditor — visual AI-driven code editor plugin for Jay Framework",
6
6
  "main": "dist/index.js",
@@ -45,6 +45,8 @@
45
45
  "./sync-add-menu-attachments.jay-action": "./dist/actions/sync-add-menu-attachments.jay-action",
46
46
  "./resolve-add-menu-contract-params.jay-action": "./dist/actions/resolve-add-menu-contract-params.jay-action",
47
47
  "./write-plugin-source.jay-action": "./dist/actions/write-plugin-source.jay-action",
48
+ "./check-aiditor-publish.jay-action": "./dist/actions/check-aiditor-publish.jay-action",
49
+ "./run-aiditor-publish.jay-action": "./dist/actions/run-aiditor-publish.jay-action",
48
50
  "./dist/pages/aiditor/page.jay-html": "./dist/pages/aiditor/page.jay-html",
49
51
  "./dist/pages/aiditor/page.css": "./dist/pages/aiditor/page.css"
50
52
  },
@@ -65,17 +67,19 @@
65
67
  },
66
68
  "dependencies": {
67
69
  "@anthropic-ai/claude-agent-sdk": "0.2.119",
68
- "@jay-framework/fullstack-component": "^0.19.6",
69
- "@jay-framework/stack-client-runtime": "^0.19.6",
70
- "@jay-framework/stack-server-runtime": "^0.19.6",
70
+ "@jay-framework/component": "^0.19.7",
71
+ "@jay-framework/fullstack-component": "^0.19.7",
72
+ "@jay-framework/reactive": "^0.19.7",
73
+ "@jay-framework/stack-client-runtime": "^0.19.7",
74
+ "@jay-framework/stack-server-runtime": "^0.19.7",
71
75
  "busboy": "^1.6.0",
72
76
  "html2canvas": "^1.4.1",
73
77
  "js-yaml": "^4.1.0",
74
78
  "zod": "^4.3.6"
75
79
  },
76
80
  "devDependencies": {
77
- "@jay-framework/compiler-jay-stack": "^0.19.6",
78
- "@jay-framework/jay-cli": "^0.19.6",
81
+ "@jay-framework/compiler-jay-stack": "^0.19.7",
82
+ "@jay-framework/jay-cli": "^0.19.7",
79
83
  "@types/busboy": "^1",
80
84
  "nodemon": "^3.0.3",
81
85
  "rimraf": "^5.0.5",
package/plugin.yaml CHANGED
@@ -17,6 +17,8 @@ actions:
17
17
  action: list-freezes.jay-action
18
18
  - name: submitTaskAction
19
19
  action: submit-task.jay-action
20
+ - name: cancelAgentTaskAction
21
+ action: cancel-agent-task.jay-action
20
22
  - name: readFileAction
21
23
  action: read-file.jay-action
22
24
  - name: checkAddPageRouteAction
@@ -59,6 +61,10 @@ actions:
59
61
  action: resolve-add-menu-contract-params.jay-action
60
62
  - name: writePluginSourceAction
61
63
  action: write-plugin-source.jay-action
64
+ - name: checkAiditorPublishAction
65
+ action: check-aiditor-publish.jay-action
66
+ - name: runAiditorPublishAction
67
+ action: run-aiditor-publish.jay-action
62
68
 
63
69
  setup:
64
70
  handler: setupAiditor