UNPKG

agentvasya

Version:

Autonomous coding agent CLI - capable of creating/editing files, running commands, using the browser, and more

6 lines (4 loc) 131 B
#!/usr/bin/env node import process from 'node:process'; import isDocker from './index.js'; process.exitCode = isDocker() ? 0 : 2;