wepscli 0.1.0 → 0.1.5
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 +9 -8
- package/dist/WEPSCLI-shell/agent-runtime-events.js +194 -0
- package/dist/WEPSCLI-shell/agent-runtime-events.js.map +1 -0
- package/dist/WEPSCLI-shell/agent-runtime-helpers.js +117 -0
- package/dist/WEPSCLI-shell/agent-runtime-helpers.js.map +1 -0
- package/dist/WEPSCLI-shell/agent-runtime-types.js +1 -0
- package/dist/WEPSCLI-shell/agent-runtime-types.js.map +1 -0
- package/dist/WEPSCLI-shell/agent-runtime.js +42 -294
- package/dist/WEPSCLI-shell/agent-runtime.js.map +1 -1
- package/dist/WEPSCLI-shell/approval-overlay.js.map +1 -1
- package/dist/WEPSCLI-shell/chat-components.js +13 -6
- package/dist/WEPSCLI-shell/chat-components.js.map +1 -1
- package/dist/WEPSCLI-shell/file-change-preview.js.map +1 -1
- package/dist/WEPSCLI-shell/runtime-recovery.js.map +1 -1
- package/dist/WEPSCLI-shell/session-consistency.js +9 -0
- package/dist/WEPSCLI-shell/session-consistency.js.map +1 -0
- package/dist/WEPSCLI-shell/shell-app.js +169 -259
- package/dist/WEPSCLI-shell/shell-app.js.map +1 -1
- package/dist/WEPSCLI-shell/shell-keyboard.js +135 -0
- package/dist/WEPSCLI-shell/shell-keyboard.js.map +1 -0
- package/dist/WEPSCLI-shell/shell-modes.js.map +1 -1
- package/dist/WEPSCLI-shell/shell-prompt-controller.js +93 -0
- package/dist/WEPSCLI-shell/shell-prompt-controller.js.map +1 -0
- package/dist/WEPSCLI-shell/shell-status.js +16 -0
- package/dist/WEPSCLI-shell/shell-status.js.map +1 -0
- package/dist/WEPSCLI-shell/skill-commands.js +7 -0
- package/dist/WEPSCLI-shell/skill-commands.js.map +1 -0
- package/dist/WEPSCLI-shell/slash-commands.js +68 -7
- package/dist/WEPSCLI-shell/slash-commands.js.map +1 -1
- package/dist/WEPSCLI-shell/tool-approval.js.map +1 -1
- package/dist/WEPSCLI-shell/tool-diff.js.map +1 -1
- package/dist/WEPSCLI-shell/tool-file-changes.js.map +1 -1
- package/dist/WEPSCLI-shell/tool-message-detail.js.map +1 -1
- package/dist/WEPSCLI-shell/tool-messages.js.map +1 -1
- package/dist/WEPSCLI-shell/transcript-panel.js.map +1 -1
- package/dist/config.js +3 -0
- package/dist/config.js.map +1 -1
- package/dist/main.js.map +1 -1
- package/dist/skills/skill-add-flow.js +88 -0
- package/dist/skills/skill-add-flow.js.map +1 -0
- package/dist/skills/skill-service.js +123 -0
- package/dist/skills/skill-service.js.map +1 -0
- package/package.json +28 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wepscli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "A TUI-first coding agent CLI built on top of agents-core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,29 +22,33 @@
|
|
|
22
22
|
"smoke:hello": "bun --conditions=browser --preload @opentui/solid/preload ./smoke/hello.tsx",
|
|
23
23
|
"smoke:panel": "bun --conditions=browser --preload @opentui/solid/preload ./smoke/panel.tsx",
|
|
24
24
|
"smoke:shell-min": "bun --conditions=browser --preload @opentui/solid/preload ./smoke/shell-min.tsx",
|
|
25
|
-
"smoke:approval-flow": "bun ./smoke/approval-flow.ts",
|
|
26
|
-
"smoke:compact-command": "bun ./smoke/compact-command.ts",
|
|
27
|
-
"smoke:interrupt-status": "bun ./smoke/interrupt-status.ts",
|
|
28
|
-
"smoke:mode-layer": "bun ./smoke/mode-layer.ts",
|
|
29
|
-
"smoke:runtime-recovery": "bun ./smoke/runtime-recovery.ts",
|
|
30
|
-
"smoke:
|
|
31
|
-
"smoke:
|
|
32
|
-
"smoke:
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"@
|
|
41
|
-
"@
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"solid
|
|
46
|
-
"
|
|
47
|
-
|
|
25
|
+
"smoke:approval-flow": "bun ./smoke/approval-flow.ts",
|
|
26
|
+
"smoke:compact-command": "bun ./smoke/compact-command.ts",
|
|
27
|
+
"smoke:interrupt-status": "bun ./smoke/interrupt-status.ts",
|
|
28
|
+
"smoke:mode-layer": "bun ./smoke/mode-layer.ts",
|
|
29
|
+
"smoke:runtime-recovery": "bun ./smoke/runtime-recovery.ts",
|
|
30
|
+
"smoke:skill-command-routing": "bun ./smoke/skill-command-routing.ts",
|
|
31
|
+
"smoke:skill-message-summary": "bun ./smoke/skill-message-summary.ts",
|
|
32
|
+
"smoke:session-consistency": "bun ./smoke/session-consistency.ts",
|
|
33
|
+
"smoke:slash-common": "bun ./smoke/slash-common.ts",
|
|
34
|
+
"smoke:skills-install": "bun ./smoke/skills-install.ts",
|
|
35
|
+
"smoke:tool-file-changes": "bun ./smoke/tool-file-changes.ts",
|
|
36
|
+
"smoke:tool-events": "bun ./smoke/tool-events.ts",
|
|
37
|
+
"prepublishOnly": "npm run clean && npm run build"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@mariozechner/pi-agent-core": "0.61.1",
|
|
41
|
+
"@mariozechner/pi-ai": "0.61.1",
|
|
42
|
+
"@mariozechner/pi-coding-agent": "0.61.1",
|
|
43
|
+
"@mariozechner/pi-tui": "0.61.1",
|
|
44
|
+
"@opentui/core": "^0.1.87",
|
|
45
|
+
"@opentui/solid": "^0.1.87",
|
|
46
|
+
"chalk": "^5.5.0",
|
|
47
|
+
"diff": "^8.0.2",
|
|
48
|
+
"proper-lockfile": "^4.1.2",
|
|
49
|
+
"solid-js": "^1.9.9",
|
|
50
|
+
"undici": "^7.19.1"
|
|
51
|
+
},
|
|
48
52
|
"keywords": [
|
|
49
53
|
"coding-agent",
|
|
50
54
|
"tui",
|