(self)
| 558 | yield row["source"], row["name"] |
| 559 | |
| 560 | def mappings(self) -> Iterator[tuple[str, str]]: |
| 561 | for row in self._conn.execute("SELECT src, dst FROM mappings"): |
| 562 | yield row["src"], row["dst"] |
| 563 | |
| 564 | def update_subcommand_mappings(self) -> SubcommandMappingResult: |
| 565 | """Reconcile subcommand mappings using declared subcommands from LLM-extracted pages. |
no outgoing calls