@polterware/polter 0.4.1 → 0.5.0

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 (45) hide show
  1. package/README.md +0 -70
  2. package/dist/api.js +68 -26
  3. package/dist/app-HGIGWI7F.js +393 -0
  4. package/dist/appPanel-EZOHLTBX.js +1365 -0
  5. package/dist/applier-OEXIUYYO.js +10 -0
  6. package/dist/chunk-3RG5ZIWI.js +10 -0
  7. package/dist/chunk-45CQFZU7.js +262 -0
  8. package/dist/chunk-57CZSEY5.js +5398 -0
  9. package/dist/chunk-6IBRTRLX.js +257 -0
  10. package/dist/chunk-AK3NTS3Y.js +220 -0
  11. package/dist/chunk-BGT5TT2A.js +32 -0
  12. package/dist/chunk-BIN7BDA2.js +77 -0
  13. package/dist/chunk-E2B5FFBU.js +81 -0
  14. package/dist/chunk-EAMHFQKU.js +222 -0
  15. package/dist/chunk-ELSIHPJL.js +455 -0
  16. package/dist/{chunk-VYHW3UNY.js → chunk-GCS7JEYU.js} +7 -3
  17. package/dist/chunk-GKROVUDG.js +15 -0
  18. package/dist/chunk-GVIKF6UI.js +738 -0
  19. package/dist/chunk-JQB2A3CA.js +72 -0
  20. package/dist/chunk-KEGROLGX.js +50 -0
  21. package/dist/chunk-OKHPN6X7.js +49 -0
  22. package/dist/chunk-RVMOIUSL.js +22 -0
  23. package/dist/chunk-TD6YNU6L.js +22 -0
  24. package/dist/chunk-U64WZOJ3.js +101 -0
  25. package/dist/chunk-U6725U7K.js +138 -0
  26. package/dist/chunk-XNRIN3VM.js +125 -0
  27. package/dist/chunk-ZU5VZHYD.js +28 -0
  28. package/dist/commands-BIIWGCVS.js +15 -0
  29. package/dist/editor-AUFJZ4PE.js +11 -0
  30. package/dist/engine-EZQ26HDJ.js +11 -0
  31. package/dist/globalConf-AGMMIKSL.js +7 -0
  32. package/dist/index.js +55 -7464
  33. package/dist/ipcServer-HXOPKNBP.js +10 -0
  34. package/dist/mcp.js +182 -13892
  35. package/dist/mcpInstaller-J2AGFNWR.js +19 -0
  36. package/dist/parser-4ZBGSI2U.js +10 -0
  37. package/dist/planner-ZVBA66V6.js +9 -0
  38. package/dist/processManager-6T5DBURV.js +37 -0
  39. package/dist/projectConfig-TRCJS3VI.js +21 -0
  40. package/dist/skillSetup-ZQEHJ5ZG.js +14 -0
  41. package/dist/status-QMRCV4XJ.js +8 -0
  42. package/dist/storage-C3D7TLJW.js +17 -0
  43. package/dist/toolResolver-A2BUT3NK.js +17 -0
  44. package/package.json +20 -2
  45. package/dist/chunk-ZHVOYB5M.js +0 -2447
@@ -0,0 +1,19 @@
1
+ import {
2
+ getMcpStatusInfo,
3
+ installMcpServer,
4
+ installMcpServerSilent,
5
+ mcpStatus,
6
+ removeMcpServer,
7
+ removeMcpServerSilent
8
+ } from "./chunk-45CQFZU7.js";
9
+ import "./chunk-RVMOIUSL.js";
10
+ import "./chunk-TD6YNU6L.js";
11
+ import "./chunk-3RG5ZIWI.js";
12
+ export {
13
+ getMcpStatusInfo,
14
+ installMcpServer,
15
+ installMcpServerSilent,
16
+ mcpStatus,
17
+ removeMcpServer,
18
+ removeMcpServerSilent
19
+ };
@@ -0,0 +1,10 @@
1
+ import {
2
+ findPolterYaml,
3
+ parsePolterYaml
4
+ } from "./chunk-U6725U7K.js";
5
+ import "./chunk-TD6YNU6L.js";
6
+ import "./chunk-3RG5ZIWI.js";
7
+ export {
8
+ findPolterYaml,
9
+ parsePolterYaml
10
+ };
@@ -0,0 +1,9 @@
1
+ import {
2
+ planChanges
3
+ } from "./chunk-E2B5FFBU.js";
4
+ import "./chunk-OKHPN6X7.js";
5
+ import "./chunk-RVMOIUSL.js";
6
+ import "./chunk-3RG5ZIWI.js";
7
+ export {
8
+ planChanges
9
+ };
@@ -0,0 +1,37 @@
1
+ import {
2
+ _resetForTests,
3
+ appendToBuffer,
4
+ createRingBuffer,
5
+ findProcessesByCwd,
6
+ findRunningByCommand,
7
+ generateProcessId,
8
+ getProcessOutput,
9
+ getSocketPath,
10
+ isProcessRunning,
11
+ listProcesses,
12
+ registerForegroundProcess,
13
+ removeProcess,
14
+ startProcess,
15
+ stopProcess,
16
+ tailBuffer
17
+ } from "./chunk-6IBRTRLX.js";
18
+ import "./chunk-ZU5VZHYD.js";
19
+ import "./chunk-TD6YNU6L.js";
20
+ import "./chunk-3RG5ZIWI.js";
21
+ export {
22
+ _resetForTests,
23
+ appendToBuffer,
24
+ createRingBuffer,
25
+ findProcessesByCwd,
26
+ findRunningByCommand,
27
+ generateProcessId,
28
+ getProcessOutput,
29
+ getSocketPath,
30
+ isProcessRunning,
31
+ listProcesses,
32
+ registerForegroundProcess,
33
+ removeProcess,
34
+ startProcess,
35
+ stopProcess,
36
+ tailBuffer
37
+ };
@@ -0,0 +1,21 @@
1
+ import {
2
+ deleteProjectPipeline,
3
+ getOrCreateProjectConfig,
4
+ getProjectConfigPath,
5
+ getProjectPipelines,
6
+ readProjectConfig,
7
+ saveProjectPipeline,
8
+ writeProjectConfig
9
+ } from "./chunk-BIN7BDA2.js";
10
+ import "./chunk-ZU5VZHYD.js";
11
+ import "./chunk-TD6YNU6L.js";
12
+ import "./chunk-3RG5ZIWI.js";
13
+ export {
14
+ deleteProjectPipeline,
15
+ getOrCreateProjectConfig,
16
+ getProjectConfigPath,
17
+ getProjectPipelines,
18
+ readProjectConfig,
19
+ saveProjectPipeline,
20
+ writeProjectConfig
21
+ };
@@ -0,0 +1,14 @@
1
+ import {
2
+ getSkillContent,
3
+ getSkillPath,
4
+ setupSkill,
5
+ setupSkillCli
6
+ } from "./chunk-XNRIN3VM.js";
7
+ import "./chunk-TD6YNU6L.js";
8
+ import "./chunk-3RG5ZIWI.js";
9
+ export {
10
+ getSkillContent,
11
+ getSkillPath,
12
+ setupSkill,
13
+ setupSkillCli
14
+ };
@@ -0,0 +1,8 @@
1
+ import {
2
+ getCurrentStatus
3
+ } from "./chunk-OKHPN6X7.js";
4
+ import "./chunk-RVMOIUSL.js";
5
+ import "./chunk-3RG5ZIWI.js";
6
+ export {
7
+ getCurrentStatus
8
+ };
@@ -0,0 +1,17 @@
1
+ import {
2
+ deletePipeline,
3
+ findPipelineByName,
4
+ getAllPipelines,
5
+ savePipeline
6
+ } from "./chunk-U64WZOJ3.js";
7
+ import "./chunk-BIN7BDA2.js";
8
+ import "./chunk-GKROVUDG.js";
9
+ import "./chunk-ZU5VZHYD.js";
10
+ import "./chunk-TD6YNU6L.js";
11
+ import "./chunk-3RG5ZIWI.js";
12
+ export {
13
+ deletePipeline,
14
+ findPipelineByName,
15
+ getAllPipelines,
16
+ savePipeline
17
+ };
@@ -0,0 +1,17 @@
1
+ import {
2
+ getToolDisplayName,
3
+ getToolInfo,
4
+ getToolLinkInfo,
5
+ getToolVersion,
6
+ resolveToolCommand
7
+ } from "./chunk-ELSIHPJL.js";
8
+ import "./chunk-RVMOIUSL.js";
9
+ import "./chunk-TD6YNU6L.js";
10
+ import "./chunk-3RG5ZIWI.js";
11
+ export {
12
+ getToolDisplayName,
13
+ getToolInfo,
14
+ getToolLinkInfo,
15
+ getToolVersion,
16
+ resolveToolCommand
17
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polterware/polter",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "description": "An interactive CLI for managing Supabase CLI workflows.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -43,16 +43,34 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@modelcontextprotocol/sdk": "^1.12.1",
46
+ "cli-spinners": "^3.4.0",
46
47
  "conf": "^15.1.0",
48
+ "eventemitter3": "^5.0.4",
49
+ "execa": "^9.6.1",
50
+ "figures": "^6.1.0",
47
51
  "ink": "^6.8.0",
52
+ "ink-big-text": "^2.0.0",
53
+ "ink-select-input": "^6.2.0",
48
54
  "ink-spinner": "^5.0.0",
55
+ "ink-table": "^3.1.0",
49
56
  "ink-text-input": "^6.0.0",
57
+ "ms": "^2.1.3",
58
+ "p-limit": "^7.3.0",
59
+ "p-retry": "^7.1.1",
50
60
  "picocolors": "^1.1.1",
51
- "react": "^19.2.4"
61
+ "react": "^19.2.4",
62
+ "semver": "^7.7.4",
63
+ "signal-exit": "^4.1.0",
64
+ "which": "^6.0.1",
65
+ "zod": "^4.3.6",
66
+ "zustand": "^5.0.11"
52
67
  },
53
68
  "devDependencies": {
69
+ "@types/ms": "^2.1.0",
54
70
  "@types/node": "^22.13.10",
55
71
  "@types/react": "^19.0.0",
72
+ "@types/semver": "^7.7.1",
73
+ "@types/which": "^3.0.4",
56
74
  "tsup": "^8.3.6",
57
75
  "typescript": "^5.8.2",
58
76
  "vitest": "^3.0.7"