Resolve an Intent display ID to its current Vault path. This exposes the same legacy-manifest fallback used by `intent show` so read-only consumers do not need to assume `IntentSummary.vault_path` is populated.
(&self, intent_id: &str)
| 529 | /// read-only consumers do not need to assume `IntentSummary.vault_path` is |
| 530 | /// populated. |
| 531 | pub fn vault_intent_path(&self, intent_id: &str) -> Result<Option<String>, RepositoryError> { |
| 532 | let full_id = self.normalize_intent_id(intent_id)?; |
| 533 | self.find_intent_path(&full_id) |
| 534 | } |
| 535 | |
| 536 | /// Delete an unstarted backlog intent. |
| 537 | /// |
no test coverage detected