AgentFigureGallery should be easy to try without hiding what the installer does.
curl -fsSL https://raw.githubusercontent.com/Dsadd4/AgentFigureGallery/main/scripts/install.sh | bashThe script is intended for Codex users who want the gallery and skill wrapper available immediately.
It does this:
- clones or updates this repository at
$HOME/AgentFigureGallery; - creates
$HOME/AgentFigureGallery/.venv; - installs the Python package in editable mode;
- installs the Codex skill wrapper into
$CODEX_HOME/skillsor$HOME/.codex/skills; - runs
agentfiguregallery doctorso failures are visible.
It does not do this:
- modify shell startup files;
- upload local data;
- install the full public reference pack unless you run
agentfiguregallery setup; - replace existing global agent configuration outside the skill wrapper path.
After installing, run:
~/AgentFigureGallery/.venv/bin/agentfiguregallery first-run --openThis creates a starter embedding-plot reference session, opens the local gallery, and prints the bundle command to run after you select examples.
If you activated the virtual environment first, agentfiguregallery first-run --open is equivalent.
git clone https://github.com/Dsadd4/AgentFigureGallery.git
cd AgentFigureGallery
python -m venv .venv
source .venv/bin/activate
pip install -e .
agentfiguregallery doctor
agentfiguregallery install-skill --target codex| Item | Default path |
|---|---|
| Repository | $HOME/AgentFigureGallery |
| Python environment | $HOME/AgentFigureGallery/.venv |
| Codex skill | $CODEX_HOME/skills/agent-figure-gallery or $HOME/.codex/skills/agent-figure-gallery |
| Local sessions | $HOME/AgentFigureGallery/outputs/reference_sessions |
Remove the repository and the installed skill wrapper:
rm -rf "$HOME/AgentFigureGallery"
rm -rf "${CODEX_HOME:-$HOME/.codex}/skills/agent-figure-gallery"If you installed manually somewhere else, remove that checkout and the corresponding skill directory.
The default checkout includes a small reference pack for smoke tests. The full public pack is larger and is installed only when you run:
agentfiguregallery setup --pack full-public --manifest-url https://huggingface.co/datasets/dsadd4/AgentFigureGallery/resolve/main/resource_manifest.json