Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions cmd/provider-calibration/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// Command provider-calibration compares Codex CLI token usage across
// codex_originator variants to calibrate per-provider budget attribution.
//
// It reads recorded Codex session metrics, groups them by originator, and
// reports the token attribution that should be applied for each provider so
// the nightshift budget accounting stays accurate. Run via `make
// calibrate-providers`.
package main

import (
Expand Down
2 changes: 1 addition & 1 deletion internal/security/security.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func ValidateProjectPath(path string) error {
return nil
}

// Operation types for safety checks.
// OperationType categorizes an operation performed by an agent for safety checks.
type OperationType string

const (
Expand Down