Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mcp/cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"strings"

"quint-mcp/db"
"github.com/m0n0x41d/quint-code/db"

"github.com/spf13/cobra"
)
Expand Down
4 changes: 2 additions & 2 deletions src/mcp/cmd/serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"path/filepath"

"quint-mcp/db"
"quint-mcp/internal/fpf"
"github.com/m0n0x41d/quint-code/db"
"github.com/m0n0x41d/quint-code/internal/fpf"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion src/mcp/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module quint-mcp
module github.com/m0n0x41d/quint-code

go 1.24.0

Expand Down
4 changes: 2 additions & 2 deletions src/mcp/internal/fpf/actualize_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"
"testing"

"quint-mcp/db"
"quint-mcp/internal/fpf"
"github.com/m0n0x41d/quint-code/db"
"github.com/m0n0x41d/quint-code/internal/fpf"
)

func TestActualize_GitReconciliation(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions src/mcp/internal/fpf/assurance_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"testing"
"time"

"quint-mcp/assurance"
"quint-mcp/db"
"quint-mcp/internal/fpf"
"github.com/m0n0x41d/quint-code/assurance"
"github.com/m0n0x41d/quint-code/db"
"github.com/m0n0x41d/quint-code/internal/fpf"
)

func setupAssuranceTestEnv(t *testing.T) (*fpf.FSM, *db.Store, string) {
Expand Down
2 changes: 1 addition & 1 deletion src/mcp/internal/fpf/fsm.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"path/filepath"
"strings"

"quint-mcp/assurance"
"github.com/m0n0x41d/quint-code/assurance"
)

// Phase definitions
Expand Down
4 changes: 2 additions & 2 deletions src/mcp/internal/fpf/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"strings"
"testing"

"quint-mcp/db"
"quint-mcp/internal/fpf"
"github.com/m0n0x41d/quint-code/db"
"github.com/m0n0x41d/quint-code/internal/fpf"
)

// Helper to get FPF knowledge path for a level
Expand Down
2 changes: 1 addition & 1 deletion src/mcp/internal/fpf/preconditions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"
"testing"

"quint-mcp/db"
"github.com/m0n0x41d/quint-code/db"
)

func TestCheckPreconditions_Propose(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion src/mcp/internal/fpf/projection.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"regexp"
"strings"

"quint-mcp/db"
"github.com/m0n0x41d/quint-code/db"
)

type TamperingEvent struct {
Expand Down
2 changes: 1 addition & 1 deletion src/mcp/internal/fpf/projection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path/filepath"
"testing"

"quint-mcp/db"
"github.com/m0n0x41d/quint-code/db"
)

var ctx = context.Background()
Expand Down
4 changes: 2 additions & 2 deletions src/mcp/internal/fpf/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"strings"
"time"

"quint-mcp/assurance"
"quint-mcp/db"
"github.com/m0n0x41d/quint-code/assurance"
"github.com/m0n0x41d/quint-code/db"

"github.com/google/uuid"
)
Expand Down
6 changes: 3 additions & 3 deletions src/mcp/internal/fpf/tools_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strings"
"testing"

"quint-mcp/db"
"github.com/m0n0x41d/quint-code/db"
)

// Helper to create a dummy Tools instance for testing
Expand Down Expand Up @@ -611,9 +611,9 @@ func TestPropose_WithDependsOn(t *testing.T) {
"external traffic",
"system",
`{"anomaly": "need unified entry point"}`,
"", // no decision_context
"", // no decision_context
[]string{"auth-module", "rate-limiter"}, // depends_on
3, // CL3
3, // CL3
)
if err != nil {
t.Fatalf("ProposeHypothesis failed: %v", err)
Expand Down
2 changes: 1 addition & 1 deletion src/mcp/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "quint-mcp/cmd"
import "github.com/m0n0x41d/quint-code/cmd"

func main() {
cmd.Execute()
Expand Down