fix: bad substitution in install.sh USER.md heredoc, update install URLs for private repos
This commit is contained in:
@@ -21,7 +21,11 @@
|
|||||||
### One-line install
|
### One-line install
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# If repo is public:
|
||||||
curl -fsSL http://10.0.0.59:3051/tanmay/Aetheel/raw/branch/main/install.sh | bash
|
curl -fsSL http://10.0.0.59:3051/tanmay/Aetheel/raw/branch/main/install.sh | bash
|
||||||
|
|
||||||
|
# If repo is private (clone first):
|
||||||
|
git clone http://10.0.0.59:3051/tanmay/Aetheel.git && cd Aetheel && bash install.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
The interactive installer handles everything:
|
The interactive installer handles everything:
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ logo
|
|||||||
Not complete
|
Not complete
|
||||||
agent to agent and agent orchestration
|
agent to agent and agent orchestration
|
||||||
better UI
|
better UI
|
||||||
|
|
||||||
human in the loop
|
human in the loop
|
||||||
security
|
security
|
||||||
browse plugins and skills from claude marketplace or opencode plugins
|
browse plugins and skills from claude marketplace or opencode plugins
|
||||||
@@ -9,8 +9,11 @@ Step-by-step guide to deploy Aetheel on a Linux or macOS machine.
|
|||||||
The interactive installer handles everything automatically:
|
The interactive installer handles everything automatically:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# One-line install
|
# If repo is public:
|
||||||
curl -fsSL http://10.0.0.59:3051/tanmay/Aetheel/raw/branch/main/install.sh | bash
|
curl -fsSL http://10.0.0.59:3051/tanmay/Aetheel/raw/branch/main/install.sh | bash
|
||||||
|
|
||||||
|
# If repo is private (clone first):
|
||||||
|
git clone http://10.0.0.59:3051/tanmay/Aetheel.git && cd Aetheel && bash install.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
Or if you already have the repo cloned:
|
Or if you already have the repo cloned:
|
||||||
|
|||||||
13
install.sh
13
install.sh
@@ -939,14 +939,19 @@ SOULEOF
|
|||||||
ask "What are you currently working on? (or Enter to skip):"
|
ask "What are you currently working on? (or Enter to skip):"
|
||||||
read -r user_focus
|
read -r user_focus
|
||||||
|
|
||||||
|
# Default for empty focus
|
||||||
|
if [ -z "${user_focus:-}" ]; then
|
||||||
|
user_focus="<!-- What you're working on -->"
|
||||||
|
fi
|
||||||
|
|
||||||
cat > "$WORKSPACE_DIR/USER.md" <<USEREOF
|
cat > "$WORKSPACE_DIR/USER.md" <<USEREOF
|
||||||
# USER.md — Who I Am
|
# USER.md — Who I Am
|
||||||
|
|
||||||
## About Me
|
## About Me
|
||||||
|
|
||||||
- **Name:** ${user_name_input:-}
|
- **Name:** ${user_name_input}
|
||||||
- **Role:** ${user_role:-}
|
- **Role:** ${user_role}
|
||||||
- **Timezone:** ${user_tz:-}
|
- **Timezone:** ${user_tz}
|
||||||
|
|
||||||
## Preferences
|
## Preferences
|
||||||
|
|
||||||
@@ -955,7 +960,7 @@ SOULEOF
|
|||||||
|
|
||||||
## Current Focus
|
## Current Focus
|
||||||
|
|
||||||
${user_focus:-<!-- What you're working on -->}
|
${user_focus}
|
||||||
|
|
||||||
## Tools & Services
|
## Tools & Services
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user