mirror of
https://github.com/harivansh-afk/claude-code-vertical.git
synced 2026-04-15 08:03:42 +00:00
18 lines
404 B
Bash
Executable file
18 lines
404 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
REPO="https://github.com/harivansh-afk/claude-code-vertical.git"
|
|
TMP="/tmp/claude-code-vertical-$$"
|
|
|
|
git clone --depth 1 "$REPO" "$TMP" 2>/dev/null
|
|
|
|
mkdir -p .claude/vertical/plans
|
|
cp -r "$TMP/commands" .claude/
|
|
cp -r "$TMP/skills" .claude/
|
|
cp -r "$TMP/skill-index" .claude/
|
|
cp -r "$TMP/lib" .claude/
|
|
|
|
rm -rf "$TMP"
|
|
|
|
echo "Installed to .claude/"
|
|
echo "Run: claude then /plan"
|