feat: allow for multiple values in cli options for adding extensions (#1070)

This commit is contained in:
Zaki Ali
2025-02-06 09:54:02 -08:00
committed by GitHub
parent 7d9a0a8fea
commit 8eddc40b94
3 changed files with 35 additions and 23 deletions

View File

@@ -251,7 +251,7 @@ You can remove installed extensions.
You can start a tailored goose session with specific extensions directly from the CLI. To do this, run the following command:
```bash
goose session --with-extension "{extension command}"
goose session --with-extension "{extension command}" --with-extension "{antoher extension command}"
```
:::info
@@ -261,6 +261,14 @@ goose session --with-extension "VAR=value command arg1 arg2"
```
:::
:::tip
You can also start a session with built-in extensions by using the `--with-builtin` flag.
```bash
goose session --with-builtin "developer,memory"
goose session --with-builtin developer --with-builtin memory
```
:::
## Developing Extensions
Goose extensions are implemented with MCP, a standard protocol that allows AI models and agents to securely connect with local or remote resources. Learn how to build your own [extension as an MCP server](https://modelcontextprotocol.io/quickstart/server).