@runeya/runeya 2.0.2 → 2.0.3
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/agent/index.js +1 -1
- package/agent/index.js.map +1 -1
- package/{dist-AOEI4AFR.js → dist-KSETQNTN.js} +3 -3
- package/{dist-AOEI4AFR.js.map → dist-KSETQNTN.js.map} +1 -1
- package/index.js +1 -1
- package/mcp-server/index.d.ts +1 -0
- package/mcp-server/index.js +64 -0
- package/mcp-server/index.js.map +1 -0
- package/package.json +1 -1
|
@@ -5967,7 +5967,7 @@ async function startClaudeCodeSession(convId, prompt, opts = {}) {
|
|
|
5967
5967
|
conversationStore.update(conv.id, { messages: conv.messages }, { silent: true }).catch(() => {
|
|
5968
5968
|
});
|
|
5969
5969
|
const systemContext = await buildCliSystemContext(conv, opts.jwt);
|
|
5970
|
-
const mcpServerPath = fileURLToPath(
|
|
5970
|
+
const mcpServerPath = fileURLToPath(new URL("../mcp-server/index.js", import.meta.url));
|
|
5971
5971
|
const mcpConfig = JSON.stringify({
|
|
5972
5972
|
mcpServers: {
|
|
5973
5973
|
runeya: {
|
|
@@ -6320,7 +6320,7 @@ ${input.prompt}` : input.prompt;
|
|
|
6320
6320
|
systemContext += "\n\n" + (conv.kanbanCardId ? generateKanbanSystemPrompt(kanbanBoard, conv.kanbanCardId) : generateKanbanPopulatePrompt(kanbanBoard));
|
|
6321
6321
|
}
|
|
6322
6322
|
}
|
|
6323
|
-
const mcpServerPath = fileURLToPath(
|
|
6323
|
+
const mcpServerPath = fileURLToPath(new URL("../mcp-server/index.js", import.meta.url));
|
|
6324
6324
|
const mcpConfig = JSON.stringify({
|
|
6325
6325
|
mcpServers: {
|
|
6326
6326
|
runeya: {
|
|
@@ -10981,4 +10981,4 @@ export {
|
|
|
10981
10981
|
createLocalServer,
|
|
10982
10982
|
pullEnv
|
|
10983
10983
|
};
|
|
10984
|
-
//# sourceMappingURL=dist-
|
|
10984
|
+
//# sourceMappingURL=dist-KSETQNTN.js.map
|