File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # Kilo Code Worktree Setup Script
3+ # This script runs before the agent starts in a worktree (new sessions only).
4+ #
5+ # Available environment variables:
6+ # WORKTREE_PATH - Absolute path to the worktree directory
7+ # REPO_PATH - Absolute path to the main repository
8+ #
9+ # Example tasks:
10+ # - Copy .env files from main repo
11+ # - Install dependencies
12+ # - Run database migrations
13+ # - Set up local configuration
14+
15+ set -e # Exit on error
16+
17+ echo " Setting up worktree: $WORKTREE_PATH "
18+
19+ # Uncomment and modify as needed:
20+
21+ # Copy environment files
22+ # if [ -f "$REPO_PATH/.env" ]; then
23+ # cp "$REPO_PATH/.env" "$WORKTREE_PATH/.env"
24+ # echo "Copied .env"
25+ # fi
26+
27+ # Install dependencies (Node.js)
28+ # if [ -f "$WORKTREE_PATH/package.json" ]; then
29+ # cd "$WORKTREE_PATH"
30+ # npm install
31+ # fi
32+
33+ # Install dependencies (Python)
34+ # if [ -f "$WORKTREE_PATH/requirements.txt" ]; then
35+ # cd "$WORKTREE_PATH"
36+ # pip install -r requirements.txt
37+ # fi
38+
39+ echo " Setup complete!"
Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ <h4>What you can do</h4>
244244 </ article >
245245
246246 <!-- Agent Font Compare -->
247- < a href ="https://multiturn-demo .rmax.app " class ="app-card " style ="text-decoration:none; color:inherit; ">
247+ < a href ="https://agent-font-compare .rmax.app " class ="app-card " style ="text-decoration:none; color:inherit; ">
248248 < div class ="app-image-container ">
249249 < img src ="agent-font-compare-opt.png " alt ="Agent Font Compare Screenshot " class ="app-image " loading ="lazy ">
250250 </ div >
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ <h3>Maxi-Tutor <span class="pill" style="font-size:0.6em;vertical-align:middle;p
205205 </ div >
206206 </ a >
207207 <!-- Agent Font Compare -->
208- < a href ="https://multiturn-demo .rmax.app " target ="_blank " class ="app-card " style ="text-decoration:none;color:inherit " data-simple-event ="click_app " data-simple-app-id ="fontcompare ">
208+ < a href ="https://agent-font-compare .rmax.app " target ="_blank " class ="app-card " style ="text-decoration:none;color:inherit " data-simple-event ="click_app " data-simple-app-id ="fontcompare ">
209209 < img src ="/apps/agent-font-compare-opt.png " alt ="Agent Font Compare " loading ="lazy ">
210210 < div class ="content ">
211211 < h3 > Agent Font Compare</ h3 >
You can’t perform that action at this time.
0 commit comments