refactor: rename identity to syntrex, add root orchestration and CI/CD

- Rename Go module: sentinel-community/gomcp -> syntrex/gomcp (50+ files)
- Rename npm package: sentinel-dashboard -> syntrex-dashboard
- Update Cargo.toml repository URL to syntrex/syntrex
- Update all doc references from DmitrL-dev/AISecurity to syntrex
- Add root Makefile (build-all, test-all, lint-all, clean-all)
- Add MIT LICENSE
- Add .editorconfig (Go/Rust/TS/C cross-language)
- Add .github/workflows/ci.yml (Go + Rust + Dashboard)
- Add dashboard next.config.ts and .env.example
- Clean ARCHITECTURE.md: remove brain/immune/strike/micro-swarm, fix 61->67 engines
This commit is contained in:
DmitrL-dev 2026-03-11 15:30:49 +10:00
parent 2c50c993b1
commit 694e32be26
85 changed files with 169 additions and 169 deletions

View file

@ -5,7 +5,7 @@ import (
"fmt"
"time"
"github.com/sentinel-community/gomcp/internal/domain/causal"
"github.com/syntrex/gomcp/internal/domain/causal"
)
// CausalRepo implements causal.CausalStore using SQLite.

View file

@ -4,7 +4,7 @@ import (
"context"
"testing"
"github.com/sentinel-community/gomcp/internal/domain/causal"
"github.com/syntrex/gomcp/internal/domain/causal"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View file

@ -8,7 +8,7 @@ import (
"path/filepath"
"strings"
"github.com/sentinel-community/gomcp/internal/domain/crystal"
"github.com/syntrex/gomcp/internal/domain/crystal"
)
// CrystalRepo implements crystal.CrystalStore using SQLite.

View file

@ -4,7 +4,7 @@ import (
"context"
"testing"
"github.com/sentinel-community/gomcp/internal/domain/crystal"
"github.com/syntrex/gomcp/internal/domain/crystal"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View file

@ -7,7 +7,7 @@ import (
"fmt"
"time"
"github.com/sentinel-community/gomcp/internal/domain/memory"
"github.com/syntrex/gomcp/internal/domain/memory"
)
const timeFormat = time.RFC3339Nano

View file

@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/sentinel-community/gomcp/internal/domain/memory"
"github.com/syntrex/gomcp/internal/domain/memory"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View file

@ -5,7 +5,7 @@ import (
"fmt"
"time"
"github.com/sentinel-community/gomcp/internal/domain/peer"
"github.com/syntrex/gomcp/internal/domain/peer"
)
// PeerRepo implements peer.PeerStore using SQLite.

View file

@ -5,7 +5,7 @@ import (
"fmt"
"time"
"github.com/sentinel-community/gomcp/internal/domain/soc"
"github.com/syntrex/gomcp/internal/domain/soc"
)
// SOCRepo provides SQLite persistence for SOC events, incidents, and sensors.

View file

@ -4,7 +4,7 @@ import (
"testing"
"time"
"github.com/sentinel-community/gomcp/internal/domain/soc"
"github.com/syntrex/gomcp/internal/domain/soc"
)
func setupSOCRepo(t *testing.T) *SOCRepo {

View file

@ -9,7 +9,7 @@ import (
"fmt"
"time"
"github.com/sentinel-community/gomcp/internal/domain/session"
"github.com/syntrex/gomcp/internal/domain/session"
)
// StateRepo implements session.StateStore using SQLite.

View file

@ -4,7 +4,7 @@ import (
"context"
"testing"
"github.com/sentinel-community/gomcp/internal/domain/session"
"github.com/syntrex/gomcp/internal/domain/session"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View file

@ -5,7 +5,7 @@ import (
"fmt"
"time"
"github.com/sentinel-community/gomcp/internal/domain/synapse"
"github.com/syntrex/gomcp/internal/domain/synapse"
)
// SynapseRepo implements synapse.SynapseStore using SQLite.

View file

@ -4,8 +4,8 @@ import (
"context"
"testing"
"github.com/sentinel-community/gomcp/internal/domain/memory"
"github.com/sentinel-community/gomcp/internal/infrastructure/sqlite"
"github.com/syntrex/gomcp/internal/domain/memory"
"github.com/syntrex/gomcp/internal/infrastructure/sqlite"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)