@openape/apes 0.5.0 → 0.5.2

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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Patrick Hofmann
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
File without changes
File without changes
File without changes
package/dist/cli.js CHANGED
@@ -1806,7 +1806,7 @@ var mcpCommand = defineCommand21({
1806
1806
  if (transport !== "stdio" && transport !== "sse") {
1807
1807
  throw new Error('Transport must be "stdio" or "sse"');
1808
1808
  }
1809
- const { startMcpServer } = await import("./server-RJQH5B5F.js");
1809
+ const { startMcpServer } = await import("./server-5RAVUOJN.js");
1810
1810
  await startMcpServer(transport, port);
1811
1811
  }
1812
1812
  });
@@ -2223,7 +2223,7 @@ var configCommand = defineCommand25({
2223
2223
  var main = defineCommand25({
2224
2224
  meta: {
2225
2225
  name: "apes",
2226
- version: "0.5.0",
2226
+ version: "0.5.2",
2227
2227
  description: "Unified CLI for OpenApe"
2228
2228
  },
2229
2229
  subCommands: {
package/dist/index.js CHANGED
File without changes
@@ -302,7 +302,7 @@ function registerAdapterTools(server) {
302
302
  async function startMcpServer(transport, port) {
303
303
  const server = new McpServer({
304
304
  name: "apes",
305
- version: true ? "0.5.0" : "0.1.0"
305
+ version: true ? "0.5.2" : "0.1.0"
306
306
  });
307
307
  registerStaticTools(server);
308
308
  registerAdapterTools(server);
@@ -330,4 +330,4 @@ async function startMcpServer(transport, port) {
330
330
  export {
331
331
  startMcpServer
332
332
  };
333
- //# sourceMappingURL=server-RJQH5B5F.js.map
333
+ //# sourceMappingURL=server-5RAVUOJN.js.map
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openape/apes",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "turbo": {
5
5
  "tags": [
6
6
  "publishable"
@@ -20,21 +20,15 @@
20
20
  "files": [
21
21
  "dist"
22
22
  ],
23
- "scripts": {
24
- "build": "tsup",
25
- "lint": "eslint .",
26
- "typecheck": "tsc --noEmit",
27
- "test": "vitest run"
28
- },
29
23
  "dependencies": {
30
24
  "@modelcontextprotocol/sdk": "^1.27.1",
31
- "@openape/core": "workspace:*",
32
- "@openape/grants": "workspace:*",
33
- "@openape/shapes": "workspace:*",
34
25
  "citty": "^0.1.6",
35
26
  "consola": "^3.4.2",
36
27
  "giget": "^2.0.0",
37
- "zod": "^4.3.6"
28
+ "zod": "^4.3.6",
29
+ "@openape/core": "0.11.0",
30
+ "@openape/shapes": "0.6.0",
31
+ "@openape/grants": "0.6.0"
38
32
  },
39
33
  "devDependencies": {
40
34
  "@types/node": "^25.3.5",
@@ -51,5 +45,11 @@
51
45
  "type": "git",
52
46
  "url": "https://github.com/openape-ai/openape.git",
53
47
  "directory": "packages/apes"
48
+ },
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "lint": "eslint .",
52
+ "typecheck": "tsc --noEmit",
53
+ "test": "vitest run"
54
54
  }
55
- }
55
+ }