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 go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ module github.com/checkmarx/ast-cli
go 1.26.4

require (
github.com/Checkmarx/ast-cx-hooks v1.0.4
github.com/Checkmarx/containers-resolver v1.0.34
github.com/Checkmarx/containers-types v1.0.9
github.com/Checkmarx/gen-ai-prompts v0.0.0-20240807143411-708ceec12b63
github.com/Checkmarx/gen-ai-wrapper v1.0.3
github.com/Checkmarx/manifest-parser v0.1.3
github.com/Checkmarx/secret-detection v1.2.1
github.com/CheckmarxDev/ast-cx-hooks v1.0.3
github.com/MakeNowJust/heredoc v1.0.0
github.com/alexbrainman/sspi v0.0.0-20210105120005-909beea2cc74
github.com/bouk/monkey v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ github.com/BurntSushi/toml v0.4.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbi
github.com/BurntSushi/toml v1.6.0 h1:dRaEfpa2VI55EwlIW72hMRHdWouJeRF7TPYhI+AUQjk=
github.com/BurntSushi/toml v1.6.0/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/Checkmarx/ast-cx-hooks v1.0.4 h1:rxzUea+wT4kxGbwzlgSJmVswod+HuWOALgxQtjY6P0c=
github.com/Checkmarx/ast-cx-hooks v1.0.4/go.mod h1:GPHk8IJHQlCW7l8ye9/Bij57zYQGRG+pxJPiGgsR8cY=
github.com/Checkmarx/containers-images-extractor v1.0.22 h1:kJZgwk28LwJZ7Xky+kzwL+JSZOlpwrGsZQhhz4L2t6s=
github.com/Checkmarx/containers-images-extractor v1.0.22/go.mod h1:HyzVb8TtTDf56hGlSakalPXtzjJ6VhTYe9fmAcOS+V8=
github.com/Checkmarx/containers-resolver v1.0.34 h1:KULN8s8xb1tQtdH4yzHVdwN8GyLqtPCAkFWra10k7V0=
Expand All @@ -81,8 +83,6 @@ github.com/Checkmarx/manifest-parser v0.1.3 h1:cr+q7QkbkoCsoA5nQnv1/Pp23jnKWBePA
github.com/Checkmarx/manifest-parser v0.1.3/go.mod h1:hh5FX5FdDieU8CKQEkged4hfOaSylpJzub8PRFXa4kA=
github.com/Checkmarx/secret-detection v1.2.1 h1:Hzpz74dcN/L14Q86ARvPOZpKBnERzGTpy6sl1RXKOTo=
github.com/Checkmarx/secret-detection v1.2.1/go.mod h1:kbXbtIQisDdB/TNuV7r9HPclEznUyBHLQ5yr7IX7vBQ=
github.com/CheckmarxDev/ast-cx-hooks v1.0.3 h1:zMz6Ony8iWgKqjgUFvYhhqm5dr29sEO6r2pBl7fi/OM=
github.com/CheckmarxDev/ast-cx-hooks v1.0.3/go.mod h1:BNFcjgHhjxiPnKGHqiaWQycMMrkeT+DqokG/l7d9gs8=
github.com/CycloneDX/cyclonedx-go v0.10.0 h1:7xyklU7YD+CUyGzSFIARG18NYLsKVn4QFg04qSsu+7Y=
github.com/CycloneDX/cyclonedx-go v0.10.0/go.mod h1:vUvbCXQsEm48OI6oOlanxstwNByXjCZ2wuleUlwGEO8=
github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU=
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/agenthooks/cx/dispatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cx
import (
"os"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
)

// DispatchRoute calls the handler registered under route without requiring the
Expand Down
4 changes: 2 additions & 2 deletions internal/commands/agenthooks/cx/hooks.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"strings"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
"github.com/CheckmarxDev/ast-cx-hooks/cursor"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
"github.com/Checkmarx/ast-cx-hooks/cursor"
"github.com/checkmarx/ast-cli/internal/commands/agenthooks/guardrails"
"github.com/checkmarx/ast-cli/internal/commands/agenthooks/guardrails/asca"
"github.com/checkmarx/ast-cli/internal/commands/agenthooks/guardrails/kics"
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/agenthooks/cx/install.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cx

import (
"github.com/CheckmarxDev/ast-cx-hooks/install"
"github.com/Checkmarx/ast-cx-hooks/install"
)

// Route is a single hook dispatch route exposed as a hidden `cx hooks <Use>`
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/agenthooks/guardrails/asca/asca.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"
"strings"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
"github.com/checkmarx/ast-cli/internal/params"
"github.com/checkmarx/ast-cli/internal/services"
"github.com/checkmarx/ast-cli/internal/services/realtimeengine/ignore"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"testing"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
"github.com/checkmarx/ast-cli/internal/services/realtimeengine/ignore"
"github.com/checkmarx/ast-cli/internal/wrappers/grpcs"
)
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/agenthooks/guardrails/asca/content.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"strings"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
)

// ProposedContent returns the file content that would exist after ev.Changes are applied.
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/agenthooks/guardrails/kics/content.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"strings"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
)

// proposedContent returns the file content that would exist after ev.Changes are applied.
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/agenthooks/guardrails/kics/kics.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"
"strings"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
"github.com/checkmarx/ast-cli/internal/params"
"github.com/checkmarx/ast-cli/internal/services/realtimeengine/ignore"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strings"
"testing"

agenthooks "github.com/CheckmarxDev/ast-cx-hooks"
agenthooks "github.com/Checkmarx/ast-cx-hooks"
"github.com/checkmarx/ast-cli/internal/services/realtimeengine"
"github.com/checkmarx/ast-cli/internal/services/realtimeengine/iacrealtime"
)
Expand Down
Loading