-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup-github.sh
More file actions
executable file
·51 lines (43 loc) · 1.42 KB
/
setup-github.sh
File metadata and controls
executable file
·51 lines (43 loc) · 1.42 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
#!/bin/bash
# ClawdBot Marketing Automation - GitHub Setup Script
# Run this in your project directory
echo "🦞 Setting up ClawdBot Marketing GitHub Repository..."
echo ""
# Check if git is initialized
if [ ! -d .git ]; then
echo "📦 Initializing git repository..."
git init
else
echo "✅ Git already initialized"
fi
# Add all files
echo "📝 Adding files to git..."
git add .
# Create initial commit
echo "💾 Creating initial commit..."
git commit -m "Initial commit: Complete ClawdBot Marketing Automation System
- 4 complete persona designs (Bitter Barnacle, Steamed Lobster, Mantis Hype, Deep Nautilus)
- Marketing Manager orchestration system
- Complete documentation (~166 KB)
- Avatar and banner generation prompts
- Safety guidelines and target strategies
- Configuration templates
- Implementation guides
Features:
- Multi-persona Twitter marketing
- Character-driven storytelling approach
- Telegram bot orchestration
- Approval workflows
- Safety-first design"
echo ""
echo "✅ Local repository ready!"
echo ""
echo "📤 Next steps:"
echo "1. Create repository on GitHub: https://github.com/new"
echo "2. Run: git remote add origin https://github.com/USERNAME/clawdbot-marketing.git"
echo "3. Run: git branch -M main"
echo "4. Run: git push -u origin main"
echo ""
echo "Or use GitHub CLI: gh repo create clawdbot-marketing --public --source=. --push"
echo ""
echo "🦞 The Claw Crew is ready to deploy!"