@openape/apes 0.31.1 → 0.31.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/dist/cli.js
CHANGED
|
@@ -4157,7 +4157,7 @@ var mcpCommand = defineCommand33({
|
|
|
4157
4157
|
if (transport !== "stdio" && transport !== "sse") {
|
|
4158
4158
|
throw new Error('Transport must be "stdio" or "sse"');
|
|
4159
4159
|
}
|
|
4160
|
-
const { startMcpServer } = await import("./server-
|
|
4160
|
+
const { startMcpServer } = await import("./server-LLVMF24K.js");
|
|
4161
4161
|
await startMcpServer(transport, port);
|
|
4162
4162
|
}
|
|
4163
4163
|
});
|
|
@@ -4795,7 +4795,7 @@ async function bestEffortGrantCount(idp) {
|
|
|
4795
4795
|
}
|
|
4796
4796
|
}
|
|
4797
4797
|
async function runHealth(args) {
|
|
4798
|
-
const version = true ? "0.31.
|
|
4798
|
+
const version = true ? "0.31.2" : "0.0.0";
|
|
4799
4799
|
const auth = loadAuth();
|
|
4800
4800
|
if (!auth) {
|
|
4801
4801
|
throw new CliError("Not logged in. Run `apes login` first.", 1);
|
|
@@ -5068,10 +5068,10 @@ if (shellRewrite) {
|
|
|
5068
5068
|
if (shellRewrite.action === "rewrite") {
|
|
5069
5069
|
process.argv = shellRewrite.argv;
|
|
5070
5070
|
} else if (shellRewrite.action === "version") {
|
|
5071
|
-
console.log(`ape-shell ${"0.31.
|
|
5071
|
+
console.log(`ape-shell ${"0.31.2"} (OpenApe DDISA shell wrapper)`);
|
|
5072
5072
|
process.exit(0);
|
|
5073
5073
|
} else if (shellRewrite.action === "help") {
|
|
5074
|
-
console.log(`ape-shell ${"0.31.
|
|
5074
|
+
console.log(`ape-shell ${"0.31.2"} \u2014 OpenApe DDISA shell wrapper`);
|
|
5075
5075
|
console.log("");
|
|
5076
5076
|
console.log("Usage:");
|
|
5077
5077
|
console.log(" ape-shell Start interactive grant-mediated REPL");
|
|
@@ -5129,7 +5129,7 @@ var configCommand = defineCommand45({
|
|
|
5129
5129
|
var main = defineCommand45({
|
|
5130
5130
|
meta: {
|
|
5131
5131
|
name: "apes",
|
|
5132
|
-
version: "0.31.
|
|
5132
|
+
version: "0.31.2",
|
|
5133
5133
|
description: "Unified CLI for OpenApe"
|
|
5134
5134
|
},
|
|
5135
5135
|
subCommands: {
|
|
@@ -5184,7 +5184,7 @@ async function maybeRefreshAuth() {
|
|
|
5184
5184
|
}
|
|
5185
5185
|
}
|
|
5186
5186
|
await maybeRefreshAuth();
|
|
5187
|
-
await maybeWarnStaleVersion("0.31.
|
|
5187
|
+
await maybeWarnStaleVersion("0.31.2").catch(() => {
|
|
5188
5188
|
});
|
|
5189
5189
|
runMain(main).catch((err) => {
|
|
5190
5190
|
if (err instanceof CliExit) {
|
|
@@ -303,7 +303,7 @@ function registerAdapterTools(server) {
|
|
|
303
303
|
async function startMcpServer(transport, port) {
|
|
304
304
|
const server = new McpServer({
|
|
305
305
|
name: "apes",
|
|
306
|
-
version: true ? "0.31.
|
|
306
|
+
version: true ? "0.31.2" : "0.1.0"
|
|
307
307
|
});
|
|
308
308
|
registerStaticTools(server);
|
|
309
309
|
registerAdapterTools(server);
|
|
@@ -331,4 +331,4 @@ async function startMcpServer(transport, port) {
|
|
|
331
331
|
export {
|
|
332
332
|
startMcpServer
|
|
333
333
|
};
|
|
334
|
-
//# sourceMappingURL=server-
|
|
334
|
+
//# sourceMappingURL=server-LLVMF24K.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openape/apes",
|
|
3
|
-
"version": "0.31.
|
|
3
|
+
"version": "0.31.2",
|
|
4
4
|
"turbo": {
|
|
5
5
|
"tags": [
|
|
6
6
|
"publishable"
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"@lydell/node-pty": "1.2.0-beta.12",
|
|
32
32
|
"shell-quote": "^1.8.3",
|
|
33
33
|
"zod": "^4.3.6",
|
|
34
|
-
"@openape/proxy": "0.4.
|
|
35
|
-
"@openape/core": "0.
|
|
36
|
-
"@openape/grants": "0.11.
|
|
34
|
+
"@openape/proxy": "0.4.2",
|
|
35
|
+
"@openape/core": "0.15.0",
|
|
36
|
+
"@openape/grants": "0.11.4"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^25.3.5",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"tsup": "^8.5.1",
|
|
45
45
|
"typescript": "^5.8.2",
|
|
46
46
|
"vitest": "^3.2.4",
|
|
47
|
-
"@openape/server": "0.3.
|
|
47
|
+
"@openape/server": "0.3.8"
|
|
48
48
|
},
|
|
49
49
|
"license": "MIT",
|
|
50
50
|
"author": "Patrick Hofmann <phofmann@delta-mind.at>",
|
|
File without changes
|