-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·65 lines (56 loc) · 2.43 KB
/
install.sh
File metadata and controls
executable file
·65 lines (56 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
set -euo pipefail
# pstack installer — installs skill files into Claude Code's skill directory
PSTACK_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILL_DIR="${HOME}/.claude/skills/pstack"
echo "╔══════════════════════════════════════════════════╗"
echo "║ pstack — Palantir Deployment Strategist AI Team ║"
echo "╚══════════════════════════════════════════════════╝"
echo ""
# Check for Claude Code skill directory
if [ ! -d "${HOME}/.claude" ]; then
echo "Creating ~/.claude directory..."
mkdir -p "${HOME}/.claude"
fi
if [ ! -d "${HOME}/.claude/skills" ]; then
echo "Creating ~/.claude/skills directory..."
mkdir -p "${HOME}/.claude/skills"
fi
# Create symlink or copy
if [ -L "$SKILL_DIR" ]; then
echo "Removing existing pstack symlink..."
rm "$SKILL_DIR"
fi
if [ -d "$SKILL_DIR" ]; then
echo "Removing existing pstack installation..."
rm -rf "$SKILL_DIR"
fi
echo "Installing pstack to ${SKILL_DIR}..."
ln -s "$PSTACK_DIR" "$SKILL_DIR"
echo ""
echo "✅ pstack installed successfully!"
echo ""
echo "Available skills:"
echo " /bootcamp — Start a new customer engagement"
echo " /ontology-vision — Strategic ontology design"
echo " /ontology-architect — Lock ontology architecture"
echo " /pipeline-plan — Design data pipeline architecture"
echo " /data-connector — Configure data connections"
echo " /pipeline-builder — Build transformation pipelines"
echo " /workshop-builder — Build Workshop applications"
echo " /aip-architect — Design AIP agents"
echo " /osdk-developer — Build OSDK applications"
echo " /slate-builder — Build Slate applications"
echo " /foundry-reviewer — Structural audit"
echo " /foundry-security — Security audit"
echo " /foundry-qa — End-to-end testing"
echo " /apollo-deployer — Apollo deployment"
echo " /training-writer — Training materials"
echo " /deployment-retro — Retrospective"
echo " /memory-curator — Curate structured repo memory"
echo " /skill-improver — Draft bounded improvement proposals"
echo " /careful — Safety mode"
echo " /freeze — Scope restriction"
echo " /guard — Maximum safety (careful + freeze)"
echo ""
echo "Start with: /bootcamp"