Combines three repositories into a single workspace: - go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/ - go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch) - php-devops → repos.yaml, setup.sh, scripts/, .core/ Module path: forge.lthn.ai/core/agent All packages build, all tests pass. Co-Authored-By: Virgil <virgil@lethean.io>
14 lines
202 B
Go
14 lines
202 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/mark3labs/mcp-go/server"
|
|
)
|
|
|
|
func main() {
|
|
srv := newServer()
|
|
if err := server.ServeStdio(srv); err != nil {
|
|
log.Fatalf("mcp server failed: %v", err)
|
|
}
|
|
}
|