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.
Files changed (43) hide show
  1. package/README.md +9 -8
  2. package/dist/WEPSCLI-shell/agent-runtime-events.js +194 -0
  3. package/dist/WEPSCLI-shell/agent-runtime-events.js.map +1 -0
  4. package/dist/WEPSCLI-shell/agent-runtime-helpers.js +117 -0
  5. package/dist/WEPSCLI-shell/agent-runtime-helpers.js.map +1 -0
  6. package/dist/WEPSCLI-shell/agent-runtime-types.js +1 -0
  7. package/dist/WEPSCLI-shell/agent-runtime-types.js.map +1 -0
  8. package/dist/WEPSCLI-shell/agent-runtime.js +42 -294
  9. package/dist/WEPSCLI-shell/agent-runtime.js.map +1 -1
  10. package/dist/WEPSCLI-shell/approval-overlay.js.map +1 -1
  11. package/dist/WEPSCLI-shell/chat-components.js +13 -6
  12. package/dist/WEPSCLI-shell/chat-components.js.map +1 -1
  13. package/dist/WEPSCLI-shell/file-change-preview.js.map +1 -1
  14. package/dist/WEPSCLI-shell/runtime-recovery.js.map +1 -1
  15. package/dist/WEPSCLI-shell/session-consistency.js +9 -0
  16. package/dist/WEPSCLI-shell/session-consistency.js.map +1 -0
  17. package/dist/WEPSCLI-shell/shell-app.js +169 -259
  18. package/dist/WEPSCLI-shell/shell-app.js.map +1 -1
  19. package/dist/WEPSCLI-shell/shell-keyboard.js +135 -0
  20. package/dist/WEPSCLI-shell/shell-keyboard.js.map +1 -0
  21. package/dist/WEPSCLI-shell/shell-modes.js.map +1 -1
  22. package/dist/WEPSCLI-shell/shell-prompt-controller.js +93 -0
  23. package/dist/WEPSCLI-shell/shell-prompt-controller.js.map +1 -0
  24. package/dist/WEPSCLI-shell/shell-status.js +16 -0
  25. package/dist/WEPSCLI-shell/shell-status.js.map +1 -0
  26. package/dist/WEPSCLI-shell/skill-commands.js +7 -0
  27. package/dist/WEPSCLI-shell/skill-commands.js.map +1 -0
  28. package/dist/WEPSCLI-shell/slash-commands.js +68 -7
  29. package/dist/WEPSCLI-shell/slash-commands.js.map +1 -1
  30. package/dist/WEPSCLI-shell/tool-approval.js.map +1 -1
  31. package/dist/WEPSCLI-shell/tool-diff.js.map +1 -1
  32. package/dist/WEPSCLI-shell/tool-file-changes.js.map +1 -1
  33. package/dist/WEPSCLI-shell/tool-message-detail.js.map +1 -1
  34. package/dist/WEPSCLI-shell/tool-messages.js.map +1 -1
  35. package/dist/WEPSCLI-shell/transcript-panel.js.map +1 -1
  36. package/dist/config.js +3 -0
  37. package/dist/config.js.map +1 -1
  38. package/dist/main.js.map +1 -1
  39. package/dist/skills/skill-add-flow.js +88 -0
  40. package/dist/skills/skill-add-flow.js.map +1 -0
  41. package/dist/skills/skill-service.js +123 -0
  42. package/dist/skills/skill-service.js.map +1 -0
  43. package/package.json +28 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wepscli",
3
- "version": "0.1.0",
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:slash-common": "bun ./smoke/slash-common.ts",
31
- "smoke:tool-file-changes": "bun ./smoke/tool-file-changes.ts",
32
- "smoke:tool-events": "bun ./smoke/tool-events.ts",
33
- "prepublishOnly": "npm run clean && npm run build"
34
- },
35
- "dependencies": {
36
- "@mariozechner/pi-agent-core": "0.61.1",
37
- "@mariozechner/pi-ai": "0.61.1",
38
- "@mariozechner/pi-coding-agent": "0.61.1",
39
- "@mariozechner/pi-tui": "0.61.1",
40
- "@opentui/core": "^0.1.87",
41
- "@opentui/solid": "^0.1.87",
42
- "chalk": "^5.5.0",
43
- "diff": "^8.0.2",
44
- "proper-lockfile": "^4.1.2",
45
- "solid-js": "^1.9.9",
46
- "undici": "^7.19.1"
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",