The directory that holds an intent's canonical sidecar artifacts: ` /canonical/intents/ /`. Keyed off the SAME normalized id as the tracked vault path (critic #4).
(repo: &Repository, id: &str)
| 139 | /// `<dot_dir>/canonical/intents/<sanitized-normalized-id>/`. Keyed off the SAME |
| 140 | /// normalized id as the tracked vault path (critic #4). |
| 141 | pub fn sidecar_dir(repo: &Repository, id: &str) -> CliResult<PathBuf> { |
| 142 | Ok(repo |
| 143 | .dot_dir() |
| 144 | .join("canonical") |
| 145 | .join("intents") |
| 146 | .join(sanitize_id(&normalized_id(repo, id)?))) |
| 147 | } |
| 148 | |
| 149 | /// The attested-node sidecar file for an intent. |
| 150 | pub fn attested_sidecar_path(repo: &Repository, id: &str) -> CliResult<PathBuf> { |
no test coverage detected