feat(cli): add 'lore count references' command (bd-2ez)

Adds 'references' entity type to the count command with breakdowns
by reference_type (closes/mentioned/related), source_method
(api/note_parse/description_parse), and unresolved count.

Includes human and robot output formatters, 2 unit tests.
This commit is contained in:
teernisse
2026-02-19 09:01:05 -05:00
parent c8dece8c60
commit 574cd55eff
7 changed files with 265 additions and 12 deletions

View File

@@ -22,8 +22,9 @@ pub mod who;
pub use auth_test::run_auth_test;
pub use count::{
print_count, print_count_json, print_event_count, print_event_count_json, run_count,
run_count_events,
print_count, print_count_json, print_event_count, print_event_count_json,
print_reference_count, print_reference_count_json, run_count, run_count_events,
run_count_references,
};
pub use doctor::{DoctorChecks, print_doctor_results, run_doctor};
pub use drift::{DriftResponse, print_drift_human, print_drift_json, run_drift};