Integrate BACKBEAT SDK and resolve KACHING license validation

Major integrations and fixes:
- Added BACKBEAT SDK integration for P2P operation timing
- Implemented beat-aware status tracking for distributed operations
- Added Docker secrets support for secure license management
- Resolved KACHING license validation via HTTPS/TLS
- Updated docker-compose configuration for clean stack deployment
- Disabled rollback policies to prevent deployment failures
- Added license credential storage (CHORUS-DEV-MULTI-001)

Technical improvements:
- BACKBEAT P2P operation tracking with phase management
- Enhanced configuration system with file-based secrets
- Improved error handling for license validation
- Clean separation of KACHING and CHORUS deployment stacks

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-09-06 07:56:26 +10:00
parent 543ab216f9
commit 9bdcbe0447
4730 changed files with 1480093 additions and 1916 deletions

View File

@@ -5,7 +5,7 @@ import (
"fmt"
"time"
"chorus.services/bzzz/pkg/slurp/storage"
"chorus/pkg/slurp/storage"
)
// TemporalGraphFactory creates and configures temporal graph components

View File

@@ -4,8 +4,8 @@ import (
"context"
"time"
"chorus.services/bzzz/pkg/ucxl"
slurpContext "chorus.services/bzzz/pkg/slurp/context"
"chorus/pkg/ucxl"
slurpContext "chorus/pkg/slurp/context"
)
// TemporalGraph manages the temporal evolution of context through decision points

View File

@@ -9,9 +9,9 @@ import (
"sync"
"time"
"chorus.services/bzzz/pkg/ucxl"
slurpContext "chorus.services/bzzz/pkg/slurp/context"
"chorus.services/bzzz/pkg/slurp/storage"
"chorus/pkg/ucxl"
slurpContext "chorus/pkg/slurp/context"
"chorus/pkg/slurp/storage"
)
// temporalGraphImpl implements the TemporalGraph interface

View File

@@ -5,9 +5,9 @@ import (
"testing"
"time"
"chorus.services/bzzz/pkg/ucxl"
slurpContext "chorus.services/bzzz/pkg/slurp/context"
"chorus.services/bzzz/pkg/slurp/storage"
"chorus/pkg/ucxl"
slurpContext "chorus/pkg/slurp/context"
"chorus/pkg/slurp/storage"
)
// Mock storage for testing

View File

@@ -8,7 +8,7 @@ import (
"sync"
"time"
"chorus.services/bzzz/pkg/ucxl"
"chorus/pkg/ucxl"
)
// influenceAnalyzerImpl implements the InfluenceAnalyzer interface

View File

@@ -5,8 +5,8 @@ import (
"testing"
"time"
"chorus.services/bzzz/pkg/ucxl"
slurpContext "chorus.services/bzzz/pkg/slurp/context"
"chorus/pkg/ucxl"
slurpContext "chorus/pkg/slurp/context"
)
func TestInfluenceAnalyzer_AnalyzeInfluenceNetwork(t *testing.T) {

View File

@@ -5,9 +5,9 @@ import (
"testing"
"time"
"chorus.services/bzzz/pkg/ucxl"
slurpContext "chorus.services/bzzz/pkg/slurp/context"
"chorus.services/bzzz/pkg/slurp/storage"
"chorus/pkg/ucxl"
slurpContext "chorus/pkg/slurp/context"
"chorus/pkg/slurp/storage"
)
// Integration tests for the complete temporal graph system

View File

@@ -7,7 +7,7 @@ import (
"sync"
"time"
"chorus.services/bzzz/pkg/ucxl"
"chorus/pkg/ucxl"
)
// decisionNavigatorImpl implements the DecisionNavigator interface

View File

@@ -5,8 +5,8 @@ import (
"testing"
"time"
"chorus.services/bzzz/pkg/ucxl"
slurpContext "chorus.services/bzzz/pkg/slurp/context"
"chorus/pkg/ucxl"
slurpContext "chorus/pkg/slurp/context"
)
func TestDecisionNavigator_NavigateDecisionHops(t *testing.T) {

View File

@@ -7,8 +7,8 @@ import (
"sync"
"time"
"chorus.services/bzzz/pkg/ucxl"
"chorus.services/bzzz/pkg/slurp/storage"
"chorus/pkg/ucxl"
"chorus/pkg/slurp/storage"
)
// persistenceManagerImpl handles persistence and synchronization of temporal graph data

View File

@@ -8,7 +8,7 @@ import (
"sync"
"time"
"chorus.services/bzzz/pkg/ucxl"
"chorus/pkg/ucxl"
)
// querySystemImpl implements decision-hop based query operations

View File

@@ -8,7 +8,7 @@ import (
"sync"
"time"
"chorus.services/bzzz/pkg/ucxl"
"chorus/pkg/ucxl"
)
// stalenessDetectorImpl implements the StalenessDetector interface

View File

@@ -3,8 +3,8 @@ package temporal
import (
"time"
"chorus.services/bzzz/pkg/ucxl"
slurpContext "chorus.services/bzzz/pkg/slurp/context"
"chorus/pkg/ucxl"
slurpContext "chorus/pkg/slurp/context"
)
// ChangeReason represents why a context changed at a decision point