@dmsdc-ai/aigentry-telepty 0.1.65 → 0.1.66

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.
Files changed (3) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
  3. package/tui.js +1 -1
package/cli.js CHANGED
@@ -1186,7 +1186,7 @@ async function main() {
1186
1186
  const configArg = args.find(a => a.startsWith('--config='));
1187
1187
  const configPath = configArg ? configArg.split('=').slice(1).join('=') : null;
1188
1188
  const cliArg = args.find(a => a.startsWith('--cli='));
1189
- const cli = cliArg ? cliArg.split('=')[1] : 'claude --dangerously-skip-permissions';
1189
+ const cli = cliArg ? cliArg.split('=')[1] : 'claude --dangerously-skip-permissions --continue';
1190
1190
  const projectsDir = args.find(a => a.startsWith('--dir=')) ? args.find(a => a.startsWith('--dir=')).split('=')[1] : process.cwd();
1191
1191
 
1192
1192
  // Discover project folders (subdirectories with .git)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dmsdc-ai/aigentry-telepty",
3
- "version": "0.1.65",
3
+ "version": "0.1.66",
4
4
  "main": "daemon.js",
5
5
  "bin": {
6
6
  "aigentry-telepty": "install.js",
package/tui.js CHANGED
@@ -12,7 +12,7 @@ const DAEMON_URL = `http://localhost:${PORT}`;
12
12
  const POLL_INTERVAL = 2000;
13
13
  const STALE_THRESHOLD = 120; // seconds idle before "stale"
14
14
  const PROJECTS_DIR = path.join(os.homedir(), 'projects');
15
- const DEFAULT_CLI = 'claude --dangerously-skip-permissions';
15
+ const DEFAULT_CLI = 'claude --dangerously-skip-permissions --continue';
16
16
 
17
17
  class TuiDashboard {
18
18
  constructor() {