MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / codex_embedded_plugin_files

Function codex_embedded_plugin_files

src/agents/codex.rs:270–272  ·  view source on GitHub ↗

The Codex plugin's composed deploy set, sourced from the shared `plugin/` tree via [`crate::agents::plugin_bundle::codex_files`]. Each entry is `(deploy_relative_path, file_contents)`; the manifest, `.mcp.json`, and `hooks/hooks.json` entries are rendered at install time to inject the package version and the absolute tracedecay binary path.

()

Source from the content-addressed store, hash-verified

268/// `hooks/hooks.json` entries are rendered at install time to inject the
269/// package version and the absolute tracedecay binary path.
270fn codex_embedded_plugin_files() -> Vec<(&'static str, &'static str)> {
271 crate::agents::plugin_bundle::codex_files()
272}
273
274fn codex_plugin_install_dir(home: &Path) -> PathBuf {
275 home.join("plugins/tracedecay")

Calls 1

codex_filesFunction · 0.85