@episoda/cli 0.2.154 → 0.2.155

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.
@@ -2913,7 +2913,7 @@ var require_package = __commonJS({
2913
2913
  "package.json"(exports2, module2) {
2914
2914
  module2.exports = {
2915
2915
  name: "@episoda/cli",
2916
- version: "0.2.154",
2916
+ version: "0.2.155",
2917
2917
  description: "CLI tool for Episoda local development workflow orchestration",
2918
2918
  main: "dist/index.js",
2919
2919
  types: "dist/index.d.ts",
@@ -10670,7 +10670,8 @@ ${message}`;
10670
10670
  }
10671
10671
  const mcpConfigJson = JSON.stringify({ mcpServers: mcpConfig });
10672
10672
  args.push("--mcp-config", mcpConfigJson);
10673
- console.log(`[AgentManager] EP1253: MCP config with env: ${mcpConfigJson.substring(0, 200)}...`);
10673
+ const redactedConfig = mcpConfigJson.replace(/("[A-Z_]*(?:TOKEN|SECRET|KEY)"\s*:\s*")[^"]*(")/g, "$1[REDACTED]$2");
10674
+ console.log(`[AgentManager] EP1253: MCP config with env: ${redactedConfig.substring(0, 300)}...`);
10674
10675
  }
10675
10676
  argsBeforeMessage = args.length;
10676
10677
  args.push("--", message);
@@ -12650,6 +12651,13 @@ var Daemon = class _Daemon {
12650
12651
  orphanWorktreeCleanup: modeConfig.orphanWorktreeCleanup,
12651
12652
  maxConcurrentModules: modeConfig.maxConcurrentModules
12652
12653
  });
12654
+ if (!process.env.EPISODA_CONTAINER_ID) {
12655
+ if (process.env.GITHUB_PERSONAL_ACCESS_TOKEN) {
12656
+ console.log("[Daemon] EP1365: GITHUB_PERSONAL_ACCESS_TOKEN is set in environment");
12657
+ } else {
12658
+ console.warn("[Daemon] EP1365: GITHUB_PERSONAL_ACCESS_TOKEN not set - GitHub MCP tools in local dev may fail");
12659
+ }
12660
+ }
12653
12661
  this.checkAndNotifyUpdates();
12654
12662
  if (process.env.EPISODA_CLI_PIN_VERSION) {
12655
12663
  console.log(`[Daemon] EP1319: CLI version pinned to ${process.env.EPISODA_CLI_PIN_VERSION}, periodic updates disabled`);