feat: add workspace-isolated toolhost runtime and capability-gap skill loop

This commit is contained in:
2026-02-28 17:48:33 +08:00
parent ce9346e350
commit 7d6cf6b435
28 changed files with 2223 additions and 143 deletions

View File

@@ -0,0 +1,14 @@
package toolhost
import (
"io"
"os"
)
func stdin() io.Reader {
return os.Stdin
}
func stdout() io.Writer {
return os.Stdout
}