rebrand better-clawd and ship initial npm-ready release
This commit is contained in:
5
src/daemon/main.ts
Normal file
5
src/daemon/main.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { unsupportedEntrypoint } from '../utils/unsupportedEntrypoint.js'
|
||||
|
||||
export async function daemonMain(): Promise<never> {
|
||||
return unsupportedEntrypoint('better-clawd daemon')
|
||||
}
|
||||
7
src/daemon/workerRegistry.ts
Normal file
7
src/daemon/workerRegistry.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { unsupportedEntrypoint } from '../utils/unsupportedEntrypoint.js'
|
||||
|
||||
export async function runDaemonWorker(kind?: string): Promise<never> {
|
||||
return unsupportedEntrypoint(
|
||||
kind ? `better-clawd --daemon-worker ${kind}` : 'better-clawd --daemon-worker',
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user