diff --git a/pkg/mcp/agentic/plan.go b/pkg/mcp/agentic/plan.go index 37a611e..db2cf8d 100644 --- a/pkg/mcp/agentic/plan.go +++ b/pkg/mcp/agentic/plan.go @@ -312,7 +312,7 @@ func (s *PrepSubsystem) planList(_ context.Context, _ *mcp.CallToolRequest, inpu // --- Helpers --- func (s *PrepSubsystem) plansDir() string { - return filepath.Join(s.codePath, "host-uk", "core", ".core", "plans") + return filepath.Join(s.codePath, ".core", "plans") } func planPath(dir, id string) string { diff --git a/pkg/mcp/agentic/prep.go b/pkg/mcp/agentic/prep.go index d48aeeb..d10bdc1 100644 --- a/pkg/mcp/agentic/prep.go +++ b/pkg/mcp/agentic/prep.go @@ -98,7 +98,7 @@ func (s *PrepSubsystem) Shutdown(_ context.Context) error { return nil } // workspaceRoot returns the base directory for agent workspaces. func (s *PrepSubsystem) workspaceRoot() string { - return filepath.Join(s.codePath, "host-uk", "core", ".core", "workspace") + return filepath.Join(s.codePath, ".core", "workspace") } // --- Input/Output types ---