Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@termly-dev/cli-dev

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@termly-dev/cli-dev - npm Package Compare versions

Comparing version
0.9.6
to
0.9.7
+8
-12
bin/cli-dev.js

@@ -33,5 +33,5 @@ #!/usr/bin/env node

// Start command
// Start command - can be called explicitly or as default action
program
.command('start [directory]')
.command('start [directory]', { isDefault: true })
.description('Start AI tool with remote access')

@@ -102,5 +102,6 @@ .option('--ai <tool>', 'Specify AI tool to use')

console.log('Examples:');
console.log(' $ termly-dev start # Auto-detect AI tool');
console.log(' $ termly-dev start --ai aider # Use Aider');
console.log(' $ termly-dev start --ai "claude code" # Use Claude Code');
console.log(' $ termly-dev # Auto-detect AI tool');
console.log(' $ termly-dev --ai aider # Use Aider');
console.log(' $ termly-dev --ai "claude code" # Use Claude Code');
console.log(' $ termly-dev start # Same as just "termly-dev"');
console.log(' $ termly-dev tools list # List available tools');

@@ -117,7 +118,7 @@ console.log(' $ termly-dev status # Show all sessions');

console.log(' $ cd ~/frontend');
console.log(' $ termly-dev start');
console.log(' $ termly-dev');
console.log('');
console.log(' Terminal 2:');
console.log(' $ cd ~/backend');
console.log(' $ termly-dev start');
console.log(' $ termly-dev');
console.log('');

@@ -147,6 +148,1 @@ console.log(' Each session is independent with its own AI tool.');

program.parse(process.argv);
// Show help if no command specified
if (!process.argv.slice(2).length) {
program.outputHelp();
}

@@ -33,5 +33,5 @@ #!/usr/bin/env node

// Start command
// Start command - can be called explicitly or as default action
program
.command('start [directory]')
.command('start [directory]', { isDefault: true })
.description('Start AI tool with remote access')

@@ -100,5 +100,6 @@ .option('--ai <tool>', 'Specify AI tool to use')

console.log('Examples:');
console.log(' $ termly start # Auto-detect AI tool');
console.log(' $ termly start --ai aider # Use Aider');
console.log(' $ termly start --ai "claude code" # Use Claude Code');
console.log(' $ termly # Auto-detect AI tool');
console.log(' $ termly --ai aider # Use Aider');
console.log(' $ termly --ai "claude code" # Use Claude Code');
console.log(' $ termly start # Same as just "termly"');
console.log(' $ termly tools list # List available tools');

@@ -115,7 +116,7 @@ console.log(' $ termly status # Show all sessions');

console.log(' $ cd ~/frontend');
console.log(' $ termly start');
console.log(' $ termly');
console.log('');
console.log(' Terminal 2:');
console.log(' $ cd ~/backend');
console.log(' $ termly start');
console.log(' $ termly');
console.log('');

@@ -145,6 +146,1 @@ console.log(' Each session is independent with its own AI tool.');

program.parse(process.argv);
// Show help if no command specified
if (!process.argv.slice(2).length) {
program.outputHelp();
}
+1
-1
{
"name": "@termly-dev/cli-dev",
"version": "0.9.6",
"version": "0.9.7",
"description": "Mirror your AI coding sessions to mobile - control Claude, Aider, Copilot, and 17+ tools from your phone (Development version)",

@@ -5,0 +5,0 @@ "main": "index.js",