$npx -y skills add Raishin/vanguard-frontier-agentic --skill vanguard-frontier-agentic-installInstall all Vanguard Frontier Agentic Codex agents and companion skills into the current user's ~/.codex home after adding or installing the plugin marketplace.
| 1 | # Vanguard Frontier Agentic Codex Install |
| 2 | |
| 3 | Use this skill when the user wants the Vanguard Frontier Agentic marketplace content installed into Codex as real user-level agents and skills. |
| 4 | |
| 5 | ## Reliable two-stage install |
| 6 | |
| 7 | Run from any directory: |
| 8 | |
| 9 | ```bash |
| 10 | codex plugin marketplace add Raishin/vanguard-frontier-agentic |
| 11 | npx --yes -p @raishin/vanguard-frontier-agentic \ |
| 12 | vfa-export-agents --platform codex --all --repo "$HOME" --force |
| 13 | ``` |
| 14 | |
| 15 | If working from a local checkout of the repository, prefer the local exporter so unpublished branch changes are used: |
| 16 | |
| 17 | ```bash |
| 18 | node scripts/export-marketplace-agents.mjs --platform codex --all --repo "$HOME" --force |
| 19 | ``` |
| 20 | |
| 21 | ## Verify |
| 22 | |
| 23 | ```bash |
| 24 | find "$HOME/.codex/agents" -maxdepth 1 -name '*.toml' | wc -l |
| 25 | find "$HOME/.codex/skills" -mindepth 1 -maxdepth 1 -type d | wc -l |
| 26 | ``` |
| 27 | |
| 28 | Expected for this release: all Codex-capable VFA agents are installed under `$HOME/.codex/agents`, and companion skills are installed under `$HOME/.codex/skills`. |
| 29 | |
| 30 | ## Important limitation |
| 31 | |
| 32 | `codex plugin marketplace add` installs/tracks the marketplace source. It does not, by itself, prove that Codex installed the plugin cache or exported repo-level agent TOML files. The exporter is the deterministic second stage for agents and companion skills. |