mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
14 lines
704 B
Bash
Executable file
14 lines
704 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Run this in an existing container to install the mattpocock skills
|
|
# without rebuilding the image. New containers get them automatically via Dockerfile.
|
|
set -euo pipefail
|
|
|
|
echo "Installing Claude Code skills (mattpocock/skills)..."
|
|
|
|
npx skills@latest add --global --yes mattpocock/skills/grill-me
|
|
npx skills@latest add --global --yes mattpocock/skills/to-prd
|
|
npx skills@latest add --global --yes mattpocock/skills/ubiquitous-language
|
|
npx skills@latest add --global --yes mattpocock/skills/tdd
|
|
npx skills@latest add --global --yes mattpocock/skills/improve-codebase-architecture
|
|
|
|
echo "Done. Available: /grill-me /to-prd /ubiquitous-language /tdd /improve-codebase-architecture"
|