Merge pull request #434 from Hestia-Homes/add-herdr-to-devcontainer

Add herdr to devcontainer, plus latest agentic-toolkit version
This commit is contained in:
Daniel Roth 2026-07-21 11:31:57 +01:00 committed by GitHub
commit a0680b0eea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 1 deletions

View file

@ -45,6 +45,13 @@ RUN git clone https://github.com/LazyVim/starter /home/${USER}/.config/nvim \
RUN curl -fsSL https://claude.ai/install.sh | bash
ENV PATH="/home/${USER}/.local/bin:${PATH}"
# Install herdr (terminal workspace manager for AI coding agents). Same pattern
# as Claude Code above: the installer drops a self-contained static binary into
# ~/.local/bin, which is now on PATH. Lets you run herdr from inside the
# container. `herdr update` self-updates from herdr.dev thereafter.
RUN curl -fsSL https://herdr.dev/install.sh | sh
USER root
WORKDIR /workspaces/assessment-model

View file

@ -14,7 +14,7 @@
// the mounted host ~/.config/gh.
// impeccable (design-guidance skill, github.com/pbakaus/impeccable) is on
// trial for the home-page redesign; drop its `skills add` step to remove it.
"postCreateCommand": "gh repo clone Hestia-Homes/agentic-toolkit /tmp/agentic-toolkit -- --branch 0.0.8 --depth 1 && bash /tmp/agentic-toolkit/setup.sh && npx --yes skills@latest add pbakaus/impeccable --agent claude-code --copy --global --yes && npm install",
"postCreateCommand": "gh repo clone Hestia-Homes/agentic-toolkit /tmp/agentic-toolkit -- --branch 0.0.10 --depth 1 && bash /tmp/agentic-toolkit/setup.sh && npx --yes skills@latest add pbakaus/impeccable --agent claude-code --copy --global --yes && npm install",
"forwardPorts": ["frontend:3000", "pgadmin:80"],