diff options
| author | Tommaso Sciortino <[email protected]> | 2025-07-18 15:21:46 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-18 22:21:46 +0000 |
| commit | 04bbc60b97809b4200c5dd09ba849e4d097d1d1f (patch) | |
| tree | 3b2646421eb4bb1f24080f21c6d5a6e37d678524 /packages/examples/background_agent/README.md | |
| parent | 73745ecd0323882fc951e387250fe2efef374e81 (diff) | |
Demo background agent (#4409)
Co-authored-by: Bryan Morgan <[email protected]>
Diffstat (limited to 'packages/examples/background_agent/README.md')
| -rw-r--r-- | packages/examples/background_agent/README.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/examples/background_agent/README.md b/packages/examples/background_agent/README.md new file mode 100644 index 00000000..0e5fd6dc --- /dev/null +++ b/packages/examples/background_agent/README.md @@ -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" + ] + } + }, +``` |
