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.js
CHANGED
|
@@ -12923,18 +12923,17 @@ ${variables.EDITOR ? `using ${variables.EDITOR} as primary AI subagent` : ""}
|
|
|
12923
12923
|
const timestamp = (/* @__PURE__ */ new Date()).toISOString();
|
|
12924
12924
|
const __filename = url.fileURLToPath((typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('cli.js', document.baseURI).href)));
|
|
12925
12925
|
const __dirname = path__namespace.dirname(__filename);
|
|
12926
|
-
|
|
12926
|
+
process.env.JUNO_TASK_MCP_SERVER_PATH || path__namespace.join(__dirname, "../../../roundtable_mcp_server/roundtable_mcp_server/server.py");
|
|
12927
12927
|
const mcpContent = {
|
|
12928
12928
|
mcpServers: {
|
|
12929
12929
|
"roundtable-ai": {
|
|
12930
12930
|
name: "roundtable-ai",
|
|
12931
|
-
command: "
|
|
12932
|
-
args: [
|
|
12931
|
+
command: "roundtable-ai",
|
|
12932
|
+
args: [],
|
|
12933
12933
|
timeout: 7200,
|
|
12934
12934
|
enable_default_progress_callback: true,
|
|
12935
12935
|
suppress_subprocess_logs: true,
|
|
12936
12936
|
env: {
|
|
12937
|
-
PYTHONPATH: path__namespace.resolve(__dirname, "../.."),
|
|
12938
12937
|
ROUNDTABLE_DEBUG: "false"
|
|
12939
12938
|
},
|
|
12940
12939
|
_metadata: {
|
|
@@ -13048,7 +13047,8 @@ ${variables.EDITOR ? `using ${variables.EDITOR} as primary AI subagent` : ""}
|
|
|
13048
13047
|
const { execSync } = await import('child_process');
|
|
13049
13048
|
try {
|
|
13050
13049
|
const output = execSync(installScript, {
|
|
13051
|
-
cwd:
|
|
13050
|
+
cwd: process.cwd(),
|
|
13051
|
+
// FIXED: Run from project root, not .juno_task
|
|
13052
13052
|
encoding: "utf8",
|
|
13053
13053
|
stdio: "pipe"
|
|
13054
13054
|
// Capture output instead of inheriting
|