Demo background agent (#4409)

Co-authored-by: Bryan Morgan <bryanmorgan@google.com>
This commit is contained in:
Tommaso Sciortino
2025-07-18 15:21:46 -07:00
committed by GitHub
parent 73745ecd03
commit 04bbc60b97
4 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# Demo Background Agent
A pretend background agent that does not actually process tasks in the background. Configure in your settings.json with:
```javascript
"backgroundAgents": {
"demo-background-agent": {
"command": "npm",
"args": [
"run",
"start:demo-background-agent",
"--workspace=@google/gemini-cli-examples"
]
}
},
```