@elizaos/plugin-minecraft 2.0.0-alpha.3 → 2.0.0-alpha.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/package.json +44 -2
- package/dist/actions/attack.d.ts +0 -3
- package/dist/actions/attack.d.ts.map +0 -1
- package/dist/actions/chat.d.ts +0 -3
- package/dist/actions/chat.d.ts.map +0 -1
- package/dist/actions/connect.d.ts +0 -3
- package/dist/actions/connect.d.ts.map +0 -1
- package/dist/actions/control.d.ts +0 -3
- package/dist/actions/control.d.ts.map +0 -1
- package/dist/actions/dig.d.ts +0 -3
- package/dist/actions/dig.d.ts.map +0 -1
- package/dist/actions/disconnect.d.ts +0 -3
- package/dist/actions/disconnect.d.ts.map +0 -1
- package/dist/actions/goto.d.ts +0 -3
- package/dist/actions/goto.d.ts.map +0 -1
- package/dist/actions/index.d.ts +0 -13
- package/dist/actions/index.d.ts.map +0 -1
- package/dist/actions/look.d.ts +0 -3
- package/dist/actions/look.d.ts.map +0 -1
- package/dist/actions/place.d.ts +0 -3
- package/dist/actions/place.d.ts.map +0 -1
- package/dist/actions/scan.d.ts +0 -3
- package/dist/actions/scan.d.ts.map +0 -1
- package/dist/actions/stop.d.ts +0 -3
- package/dist/actions/stop.d.ts.map +0 -1
- package/dist/actions/utils.d.ts +0 -7
- package/dist/actions/utils.d.ts.map +0 -1
- package/dist/actions/waypoints.d.ts +0 -6
- package/dist/actions/waypoints.d.ts.map +0 -1
- package/dist/index.d.ts +0 -12
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -4664
- package/dist/index.js.map +0 -51
- package/dist/protocol.d.ts +0 -21
- package/dist/protocol.d.ts.map +0 -1
- package/dist/providers/index.d.ts +0 -4
- package/dist/providers/index.d.ts.map +0 -1
- package/dist/providers/vision.d.ts +0 -3
- package/dist/providers/vision.d.ts.map +0 -1
- package/dist/providers/waypoints.d.ts +0 -3
- package/dist/providers/waypoints.d.ts.map +0 -1
- package/dist/providers/world-state.d.ts +0 -3
- package/dist/providers/world-state.d.ts.map +0 -1
- package/dist/services/minecraft-service.d.ts +0 -32
- package/dist/services/minecraft-service.d.ts.map +0 -1
- package/dist/services/process-manager.d.ts +0 -13
- package/dist/services/process-manager.d.ts.map +0 -1
- package/dist/services/waypoints-service.d.ts +0 -29
- package/dist/services/waypoints-service.d.ts.map +0 -1
- package/dist/services/websocket-client.d.ts +0 -13
- package/dist/services/websocket-client.d.ts.map +0 -1
- package/dist/types.d.ts +0 -48
- package/dist/types.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-minecraft",
|
|
3
3
|
"description": "Minecraft automation plugin for ElizaOS (Mineflayer bridge)",
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
4
|
+
"version": "2.0.0-alpha.5",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -53,7 +53,9 @@
|
|
|
53
53
|
"clean": "rm -rf dist .turbo",
|
|
54
54
|
"lint:check": "bunx @biomejs/biome check .",
|
|
55
55
|
"build": "bun run build.ts",
|
|
56
|
-
"build:ts": "bun run build.ts"
|
|
56
|
+
"build:ts": "bun run build.ts",
|
|
57
|
+
"format": "bunx @biomejs/biome format --write .",
|
|
58
|
+
"format:check": "bunx @biomejs/biome format ."
|
|
57
59
|
},
|
|
58
60
|
"publishConfig": {
|
|
59
61
|
"access": "public"
|
|
@@ -66,5 +68,45 @@
|
|
|
66
68
|
"platformDetails": {
|
|
67
69
|
"node": "Node.js only (platform: node)"
|
|
68
70
|
}
|
|
71
|
+
},
|
|
72
|
+
"agentConfig": {
|
|
73
|
+
"pluginParameters": {
|
|
74
|
+
"MC_HOST": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"description": "Server host address",
|
|
77
|
+
"required": false,
|
|
78
|
+
"sensitive": false
|
|
79
|
+
},
|
|
80
|
+
"MC_PORT": {
|
|
81
|
+
"type": "number",
|
|
82
|
+
"description": "Minecraft server port",
|
|
83
|
+
"required": false,
|
|
84
|
+
"sensitive": false
|
|
85
|
+
},
|
|
86
|
+
"MC_SERVER_PORT": {
|
|
87
|
+
"type": "number",
|
|
88
|
+
"description": "Local server port",
|
|
89
|
+
"required": false,
|
|
90
|
+
"sensitive": false
|
|
91
|
+
},
|
|
92
|
+
"MC_USERNAME": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"description": "Minecraft username",
|
|
95
|
+
"required": false,
|
|
96
|
+
"sensitive": false
|
|
97
|
+
},
|
|
98
|
+
"MC_AUTH": {
|
|
99
|
+
"type": "string",
|
|
100
|
+
"description": "Minecraft auth mode (offline/microsoft)",
|
|
101
|
+
"required": false,
|
|
102
|
+
"sensitive": false
|
|
103
|
+
},
|
|
104
|
+
"MC_VERSION": {
|
|
105
|
+
"type": "string",
|
|
106
|
+
"description": "Minecraft version",
|
|
107
|
+
"required": false,
|
|
108
|
+
"sensitive": false
|
|
109
|
+
}
|
|
110
|
+
}
|
|
69
111
|
}
|
|
70
112
|
}
|
package/dist/actions/attack.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"attack.d.ts","sourceRoot":"","sources":["../../src/actions/attack.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAavB,eAAO,MAAM,qBAAqB,EAAE,MAmDnC,CAAC"}
|
package/dist/actions/chat.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"chat.d.ts","sourceRoot":"","sources":["../../src/actions/chat.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAMvB,eAAO,MAAM,mBAAmB,EAAE,MAqDjC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"connect.d.ts","sourceRoot":"","sources":["../../src/actions/connect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAoCvB,eAAO,MAAM,sBAAsB,EAAE,MAwDpC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"control.d.ts","sourceRoot":"","sources":["../../src/actions/control.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAsCvB,eAAO,MAAM,sBAAsB,EAAE,MA0DpC,CAAC"}
|
package/dist/actions/dig.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dig.d.ts","sourceRoot":"","sources":["../../src/actions/dig.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAOvB,eAAO,MAAM,kBAAkB,EAAE,MAwDhC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"disconnect.d.ts","sourceRoot":"","sources":["../../src/actions/disconnect.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAMvB,eAAO,MAAM,yBAAyB,EAAE,MAoDvC,CAAC"}
|
package/dist/actions/goto.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"goto.d.ts","sourceRoot":"","sources":["../../src/actions/goto.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAOvB,eAAO,MAAM,mBAAmB,EAAE,MAkDjC,CAAC"}
|
package/dist/actions/index.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export { minecraftAttackAction } from "./attack.js";
|
|
2
|
-
export { minecraftChatAction } from "./chat.js";
|
|
3
|
-
export { minecraftConnectAction } from "./connect.js";
|
|
4
|
-
export { minecraftControlAction } from "./control.js";
|
|
5
|
-
export { minecraftDigAction } from "./dig.js";
|
|
6
|
-
export { minecraftDisconnectAction } from "./disconnect.js";
|
|
7
|
-
export { minecraftGotoAction } from "./goto.js";
|
|
8
|
-
export { minecraftLookAction } from "./look.js";
|
|
9
|
-
export { minecraftPlaceAction } from "./place.js";
|
|
10
|
-
export { minecraftScanAction } from "./scan.js";
|
|
11
|
-
export { minecraftStopAction } from "./stop.js";
|
|
12
|
-
export { minecraftWaypointDeleteAction, minecraftWaypointGotoAction, minecraftWaypointListAction, minecraftWaypointSetAction, } from "./waypoints.js";
|
|
13
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/actions/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,aAAa,CAAC;AACpD,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,yBAAyB,EAAE,MAAM,iBAAiB,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD,OAAO,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAC;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD,OAAO,EACL,6BAA6B,EAC7B,2BAA2B,EAC3B,2BAA2B,EAC3B,0BAA0B,GAC3B,MAAM,gBAAgB,CAAC"}
|
package/dist/actions/look.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"look.d.ts","sourceRoot":"","sources":["../../src/actions/look.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AA2BvB,eAAO,MAAM,mBAAmB,EAAE,MAiDjC,CAAC"}
|
package/dist/actions/place.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"place.d.ts","sourceRoot":"","sources":["../../src/actions/place.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AA8CvB,eAAO,MAAM,oBAAoB,EAAE,MAwDlC,CAAC"}
|
package/dist/actions/scan.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"scan.d.ts","sourceRoot":"","sources":["../../src/actions/scan.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAgDvB,eAAO,MAAM,mBAAmB,EAAE,MA2DjC,CAAC"}
|
package/dist/actions/stop.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"stop.d.ts","sourceRoot":"","sources":["../../src/actions/stop.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAMvB,eAAO,MAAM,mBAAmB,EAAE,MA0CjC,CAAC"}
|
package/dist/actions/utils.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/actions/utils.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,IAAI,GAAG;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAIvD,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,GAAG,IAAI,CA2BrD"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { Action } from "@elizaos/core";
|
|
2
|
-
export declare const minecraftWaypointSetAction: Action;
|
|
3
|
-
export declare const minecraftWaypointDeleteAction: Action;
|
|
4
|
-
export declare const minecraftWaypointListAction: Action;
|
|
5
|
-
export declare const minecraftWaypointGotoAction: Action;
|
|
6
|
-
//# sourceMappingURL=waypoints.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"waypoints.d.ts","sourceRoot":"","sources":["../../src/actions/waypoints.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,MAAM,EAQP,MAAM,eAAe,CAAC;AAevB,eAAO,MAAM,0BAA0B,EAAE,MA4DxC,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,MAuC3C,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,MA8CzC,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,MAqDzC,CAAC"}
|
package/dist/index.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { Plugin } from "@elizaos/core";
|
|
2
|
-
export * from "./actions/index.js";
|
|
3
|
-
export * from "./protocol.js";
|
|
4
|
-
export * from "./providers/index.js";
|
|
5
|
-
export * from "./services/minecraft-service.js";
|
|
6
|
-
export * from "./services/process-manager.js";
|
|
7
|
-
export * from "./services/waypoints-service.js";
|
|
8
|
-
export * from "./services/websocket-client.js";
|
|
9
|
-
export * from "./types.js";
|
|
10
|
-
export declare const minecraftPlugin: Plugin;
|
|
11
|
-
export default minecraftPlugin;
|
|
12
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAiB,MAAM,EAAY,MAAM,eAAe,CAAC;AAIrE,cAAc,oBAAoB,CAAC;AACnC,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,iCAAiC,CAAC;AAChD,cAAc,+BAA+B,CAAC;AAC9C,cAAc,iCAAiC,CAAC;AAChD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,YAAY,CAAC;AAuC3B,eAAO,MAAM,eAAe,EAAE,MA4C7B,CAAC;AAEF,eAAe,eAAe,CAAC"}
|