From af697d129b5cd6953e0bbd687d19c03cba551b71 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Thu, 27 Aug 2026 15:34:38 -0600 Subject: [PATCH] docs: updated the coyote description to be more accurate to its true use and purpose --- Cargo.toml | 21 ++++++++++----------- Dockerfile | 2 +- README.md | 6 +++--- assets/sbx-kit/spec.yaml | 4 ++-- deployment/homebrew/coyote.rb.template | 2 +- 5 files changed, 17 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fbfa196..799ea13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "coyote-ai" version = "0.8.3" edition = "2024" authors = ["Alex Clarke "] -description = "An all-in-one, batteries included LLM CLI Tool" +description = "An all-in-one, batteries-included LLM runtime" keywords = ["chatgpt", "llm", "cli", "ai", "repl"] homepage = "https://github.com/Dark-Alex-17/coyote" repository = "https://github.com/Dark-Alex-17/coyote" @@ -51,7 +51,13 @@ textwrap = "0.16.0" ansi_colours = "1.2.2" eventsource-stream = "0.2.3" log = "0.4.28" -log4rs = { version = "1.4.0", features = ["file_appender", "rolling_file_appender", "compound_policy", "fixed_window_roller", "size_trigger"] } +log4rs = { version = "1.4.0", features = [ + "file_appender", + "rolling_file_appender", + "compound_policy", + "fixed_window_roller", + "size_trigger", +] } shell-words = "1.1.0" sha2 = "0.10.8" unicode-width = "0.2.0" @@ -113,14 +119,7 @@ qrcode = "0.14" [dependencies.reqwest] version = "0.13.3" -features = [ - "json", - "multipart", - "stream", - "form", - "socks", - "rustls", -] +features = ["json", "multipart", "stream", "form", "socks", "rustls"] default-features = false [dependencies.syntect] @@ -154,4 +153,4 @@ path = "src/main.rs" [profile.release] lto = true strip = true -opt-level = "z" \ No newline at end of file +opt-level = "z" diff --git a/Dockerfile b/Dockerfile index 331fcfc..38aef7b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,7 +99,7 @@ LABEL com.docker.sandboxes="templates" \ com.docker.sandboxes.flavor="shell-docker" \ com.docker.sandboxes.start-docker="true" \ org.opencontainers.image.title="coyote" \ - org.opencontainers.image.description="An all-in-one, batteries-included LLM CLI tool: Shell Assistant, CLI & REPL mode, RAG, AI tools & agents, MCP servers, skills, and macros." \ + org.opencontainers.image.description="An all-in-one, batteries-included LLM runtime: Shell Assistant, CLI & REPL mode, RAG, AI tools & agents, MCP servers, skills, and macros." \ org.opencontainers.image.source="https://github.com/Dark-Alex-17/coyote" \ org.opencontainers.image.version="${COYOTE_VERSION}" diff --git a/README.md b/README.md index 2b0b79a..607f7aa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Coyote: All-in-one, batteries-included LLM CLI Tool +# Coyote: All-in-one, batteries-included LLM runtime ![Test](https://github.com/Dark-Alex-17/coyote/actions/workflows/ci.yaml/badge.svg) [![crates.io link](https://img.shields.io/crates/v/coyote-ai.svg)](https://crates.io/crates/coyote-ai) @@ -8,8 +8,8 @@ ![Docker pulls](https://img.shields.io/docker/pulls/darkalex17/coyote?label=Docker%20downloads) [![License: AGPL v3](https://img.shields.io/badge/License-AGPL_v3-blue.svg)](./LICENSE) -Coyote is an all-in-one, batteries-included, LLM CLI tool featuring Shell Assistant, CLI & REPL Mode, RAG, AI Tools & -Agents, and More. +Coyote is an all-in-one, batteries-included, LLM runtime featuring Shell Assistant, CLI & REPL Mode, RAG, AI Tools & +Agents, and more. It is designed to include a number of useful agents, roles, macros, and more so users can get up and running with Coyote in as little time as possible. You can also install entire bundles of agents, roles, macros, tools, and MCP servers from diff --git a/assets/sbx-kit/spec.yaml b/assets/sbx-kit/spec.yaml index 9a96da7..39fa28b 100644 --- a/assets/sbx-kit/spec.yaml +++ b/assets/sbx-kit/spec.yaml @@ -9,7 +9,7 @@ kind: sandbox name: coyote displayName: Coyote description: > - An all-in-one, batteries-included LLM CLI tool featuring Shell Assistant, + An all-in-one, batteries-included LLM runtime featuring Shell Assistant, CLI & REPL mode, RAG, AI tools & agents, MCP servers, skills, and macros. sandbox: @@ -370,4 +370,4 @@ agentInstructions: Useful first-run commands: - `coyote --info` # show config paths and resolved settings - `coyote --list-secrets` # initialise the local vault - - `coyote --authenticate ` # OAuth flow (Claude Pro/Max, Gemini) \ No newline at end of file + - `coyote --authenticate ` # OAuth flow (Claude Pro/Max, Gemini) diff --git a/deployment/homebrew/coyote.rb.template b/deployment/homebrew/coyote.rb.template index 84a0e65..fa07c09 100644 --- a/deployment/homebrew/coyote.rb.template +++ b/deployment/homebrew/coyote.rb.template @@ -1,7 +1,7 @@ # Documentation: https://docs.brew.sh/Formula-Cookbook # https://rubydoc.brew.sh/Formula class Coyote < Formula - desc "All-in-one, batteries included LLM CLI tool" + desc "All-in-one, batteries-included LLM runtime" homepage "https://github.com/Dark-Alex-17/coyote" if OS.mac? and Hardware::CPU.arm? url "https://github.com/Dark-Alex-17/coyote/releases/download/v$version/coyote-aarch64-apple-darwin.tar.gz"