Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions JOKES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Goose Jokes 🦢

## Why did the Goose become a developer?

Because it wanted to help debug all those "fowl" errors in the code!

---

*Feel free to add more goose-related programming humor below!*
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ Designed for maximum flexibility, goose works with any LLM and supports multi-mo
- [Documentation](https://block.github.io/goose/docs/category/getting-started)


# A Little Goose Humor 🦢

> Why did the developer choose goose as their AI agent?
>
> Because it always helps them "migrate" their code to production! 🚀

# Goose Around with Us
- [Discord](https://discord.gg/block-opensource)
- [YouTube](https://www.youtube.com/@blockopensource)
Expand Down
5 changes: 3 additions & 2 deletions crates/goose-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ mcp-client = { path = "../mcp-client" }
mcp-server = { path = "../mcp-server" }
mcp-core = { path = "../mcp-core" }
rmcp = { workspace = true }
agent-client-protocol = "0.1.1"
clap = { version = "4.4", features = ["derive"] }
cliclack = "0.3.5"
console = "0.15.8"
uuid = { version = "1.11", features = ["v4"] }
dotenvy = "0.15.7"
bat = "0.24.0"
anyhow = "1.0"
Expand All @@ -47,7 +49,6 @@ shlex = "1.3.0"
async-trait = "0.1.86"
base64 = "0.22.1"
regex = "1.11.1"
uuid = { version = "1.11", features = ["v4"] }
nix = { version = "0.30.1", features = ["process", "signal"] }
tar = "0.4"
# Web server dependencies
Expand All @@ -56,7 +57,7 @@ tower-http = { version = "0.5", features = ["cors", "fs"] }
http = "1.0"
webbrowser = "1.0"
indicatif = "0.17.11"
tokio-util = "0.7.15"
tokio-util = { version = "0.7.15", features = ["compat"] }
is-terminal = "0.4.16"
anstream = "0.6.18"

Expand Down
10 changes: 10 additions & 0 deletions crates/goose-cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use clap::{Args, Parser, Subcommand};

use goose::config::{Config, ExtensionConfig};

use crate::commands::acp::run_acp_agent;
use crate::commands::bench::agent_generator;
use crate::commands::configure::handle_configure;
use crate::commands::info::handle_info;
Expand Down Expand Up @@ -291,6 +292,10 @@ enum Command {
#[command(about = "Run one of the mcp servers bundled with goose")]
Mcp { name: String },

/// Run Goose as an ACP (Agent Client Protocol) agent
#[command(about = "Run Goose as an ACP agent server on stdio")]
Acp {},

/// Start or resume interactive chat sessions
#[command(
about = "Start or resume interactive chat sessions",
Expand Down Expand Up @@ -709,6 +714,7 @@ pub async fn cli() -> Result<()> {
Some(Command::Configure {}) => "configure",
Some(Command::Info { .. }) => "info",
Some(Command::Mcp { .. }) => "mcp",
Some(Command::Acp {}) => "acp",
Some(Command::Session { .. }) => "session",
Some(Command::Project {}) => "project",
Some(Command::Projects) => "projects",
Expand Down Expand Up @@ -739,6 +745,10 @@ pub async fn cli() -> Result<()> {
Some(Command::Mcp { name }) => {
let _ = run_server(&name).await;
}
Some(Command::Acp {}) => {
let _ = run_acp_agent().await;
return Ok(());
}
Some(Command::Session {
command,
identifier,
Expand Down
Loading
Loading