Files
coyote/assets/agents/sisyphus/README.md
T
Dark-Alex-17 364cf29296
CI / All (ubuntu-latest) (push) Failing after 23s
CI / All (macos-latest) (push) Has been cancelled
CI / All (windows-latest) (push) Has been cancelled
feat: rename Loki to Coyote
2026-05-27 12:47:32 -06:00

1.6 KiB

Sisyphus

The main coordinator agent for the Coyote coding ecosystem, providing a powerful CLI interface for code generation and project management similar to OpenCode, ClaudeCode, Codex, or Gemini CLI.

Inspired by the Sisyphus and Oracle agents of OpenCode.

Sisyphus acts as the primary entry point, capable of handling complex tasks by coordinating specialized sub-agents:

  • Coder: For implementation and file modifications.
  • Explore: For codebase understanding and research.
  • Oracle: For architecture and complex reasoning.

Features

  • 🤖 Coordinator: Manages multi-step workflows and delegates to specialized agents.
  • 💻 CLI Coding: Provides a natural language interface for writing and editing code.
  • 🔄 Task Management: Tracks progress and context across complex operations.
  • 🛠️ Tool Integration: Seamlessly uses system tools for building, testing, and file manipulation.

Pro-Tip: Use an IDE MCP Server for Improved Performance

Many modern IDEs (JetBrains, VS Code, Cursor, Zed, etc.) expose MCP servers that let LLMs use IDE tools directly. Using one dramatically improves the performance of coding agents. If you have one, add it to your coyote config (see the MCP Server docs) and reference it in this agent's mcp_servers: list:

# ...

mcp_servers:
  - your-ide-mcp-server

global_tools:
  - fs_read.sh
  - fs_grep.sh
  - fs_glob.sh
  - fs_ls.sh
  - web_search_coyote.sh
  - execute_command.sh

# ...