
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
cli-remote-runner
Advanced tools
Remote terminal runner for Cli Remote project. This package provides:
runner)Runner, createRunner, clients/utilities)npm install -g cli-remote-runner
npm install cli-remote-runner
runner --url https://your-broker.com --id my-runner --secret your-secret
import { createRunner } from 'cli-remote-runner';
const runner = createRunner();
runner.start();
process.on('SIGINT', () => {
runner.stop();
process.exit(0);
});
runner [options]
Options:
--url <url> Broker server URL (default: http://localhost:3000)
--id <id> Runner ID (default: runner-1)
--secret <secret> Runner secret for authentication
--help, -h Show help message
You can configure the runner using:
Create a .env file in your project directory or .runner.env in your home directory:
BROKER_URL=https://your-broker.com
RUNNER_ID=my-runner
RUNNER_SECRET=your-secret
.env in current directory.runner.env in home directoryexport BROKER_URL=https://broker.example.com
export RUNNER_ID=my-runner
export RUNNER_SECRET=my-secret
runner
Create .runner.env in your home directory:
BROKER_URL=https://broker.example.com
RUNNER_ID=my-runner
RUNNER_SECRET=my-secret
Then simply run:
runner
runner --url https://another-broker.com --id another-runner
Package root exports:
Runner, createRunnerloadConfig, SocketClient, RunnerClientPtyManager, PairingCodeGeneratorlogger, Logger, LogLevelMIT
FAQs
Remote terminal runner for Cli Remote project
The npm package cli-remote-runner receives a total of 2 weekly downloads. As such, cli-remote-runner popularity was classified as not popular.
We found that cli-remote-runner demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.