-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·56 lines (48 loc) · 1.69 KB
/
Copy pathsetup.sh
File metadata and controls
executable file
·56 lines (48 loc) · 1.69 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
#!/bin/bash
# Wee-Orchestrator Starter Kit - Bootstrap Setup Script
# Run this after cloning to set up your bot home
set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$SCRIPT_DIR"
echo "🤖 Wee-Orchestrator Starter Kit Setup"
echo "======================================"
# 1. Create symlinks for agent config files
echo ""
echo "📎 Creating agent config symlinks..."
[ -L "CLAUDE.md" ] && rm CLAUDE.md
[ -L "GEMINI.md" ] && rm GEMINI.md
ln -s AGENTS.md CLAUDE.md && echo " ✓ CLAUDE.md → AGENTS.md"
ln -s AGENTS.md GEMINI.md && echo " ✓ GEMINI.md → AGENTS.md"
# 2. Create directory structure
echo ""
echo "📁 Creating directories..."
mkdir -p skills my-skills .claude/skills projects
mkdir -p memory/{projects,areas,resources,archive}
mkdir -p bin
echo " ✓ skills/"
echo " ✓ my-skills/"
echo " ✓ .claude/skills/"
echo " ✓ projects/"
echo " ✓ memory/ (PARA structure)"
# 3. Create .gitkeep files
touch skills/.gitkeep
touch my-skills/.gitkeep
touch .claude/skills/.gitkeep
echo " ✓ .gitkeep files created"
# 4. Ensure .gitignore is correct
if [ ! -f ".gitignore" ]; then
echo " Creating .gitignore..."
fi
# 5. Done
echo ""
echo "✅ Setup complete!"
echo ""
echo "Next steps:"
echo " 1. Edit AGENTS.md with your profile (location, timezone, projects)"
echo " 2. Fork and clone Wee-Orchestrator:"
echo " git clone https://github.com/leprachuan/Wee-Orchestrator.git /opt/n8n-copilot-shim"
echo " 3. Configure your bot credentials in /opt/n8n-copilot-shim/*_config.json"
echo " 4. Add your projects to projects/ and update AGENTS.md"
echo " 5. Install skills: ./bin/install-skill.sh <path-to-skill>"
echo ""
echo "📖 See README.md for full documentation"