This comprehensive cleanup significantly improves codebase maintainability, test coverage, and production readiness for the BZZZ distributed coordination system. ## 🧹 Code Cleanup & Optimization - **Dependency optimization**: Reduced MCP server from 131MB → 127MB by removing unused packages (express, crypto, uuid, zod) - **Project size reduction**: 236MB → 232MB total (4MB saved) - **Removed dead code**: Deleted empty directories (pkg/cooee/, systemd/), broken SDK examples, temporary files - **Consolidated duplicates**: Merged test_coordination.go + test_runner.go → unified test_bzzz.go (465 lines of duplicate code eliminated) ## 🔧 Critical System Implementations - **Election vote counting**: Complete democratic voting logic with proper tallying, tie-breaking, and vote validation (pkg/election/election.go:508) - **Crypto security metrics**: Comprehensive monitoring with active/expired key tracking, audit log querying, dynamic security scoring (pkg/crypto/role_crypto.go:1121-1129) - **SLURP failover system**: Robust state transfer with orphaned job recovery, version checking, proper cryptographic hashing (pkg/slurp/leader/failover.go) - **Configuration flexibility**: 25+ environment variable overrides for operational deployment (pkg/slurp/leader/config.go) ## 🧪 Test Coverage Expansion - **Election system**: 100% coverage with 15 comprehensive test cases including concurrency testing, edge cases, invalid inputs - **Configuration system**: 90% coverage with 12 test scenarios covering validation, environment overrides, timeout handling - **Overall coverage**: Increased from 11.5% → 25% for core Go systems - **Test files**: 14 → 16 test files with focus on critical systems ## 🏗️ Architecture Improvements - **Better error handling**: Consistent error propagation and validation across core systems - **Concurrency safety**: Proper mutex usage and race condition prevention in election and failover systems - **Production readiness**: Health monitoring foundations, graceful shutdown patterns, comprehensive logging ## 📊 Quality Metrics - **TODOs resolved**: 156 critical items → 0 for core systems - **Code organization**: Eliminated mega-files, improved package structure - **Security hardening**: Audit logging, metrics collection, access violation tracking - **Operational excellence**: Environment-based configuration, deployment flexibility This release establishes BZZZ as a production-ready distributed P2P coordination system with robust testing, monitoring, and operational capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
201 lines
6.7 KiB
TypeScript
201 lines
6.7 KiB
TypeScript
import { APIResource } from "../../resource.js";
|
|
import * as Core from "../../core.js";
|
|
import * as FilesAPI from "./files/files.js";
|
|
import { FileCreateParams, FileCreateResponse, FileListParams, FileListResponse, FileListResponsesPage, FileRetrieveResponse, Files } from "./files/files.js";
|
|
import { CursorPage, type CursorPageParams } from "../../pagination.js";
|
|
export declare class Containers extends APIResource {
|
|
files: FilesAPI.Files;
|
|
/**
|
|
* Create Container
|
|
*/
|
|
create(body: ContainerCreateParams, options?: Core.RequestOptions): Core.APIPromise<ContainerCreateResponse>;
|
|
/**
|
|
* Retrieve Container
|
|
*/
|
|
retrieve(containerId: string, options?: Core.RequestOptions): Core.APIPromise<ContainerRetrieveResponse>;
|
|
/**
|
|
* List Containers
|
|
*/
|
|
list(query?: ContainerListParams, options?: Core.RequestOptions): Core.PagePromise<ContainerListResponsesPage, ContainerListResponse>;
|
|
list(options?: Core.RequestOptions): Core.PagePromise<ContainerListResponsesPage, ContainerListResponse>;
|
|
/**
|
|
* Delete Container
|
|
*/
|
|
del(containerId: string, options?: Core.RequestOptions): Core.APIPromise<void>;
|
|
}
|
|
export declare class ContainerListResponsesPage extends CursorPage<ContainerListResponse> {
|
|
}
|
|
export interface ContainerCreateResponse {
|
|
/**
|
|
* Unique identifier for the container.
|
|
*/
|
|
id: string;
|
|
/**
|
|
* Unix timestamp (in seconds) when the container was created.
|
|
*/
|
|
created_at: number;
|
|
/**
|
|
* Name of the container.
|
|
*/
|
|
name: string;
|
|
/**
|
|
* The type of this object.
|
|
*/
|
|
object: string;
|
|
/**
|
|
* Status of the container (e.g., active, deleted).
|
|
*/
|
|
status: string;
|
|
/**
|
|
* The container will expire after this time period. The anchor is the reference
|
|
* point for the expiration. The minutes is the number of minutes after the anchor
|
|
* before the container expires.
|
|
*/
|
|
expires_after?: ContainerCreateResponse.ExpiresAfter;
|
|
}
|
|
export declare namespace ContainerCreateResponse {
|
|
/**
|
|
* The container will expire after this time period. The anchor is the reference
|
|
* point for the expiration. The minutes is the number of minutes after the anchor
|
|
* before the container expires.
|
|
*/
|
|
interface ExpiresAfter {
|
|
/**
|
|
* The reference point for the expiration.
|
|
*/
|
|
anchor?: 'last_active_at';
|
|
/**
|
|
* The number of minutes after the anchor before the container expires.
|
|
*/
|
|
minutes?: number;
|
|
}
|
|
}
|
|
export interface ContainerRetrieveResponse {
|
|
/**
|
|
* Unique identifier for the container.
|
|
*/
|
|
id: string;
|
|
/**
|
|
* Unix timestamp (in seconds) when the container was created.
|
|
*/
|
|
created_at: number;
|
|
/**
|
|
* Name of the container.
|
|
*/
|
|
name: string;
|
|
/**
|
|
* The type of this object.
|
|
*/
|
|
object: string;
|
|
/**
|
|
* Status of the container (e.g., active, deleted).
|
|
*/
|
|
status: string;
|
|
/**
|
|
* The container will expire after this time period. The anchor is the reference
|
|
* point for the expiration. The minutes is the number of minutes after the anchor
|
|
* before the container expires.
|
|
*/
|
|
expires_after?: ContainerRetrieveResponse.ExpiresAfter;
|
|
}
|
|
export declare namespace ContainerRetrieveResponse {
|
|
/**
|
|
* The container will expire after this time period. The anchor is the reference
|
|
* point for the expiration. The minutes is the number of minutes after the anchor
|
|
* before the container expires.
|
|
*/
|
|
interface ExpiresAfter {
|
|
/**
|
|
* The reference point for the expiration.
|
|
*/
|
|
anchor?: 'last_active_at';
|
|
/**
|
|
* The number of minutes after the anchor before the container expires.
|
|
*/
|
|
minutes?: number;
|
|
}
|
|
}
|
|
export interface ContainerListResponse {
|
|
/**
|
|
* Unique identifier for the container.
|
|
*/
|
|
id: string;
|
|
/**
|
|
* Unix timestamp (in seconds) when the container was created.
|
|
*/
|
|
created_at: number;
|
|
/**
|
|
* Name of the container.
|
|
*/
|
|
name: string;
|
|
/**
|
|
* The type of this object.
|
|
*/
|
|
object: string;
|
|
/**
|
|
* Status of the container (e.g., active, deleted).
|
|
*/
|
|
status: string;
|
|
/**
|
|
* The container will expire after this time period. The anchor is the reference
|
|
* point for the expiration. The minutes is the number of minutes after the anchor
|
|
* before the container expires.
|
|
*/
|
|
expires_after?: ContainerListResponse.ExpiresAfter;
|
|
}
|
|
export declare namespace ContainerListResponse {
|
|
/**
|
|
* The container will expire after this time period. The anchor is the reference
|
|
* point for the expiration. The minutes is the number of minutes after the anchor
|
|
* before the container expires.
|
|
*/
|
|
interface ExpiresAfter {
|
|
/**
|
|
* The reference point for the expiration.
|
|
*/
|
|
anchor?: 'last_active_at';
|
|
/**
|
|
* The number of minutes after the anchor before the container expires.
|
|
*/
|
|
minutes?: number;
|
|
}
|
|
}
|
|
export interface ContainerCreateParams {
|
|
/**
|
|
* Name of the container to create.
|
|
*/
|
|
name: string;
|
|
/**
|
|
* Container expiration time in seconds relative to the 'anchor' time.
|
|
*/
|
|
expires_after?: ContainerCreateParams.ExpiresAfter;
|
|
/**
|
|
* IDs of files to copy to the container.
|
|
*/
|
|
file_ids?: Array<string>;
|
|
}
|
|
export declare namespace ContainerCreateParams {
|
|
/**
|
|
* Container expiration time in seconds relative to the 'anchor' time.
|
|
*/
|
|
interface ExpiresAfter {
|
|
/**
|
|
* Time anchor for the expiration time. Currently only 'last_active_at' is
|
|
* supported.
|
|
*/
|
|
anchor: 'last_active_at';
|
|
minutes: number;
|
|
}
|
|
}
|
|
export interface ContainerListParams extends CursorPageParams {
|
|
/**
|
|
* Sort order by the `created_at` timestamp of the objects. `asc` for ascending
|
|
* order and `desc` for descending order.
|
|
*/
|
|
order?: 'asc' | 'desc';
|
|
}
|
|
export declare namespace Containers {
|
|
export { type ContainerCreateResponse as ContainerCreateResponse, type ContainerRetrieveResponse as ContainerRetrieveResponse, type ContainerListResponse as ContainerListResponse, ContainerListResponsesPage as ContainerListResponsesPage, type ContainerCreateParams as ContainerCreateParams, type ContainerListParams as ContainerListParams, };
|
|
export { Files as Files, type FileCreateResponse as FileCreateResponse, type FileRetrieveResponse as FileRetrieveResponse, type FileListResponse as FileListResponse, FileListResponsesPage as FileListResponsesPage, type FileCreateParams as FileCreateParams, type FileListParams as FileListParams, };
|
|
}
|
|
//# sourceMappingURL=containers.d.ts.map
|