refactor(monorepo): extract inbox and orch runtimes

This commit is contained in:
2026-03-20 13:08:33 +08:00
parent 1938eb8f07
commit 9b8e886289
78 changed files with 10516 additions and 77 deletions
+11
View File
@@ -0,0 +1,11 @@
package main
import (
"os"
orchcli "ai-workflow-skill/packages/orch-runtime/internal/cli/orch"
)
func main() {
os.Exit(orchcli.Execute(os.Args[1:], os.Stdout, os.Stderr))
}