juno-code 1.0.13 → 1.0.14
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/bin/cli.js +5 -5
- package/dist/bin/cli.js.map +1 -1
- package/dist/bin/cli.mjs +5 -5
- package/dist/bin/cli.mjs.map +1 -1
- package/dist/bin/juno-code.sh +66 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/templates/scripts/bootstrap.sh +189 -0
- package/dist/templates/scripts/install_requirements.sh +126 -25
- package/package.json +4 -1
package/dist/bin/cli.mjs
CHANGED
|
@@ -12890,18 +12890,17 @@ ${variables.EDITOR ? `using ${variables.EDITOR} as primary AI subagent` : ""}
|
|
|
12890
12890
|
const timestamp = (/* @__PURE__ */ new Date()).toISOString();
|
|
12891
12891
|
const __filename = fileURLToPath(import.meta.url);
|
|
12892
12892
|
const __dirname = path.dirname(__filename);
|
|
12893
|
-
|
|
12893
|
+
process.env.JUNO_TASK_MCP_SERVER_PATH || path.join(__dirname, "../../../roundtable_mcp_server/roundtable_mcp_server/server.py");
|
|
12894
12894
|
const mcpContent = {
|
|
12895
12895
|
mcpServers: {
|
|
12896
12896
|
"roundtable-ai": {
|
|
12897
12897
|
name: "roundtable-ai",
|
|
12898
|
-
command: "
|
|
12899
|
-
args: [
|
|
12898
|
+
command: "roundtable-ai",
|
|
12899
|
+
args: [],
|
|
12900
12900
|
timeout: 7200,
|
|
12901
12901
|
enable_default_progress_callback: true,
|
|
12902
12902
|
suppress_subprocess_logs: true,
|
|
12903
12903
|
env: {
|
|
12904
|
-
PYTHONPATH: path.resolve(__dirname, "../.."),
|
|
12905
12904
|
ROUNDTABLE_DEBUG: "false"
|
|
12906
12905
|
},
|
|
12907
12906
|
_metadata: {
|
|
@@ -13015,7 +13014,8 @@ ${variables.EDITOR ? `using ${variables.EDITOR} as primary AI subagent` : ""}
|
|
|
13015
13014
|
const { execSync } = await import('child_process');
|
|
13016
13015
|
try {
|
|
13017
13016
|
const output = execSync(installScript, {
|
|
13018
|
-
cwd:
|
|
13017
|
+
cwd: process.cwd(),
|
|
13018
|
+
// FIXED: Run from project root, not .juno_task
|
|
13019
13019
|
encoding: "utf8",
|
|
13020
13020
|
stdio: "pipe"
|
|
13021
13021
|
// Capture output instead of inheriting
|