ropilot 0.1.5 → 0.1.7

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/lib/proxy.js CHANGED
@@ -5,7 +5,6 @@
5
5
  * all requests to the Ropilot edge server.
6
6
  */
7
7
 
8
- import { createInterface } from 'readline';
9
8
  import { existsSync, readFileSync, writeFileSync, mkdirSync } from 'fs';
10
9
  import { join } from 'path';
11
10
  import { homedir } from 'os';
@@ -167,12 +166,6 @@ export async function serve() {
167
166
  let buffer = '';
168
167
  let contentLength = -1;
169
168
 
170
- const rl = createInterface({
171
- input: process.stdin,
172
- terminal: false
173
- });
174
-
175
- // Handle line-based input (for simpler clients)
176
169
  process.stdin.on('data', (chunk) => {
177
170
  buffer += chunk.toString();
178
171
 
package/lib/setup.js CHANGED
@@ -12,6 +12,7 @@ import { existsSync, writeFileSync, mkdirSync, readFileSync, readdirSync } from
12
12
  import { join, dirname } from 'path';
13
13
  import { homedir, platform } from 'os';
14
14
  import { createInterface } from 'readline';
15
+ import { execSync } from 'child_process';
15
16
  import {
16
17
  loadGlobalConfig,
17
18
  saveGlobalConfig,
@@ -43,8 +44,6 @@ function isWSL() {
43
44
  * Get Windows username when running in WSL (tries multiple methods)
44
45
  */
45
46
  function getWindowsUsername() {
46
- const { execSync } = require('child_process');
47
-
48
47
  // Method 1: cmd.exe
49
48
  try {
50
49
  const result = execSync('cmd.exe /c echo %USERNAME%', { encoding: 'utf-8', timeout: 5000 }).trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ropilot",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "AI-powered Roblox development assistant - MCP CLI",
5
5
  "author": "whut",
6
6
  "license": "MIT",