/** * `forge score` -- Local trust score computation with optional publish to ForgeOS API. * * Reads the local trust ledger and computes a 4-dimension quality score: * - quality -- ratio of high-confidence entries * - velocity -- entries per day over ledger lifetime * - consistency -- regularity of commit intervals (low stddev = high score) * - collaboration -- ratio of entries with source_tree_hash (git-bound) * * Score computation is LOCAL. Publishing (--publish) signs the score payload * with Ed25519 and POSTs it to the ForgeOS API. * * Usage: * forge score [path] * forge score --publish * forge score --publish --threshold 70 --dry-run * forge score --check-drift */ import { Command } from "commander"; export declare function registerScoreCommands(parent: Command, _client: unknown): void; //# sourceMappingURL=score.d.ts.map