repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import chalk from 'chalk'; |
| #2 | |
| #3 | export async function runAutomaton(): Promise<void> { |
| #4 | process.stdout.write('\x1b[2J\x1b[H'); |
| #5 | process.stdout.write(chalk.cyanBright.bold('\n Automaton\n\n')); |
| #6 | process.stdout.write(chalk.gray(' Build and launch the runtime from the repo checkout:\n')); |
| #7 | process.stdout.write(chalk.cyan(' cd openclawd-framework/multiagents-infinite-backroom/automaton-main && npm install && npm run build\n')); |
| #8 | process.stdout.write(chalk.cyan(' clawd spawn\n\n')); |
| #9 | process.stdout.write(chalk.gray(' Press any key to return.\n')); |
| #10 | await waitForAnyKey(); |
| #11 | } |
| #12 | |
| #13 | function waitForAnyKey(): Promise<void> { |
| #14 | return new Promise(resolve => { |
| #15 | if (process.stdin.setRawMode) process.stdin.setRawMode(true); |
| #16 | process.stdin.resume(); |
| #17 | process.stdin.once('data', () => { |
| #18 | if (process.stdin.setRawMode) process.stdin.setRawMode(false); |
| #19 | resolve(); |
| #20 | }); |
| #21 | }); |
| #22 | } |
| #23 |