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

Function registry

atomic-agent/src/integrations/registry.rs:42–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

40static REGISTRY: OnceLock<RegistryFile> = OnceLock::new();
41
42fn registry() -> &'static RegistryFile {
43 REGISTRY.get_or_init(|| {
44 toml::from_str(REGISTRY_TOML).expect("embedded integrations registry.toml must parse")
45 })
46}
47
48/// Resolve an adapter name (e.g. `"opencode"`) to its integration package
49/// location, if this agent is externally packaged.

Callers 2

resolveFunction · 0.85
agentsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected