Versions in this module Expand all Collapse all v0 v0.3.0 Aug 16, 2026 Changes in this version + const EnvironmentKeyTTL + const IssuedKeyPrefix + const KeyStatusActive + const KeyStatusArchived + const KeyStatusExpired + const KeyStatusInactive + func IssueEnvironmentKey(ctx context.Context, pool *pgxpool.Pool, environmentID, name string) (string, error) + func RevokeEnvironmentKey(ctx context.Context, pool *pgxpool.Pool, environmentID, keyID string) (found bool, err error) + type EnvironmentKey struct + CreatedAt time.Time + ExpiresAt *time.Time + ID string + Name string + func ListEnvironmentKeys(ctx context.Context, pool *pgxpool.Pool, environmentID string, ...) ([]EnvironmentKey, int, error) + type ManagementKey struct + CreatedAt time.Time + CreatedBy *string + ExpiresAt *time.Time + ID string + Name string + PartialKeyHint string + Status string + func IssueManagementKey(ctx context.Context, pool *pgxpool.Pool, name string, expiresAt *time.Time, ...) (string, ManagementKey, error) + func ListManagementKeys(ctx context.Context, pool *pgxpool.Pool) ([]ManagementKey, error) v0.2.0 Aug 7, 2026 Changes in this version + const MetricFileDownloadBytes + const MetricFileUploadBytes + const MetricFileUploads + const MetricSessionResources + const MetricSkillDownloadBytes + const MetricSkillUploadBytes + const MetricSkillUploads + type ImportSummary struct + Failed map[string]error + Imported []string + Skipped []string + func ImportAnthropicSkills(ctx context.Context, pool *pgxpool.Pool, blobs blob.Store, dirs []string, ...) (*ImportSummary, error) v0.1.0 Jul 16, 2026 Changes in this version + func EnsureAPIKey(ctx context.Context, pool *pgxpool.Pool, name, key string) error + func EnsureEnvironmentKey(ctx context.Context, pool *pgxpool.Pool, environmentID, key string) error + func NewHandler(pool *pgxpool.Pool) http.Handler