MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / vault_intent_path

Method vault_intent_path

atomic-repository/src/repository/vault_intent.rs:332–335  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

330 /// read-only consumers do not need to assume `IntentSummary.vault_path` is
331 /// populated.
332 pub fn vault_intent_path(&self, intent_id: &str) -> Result<Option<String>, RepositoryError> {
333 let full_id = self.normalize_intent_id(intent_id)?;
334 self.find_intent_path(&full_id)
335 }
336
337 /// Delete an unstarted backlog intent.
338 ///

Callers 1

seed_from_intentMethod · 0.80

Calls 2

normalize_intent_idMethod · 0.80
find_intent_pathMethod · 0.80

Tested by

no test coverage detected