-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·39 lines (31 loc) · 748 Bytes
/
setup.sh
File metadata and controls
executable file
·39 lines (31 loc) · 748 Bytes
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
#!/bin/bash
echo "Initializing MyTeamOfAgents structure..."
# Brain
mkdir -p brain/avatars
mkdir -p brain/memory/preferences
mkdir -p brain/memory/patterns
mkdir -p brain/memory/reflections
touch brain/SOUL.md
# Workspace (OpenClaw configuration)
mkdir -p workspace
touch workspace/IDENTITY.md
touch workspace/AGENTS.md
touch workspace/TOOLS.md
touch workspace/USER.md
# Skills
mkdir -p skills/ranger_pi
mkdir -p skills/forge_code
mkdir -p skills/scout_media
# Services
mkdir -p services/kanban_dashboard
# Infra
mkdir -p infra
# Docs
mkdir -p docs/architecture
mkdir -p docs/setup-guides
mkdir -p docs/api-specs
# Root files
touch .env.example
touch CHANGELOG.md
touch README.md
echo "Structure created. Next: configure OpenClaw & agents."