Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
1257ec8
chore(ledger): start task task-01 for issue #227
stranske-automation-bot Feb 23, 2026
3d70087
chore(ledger): finish task task-01 for issue #227
stranske-automation-bot Feb 23, 2026
16f4ff7
Add mapping_diff_report console script entrypoint
Codex-Agent Feb 23, 2026
a050ace
Create mapping_diff_report CLI module and package CLI layout
Codex-Agent Feb 23, 2026
105310b
Wire mapping_diff_report CLI to deterministic report generator
Codex-Agent Feb 23, 2026
a5037e8
Implement mapping diff scanning for normalization and reconciliation …
Codex-Agent Feb 23, 2026
b56b3fa
Preserve raw unmapped names in mapping diff report
Codex-Agent Feb 24, 2026
37898c2
chore(codex-keepalive): apply updates (PR #228)
github-actions[bot] Feb 24, 2026
91aedc1
chore(codex-keepalive): apply updates (PR #228)
github-actions[bot] Feb 24, 2026
19d659b
fix: resolve CI failures
Feb 24, 2026
8755571
fix: resolve CI failures
Feb 24, 2026
7c055c3
chore(codex-keepalive): apply updates (PR #228)
github-actions[bot] Feb 24, 2026
39c6ab2
test: tighten mapping diff CLI and section format assertions
Codex-Agent Feb 24, 2026
10c1e15
chore(codex-keepalive): apply updates (PR #228)
github-actions[bot] Feb 24, 2026
73196dd
chore(codex-keepalive): apply updates (PR #228)
github-actions[bot] Feb 24, 2026
119b18e
fix: resolve merge conflicts with main
github-actions[bot] Feb 24, 2026
7c46ef0
merge: resolve conflicts with main in normalize.py and pipeline/run.py
claude Feb 24, 2026
2e05dba
Unify counterparty resolution maps and canonicalize registry lookup
Codex-Agent Feb 24, 2026
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
367 changes: 367 additions & 0 deletions .agents/issue-227-ledger.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ A programmatic replacement for the MOSERS spreadsheet workflow used to evaluate
- **Keepalive troubleshooting:** [docs/KEEPALIVE_TROUBLESHOOTING.md](docs/KEEPALIVE_TROUBLESHOOTING.md)
- **Consumer setup checklist:** [docs/SETUP_CHECKLIST.md](docs/SETUP_CHECKLIST.md)

## Name Registry Workflow

1. Edit `config/name_registry.yml`.
2. Run `mapping_diff_report`.
3. Interpret `UNMAPPED`, `FALLBACK_MAPPED`, and `SUGGESTIONS` sections.

## Repository automation (high level)

This repo is integrated with the central [stranske/Workflows](https://github.com/stranske/Workflows) library.
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ dev = [
Homepage = "https://github.com/stranske/Template"
Repository = "https://github.com/stranske/Template"

[project.scripts]
mapping_diff_report = "counter_risk.cli.mapping_diff_report:main"

[tool.setuptools.packages.find]
where = ["src"]

Expand Down
2 changes: 1 addition & 1 deletion release.spec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if fixture_template.exists():


a = Analysis(
[str(project_root / "src" / "counter_risk" / "cli.py")],
[str(project_root / "src" / "counter_risk" / "cli" / "__main__.py")],
pathex=[str(project_root / "src")],
binaries=[],
datas=datas,
Expand Down
Loading
Loading