Feat rebrand armature (#43)
All checks were successful
CI/CD / detect-changes (push) Successful in 3s
CI/CD / test-frontend (push) Successful in 5s
CI/CD / test-go-pg (push) Successful in 2m34s
CI/CD / test-sqlite (push) Successful in 2m46s
CI/CD / build-and-deploy (push) Successful in 1m55s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #43.
This commit is contained in:
2026-03-31 23:25:37 +00:00
committed by xcaliber
parent fb5284f667
commit 680ec3b897
321 changed files with 956 additions and 1033 deletions

View File

@@ -18,7 +18,7 @@ import (
"go.starlark.net/starlark"
"go.starlark.net/starlarkstruct"
"switchboard-core/models"
"armature/models"
)
// ConnectionResolver resolves extension connections with secret decryption.

View File

@@ -273,7 +273,7 @@ func executeHTTPRequest(
}
// Set headers (user-provided override defaults)
req.Header.Set("User-Agent", "ChatSwitchboard-Extension/1.0")
req.Header.Set("User-Agent", "Armature-Extension/1.0")
for k, v := range headers {
req.Header.Set(k, v)
}

View File

@@ -17,7 +17,7 @@ import (
"go.starlark.net/starlark"
"go.starlark.net/starlarkstruct"
"switchboard-core/models"
"armature/models"
)
// libContext carries per-invocation state for lib.require() calls.

View File

@@ -11,8 +11,8 @@ import (
"go.starlark.net/starlark"
"go.starlark.net/starlarkstruct"
"switchboard-core/models"
"switchboard-core/store"
"armature/models"
"armature/store"
)
// ─── Secrets Module ──────────────────────────

View File

@@ -21,7 +21,7 @@ import (
"go.starlark.net/starlark"
"go.starlark.net/starlarkstruct"
"switchboard-core/events"
"armature/events"
)
// maxRealtimePayload is the payload size limit (pg_notify safe).

View File

@@ -9,7 +9,7 @@ import (
"go.starlark.net/starlark"
"switchboard-core/events"
"armature/events"
)
func TestRealtimePublish_HappyPath(t *testing.T) {

View File

@@ -30,10 +30,10 @@ import (
starlarkjson "go.starlark.net/lib/json"
"switchboard-core/events"
"switchboard-core/metrics"
"switchboard-core/models"
"switchboard-core/store"
"armature/events"
"armature/metrics"
"armature/models"
"armature/store"
)
// sandboxStats tracks cumulative execution counters for the admin metrics endpoint.

View File

@@ -18,7 +18,7 @@ import (
"go.starlark.net/starlark"
"go.starlark.net/starlarkstruct"
"switchboard-core/store"
"armature/store"
)
// BuildSettingsModule creates the "settings" Starlark module for a package.

View File

@@ -21,7 +21,7 @@ import (
"go.starlark.net/starlark"
"go.starlark.net/starlarkstruct"
"switchboard-core/store"
"armature/store"
)
// BuildWorkflowModule creates the "workflow" Starlark module for a package.