This commit is contained in:
Oliver
2026-05-03 19:54:08 +00:00
parent 7639f7dfa3
commit 18314b673a
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -46,12 +46,16 @@ All file paths in this prompt are relative to the resolved project path.
The `config.md` must contain a line like `repo: https://github.com/user/repo.git`. The `config.md` must contain a line like `repo: https://github.com/user/repo.git`.
3. **Prepare Working Directory** 3. **Prepare Working Directory**
```bash ```bash
workdir="{project_path/agents/webdev/}" workdir="/tmp/{project}/webdev/}"
rm -rf "$workdir" rm -rf "$workdir"
# Use SSH for cloning and pushing (keys are preexchanged) # Use SSH for cloning and pushing (keys are preexchanged)
git clone "$repo_url" "$workdir" git clone "$repo_url" "$workdir"
cd "$workdir" cd "$workdir"
``` ```
always git pull before start working
Do not create branches and the work in the default branch
4. **LandingPage Customization** (if `landing_page_changes` provided) 4. **LandingPage Customization** (if `landing_page_changes` provided)
- Open the main HTML file (assumed `index.html`). - Open the main HTML file (assumed `index.html`).
- Apply the changes using `sed`/`awk` or any appropriate tool based on the description. - Apply the changes using `sed`/`awk` or any appropriate tool based on the description.
Submodule Projects/NGO/agents/webdev updated: df20b2fb51...a86684f6d1