Closed
#81
Verify Display Updates
0
Anchors
—
Blast radius
—
Churn 30d
0
Proposals
Verify Display Updates
Currently verify returns numbers which haven't been formatted. All human readable numbers should be formatted. Ex: 10000 should be 10,000. As an agent, do you get value out of formatting numbers?
# Machine readable output w/ --json flag
muse -C /tmp/throwaway-muse verify --json | jq
{
"muse_version": "0.2.0rc11",
"schema": 1,
"exit_code": 0,
"duration_ms": 2942.571,
"timestamp": "2026-06-10T23:36:20.588Z",
"warnings": [],
"repo_id": "sha256:016d02cb2925d0f0c381300d70d951782e6c81a2980e36d342760e6cfe096632",
"refs_checked": 2,
"commits_checked": 1290,
"snapshots_checked": 1273,
"objects_checked": 1063,
"signatures_checked": 1241,
"shallow_commits": 0,
"promised_objects": 11049,
"is_shallow": false,
"promisor_remotes": [
"origin"
],
"all_ok": true,
"nothing_checked": false,
"check_objects": true,
"strict": false,
"branch": null,
"fail_fast": false,
"failures": []
}
# Human readable output
muse -C /tmp/throwaway-muse verify
Checking refs... 2 ref(s)
Checking commits... 1290 commit(s)
Checking snapshots... 1273 snapshot(s)
Checking objects... 1063 object(s) [re-hashed]
Promised objects: 11049 — on promisor remote(s): origin
Checking signatures... 1241 signed commit(s)
✅ Repository is healthy.
Activity1
closed this issue
3 days ago
Fixed in commit sha256:1ddad36d76d3a8d323f9b3664169cb184b7a38b39208214a2ae504154260826f (merged to dev).
Removed all
[:8],[:12],[:16], and[:20]truncations from human-readable text output across 15 CLI command files:cli/commands/merge.py— merge base commit ID, harmony pattern IDcli/commands/task_queue.py— task ID in list outputcli/commands/dag.py— reservation/dependency IDs in all DAG display modescli/commands/reserve.py— dependency IDs in reservation outputcli/commands/find_symbol.py— body_hash in search resultscli/commands/hub/issues.py— comment ID in comment listcli/commands/hub/users.py— repo ID in fork success messagecli/commands/hub/_core.py— proposal ID in proposal list rowscli/commands/hub/attestations.py— attestation ID in create/list/revoke outputcli/commands/hub/proposals.py— proposal ID in comment/update/close/review outputcli/commands/hub/releases.py— release ID in create outputcli/commands/list_coord.py— reservation and intent IDscli/commands/watch_coord.py— event/reservation IDs in watch outputcli/commands/migrate.py— old/new commit IDs in ID map outputcli/commands/midi_check.py— commit ID in summary line--jsonoutput was not affected. Number formatting and full IDs inverify.pywere landed in a prior commit.