@polterware/polter 0.4.2 → 0.5.1
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 +70 -184
- package/dist/api.js +62 -30
- package/dist/app-HGIGWI7F.js +393 -0
- package/dist/appPanel-EZOHLTBX.js +1365 -0
- package/dist/applier-OEXIUYYO.js +10 -0
- package/dist/chunk-3RG5ZIWI.js +10 -0
- package/dist/chunk-45CQFZU7.js +262 -0
- package/dist/chunk-57CZSEY5.js +5398 -0
- package/dist/chunk-6IBRTRLX.js +257 -0
- package/dist/chunk-AK3NTS3Y.js +220 -0
- package/dist/chunk-BGT5TT2A.js +32 -0
- package/dist/chunk-BIN7BDA2.js +77 -0
- package/dist/chunk-E2B5FFBU.js +81 -0
- package/dist/chunk-EAMHFQKU.js +222 -0
- package/dist/chunk-ELSIHPJL.js +455 -0
- package/dist/{chunk-XCCKD3RZ.js → chunk-GCS7JEYU.js} +7 -3
- package/dist/chunk-GKROVUDG.js +15 -0
- package/dist/chunk-GVIKF6UI.js +738 -0
- package/dist/chunk-JQB2A3CA.js +72 -0
- package/dist/chunk-KEGROLGX.js +50 -0
- package/dist/chunk-OKHPN6X7.js +49 -0
- package/dist/chunk-RVMOIUSL.js +22 -0
- package/dist/chunk-TD6YNU6L.js +22 -0
- package/dist/chunk-U64WZOJ3.js +101 -0
- package/dist/chunk-U6725U7K.js +138 -0
- package/dist/chunk-XNRIN3VM.js +125 -0
- package/dist/chunk-ZU5VZHYD.js +28 -0
- package/dist/commands-BIIWGCVS.js +15 -0
- package/dist/editor-AUFJZ4PE.js +11 -0
- package/dist/engine-EZQ26HDJ.js +11 -0
- package/dist/globalConf-AGMMIKSL.js +7 -0
- package/dist/index.js +49 -7601
- package/dist/ipcServer-HXOPKNBP.js +10 -0
- package/dist/mcp.js +182 -13892
- package/dist/mcpInstaller-J2AGFNWR.js +19 -0
- package/dist/parser-4ZBGSI2U.js +10 -0
- package/dist/planner-ZVBA66V6.js +9 -0
- package/dist/processManager-6T5DBURV.js +37 -0
- package/dist/projectConfig-TRCJS3VI.js +21 -0
- package/dist/skillSetup-ZQEHJ5ZG.js +14 -0
- package/dist/status-QMRCV4XJ.js +8 -0
- package/dist/storage-C3D7TLJW.js +17 -0
- package/dist/toolResolver-A2BUT3NK.js +17 -0
- package/package.json +28 -3
- package/dist/chunk-CWBIXRZP.js +0 -2607
|
@@ -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,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,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,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polterware/polter",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "Infrastructure orchestrator CLI for managing dev processes, pipelines, CLI commands, and packages.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"polter": "./dist/index.js",
|
|
@@ -34,6 +34,13 @@
|
|
|
34
34
|
"polterware",
|
|
35
35
|
"polter",
|
|
36
36
|
"cli",
|
|
37
|
+
"orchestrator",
|
|
38
|
+
"infrastructure",
|
|
39
|
+
"pipelines",
|
|
40
|
+
"supabase",
|
|
41
|
+
"github",
|
|
42
|
+
"vercel",
|
|
43
|
+
"git",
|
|
37
44
|
"typescript"
|
|
38
45
|
],
|
|
39
46
|
"author": "Polterware",
|
|
@@ -43,16 +50,34 @@
|
|
|
43
50
|
},
|
|
44
51
|
"dependencies": {
|
|
45
52
|
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
53
|
+
"cli-spinners": "^3.4.0",
|
|
46
54
|
"conf": "^15.1.0",
|
|
55
|
+
"eventemitter3": "^5.0.4",
|
|
56
|
+
"execa": "^9.6.1",
|
|
57
|
+
"figures": "^6.1.0",
|
|
47
58
|
"ink": "^6.8.0",
|
|
59
|
+
"ink-big-text": "^2.0.0",
|
|
60
|
+
"ink-select-input": "^6.2.0",
|
|
48
61
|
"ink-spinner": "^5.0.0",
|
|
62
|
+
"ink-table": "^3.1.0",
|
|
49
63
|
"ink-text-input": "^6.0.0",
|
|
64
|
+
"ms": "^2.1.3",
|
|
65
|
+
"p-limit": "^7.3.0",
|
|
66
|
+
"p-retry": "^7.1.1",
|
|
50
67
|
"picocolors": "^1.1.1",
|
|
51
|
-
"react": "^19.2.4"
|
|
68
|
+
"react": "^19.2.4",
|
|
69
|
+
"semver": "^7.7.4",
|
|
70
|
+
"signal-exit": "^4.1.0",
|
|
71
|
+
"which": "^6.0.1",
|
|
72
|
+
"zod": "^4.3.6",
|
|
73
|
+
"zustand": "^5.0.11"
|
|
52
74
|
},
|
|
53
75
|
"devDependencies": {
|
|
76
|
+
"@types/ms": "^2.1.0",
|
|
54
77
|
"@types/node": "^22.13.10",
|
|
55
78
|
"@types/react": "^19.0.0",
|
|
79
|
+
"@types/semver": "^7.7.1",
|
|
80
|
+
"@types/which": "^3.0.4",
|
|
56
81
|
"tsup": "^8.3.6",
|
|
57
82
|
"typescript": "^5.8.2",
|
|
58
83
|
"vitest": "^3.0.7"
|