StreetRace is an agentic AI coding partner designed to help engineers leverage AI capabilities directly from the command line to create software.
Project description
StreetRace🚗💨
Today, StreetRace🚗💨 is a CLI-based assistant that can run agentic workflows, maintain your conversation histories, allowing full customization, and using any model supported by BerriAI/litellm, including self-hosted ollama models.
The goal is to enable:
- Creating and using agents in your day-to-day SWE/SRE workflows.
- Publishing and running your agents and other code to cloud envs.
- Debugging, code generation, and diagnostics from CLI.
Here is a workflow that describes what StreetRace🚗💨 aims to be in v.1:
> streetrace
You: Create an agent that takes issues from our tracker API (documented in
..... @apis/my_issue_tracker.yaml), takes the latest issue with the highest priority,
..... and implements it. When complete and the implementation fully satisfies the
..... described requirements, publishes a PR on GitHub.
StreetRace: Working...
StreetRace: Your agent is created as "IssueFixer".
You: Deploy @IssueFixer and run it in a loop.
StreetRace: Working...
StreetRace: Deploying IssueFixer to yourk8shost.foo.bar...
StreetRace: IssueFixer is started and available at A2A endpoint issuefixer-001.foo.bar.
IssueFixer: There are 39 unresolved issues. Taking issue ISS007.
IssueFixer: Based on the issue description, I need to fix the app so it works.
IssueFixer: Looking for a solution...
IssueFixer: ...
IssueFixer: ISS007 is fixed, taking ISS042 now...
...
Installation and usage
Install from pip
$ pip install streetrace
Install from source
The code is managed by poetry. If it's not already installed, follow the poetry
install guide.
$ git clone git@github.com:krmrn42/street-race.git
$ cd street-race
$ poetry install
$ poetry run streetrace --model=$YOUR_FAVORITE_MODEL
Where $YOUR_FAVORITE_MODEL is the
LiteLLM provider route (provider/model).
Environment Setup
Follow relevant LiteLLM guides to set up environment for a specific model. For example,
for commercial providers, set your regular API key in the environment
(ANTHROPIC_API_KEY, GEMINI_API_KEY, OPENAI_API_KEY, etc), or OLLAMA_API_URL for
local Ollama models.
Usage
streetrace is a CLI, and it can be installed as your dev dependency. It runs in the
current directory, keeping all file reading and modifications in the current directory.
You can optionally supply a --path argument to provide a different working directory
path.
$ streetrace --model=$YOUR_FAVORITE_MODEL
You: Type your prompt
Try in your environment
Currently, StreetRace includes one coding agent with a model of your choise. This agent is a capable software engineering agent that can work with your technology stack.
You can add more context to your prompts in two ways:
- Using @-mentions, autocomplete will suggest local files that you can add to the prompt.
- Any other project context can be added in a
.streetracefolder:SYSTEM.mdis used as your system instruction.- Any other files under
.streetraceare added as initial conversation messages.
Command Line Arguments
Session Management
StreetRace🚗💨 supports persistence of conversations through sessions. You can specify:
--app-name- Application name for the session (defaults to the current working directory name)--user-id- User ID for the session (defaults to your GitHub username, Git username, or OS username)--session-id- Session ID to use or create (defaults to current timestamp)--list-sessions- List all available sessions for the current app and user
Examples:
# List all sessions for the current app and user
$ streetrace --list-sessions
# Create or continue a specific session
$ streetrace --session-id my-project-refactoring
# Work with a specific app name and user
$ streetrace --app-name my-project --user-id john.doe --session-id feature-x
If no session arguments are provided, StreetRace🚗💨 will:
- Use the current working directory name as the app name
- Use your detected user identity as the user ID
- Create a new session with a timestamp-based ID
This allows you to maintain separate conversation contexts for different projects or tasks.
If you want to work with the same agent/context across multiple runs, use the same session ID.
Working with Files in Another Directory
The --path argument allows you to specify a different working directory for all file
operations:
$ streetrace --path /path/to/your/project
This path will be used as the working directory (work_dir) for all tools that interact with the file system, including:
list_directoryread_filewrite_filefind_in_files- as a cwd in cli commands.
This feature makes it easier to work with files in another location without changing your current directory.
Interactive Mode
When run without --prompt, StreetRace🚗💨 enters interactive mode.
Autocompletion
- Type
@followed by characters to autocomplete file or directory paths relative to the working directory. - Type
/at the beginning of the line to autocomplete available internal commands.
Internal Commands
These commands can be typed directly into the prompt (with autocompletion support):
/help: Display a list of all available commands with their descriptions./exit: Exit the interactive session./quit: Quit the interactive session./history: Display the conversation history./compact: Summarize conversation history to reduce token count./reset: Reset the current session, clearing the conversation history.
For detailed information about the /compact command, see
docs/commands/compact.md.
Non-interactive Mode
You can use the --prompt argument to run StreetRace🚗💨 in non-interactive mode:
$ streetrace --prompt "List all Python files in the current directory"
This will execute the prompt once and exit, which is useful for scripting or one-off commands.
CLI Command Safety
StreetRace🚗💨 includes an experimental safety mechanism for CLI command execution. Each command requested by the AI is analyzed and categorized into one of three safety levels:
- Safe: Commands from a pre-configured safe list with only relative paths
- Ambiguous: Commands not in the safe list but without obvious risks
- Risky: Commands with absolute paths, directory traversal attempts, or potentially dangerous operations
Risky commands are blocked by default to prevent unintended filesystem operations or system changes. This adds a layer of protection when working with AI-suggested commands.
The safety checker uses bashlex to parse and analyze commands and arguments, checking
for:
- Command presence in a predefined safe list
- Use of absolute vs. relative paths
- Directory traversal attempts (using
..to move outside the working directory)
This helps ensure that StreetRace🚗💨 operates within the intended working directory and with known-safe commands.
Agent System
StreetRace🚗💨 includes a modular agent system that allows for specialized agents to be discovered and used.
Agent Discovery
The list_agents tool allows the assistant to discover available agents in the system.
Agents are searched for in the following locations:
./agents/(relative to the current working directory)../../agents/(relative to the src/streetrace/app.py)
Creating Custom Agents
StreetRace supports two ways to create custom agents:
Option 1: Using the StreetRaceAgent Interface (Recommended)
-
Create a directory for your agent in the
./agents/folder (e.g.,./agents/my_agent/) -
Create an
agent.pyfile with a class that inherits fromStreetRaceAgentand implements:get_agent_card()- Returns metadata about the agent (name, description, capabilities)get_required_tools()- Returns a list of tools the agent needscreate_agent()- Creates the actual agent instance with the provided model and tools
-
Add a
README.mdfile with documentation for your agent
Example agent class:
from streetrace.agents.street_race_agent import StreetRaceAgent
from streetrace.agents.street_race_agent_card import StreetRaceAgentCard
class MyAgent(StreetRaceAgent):
def get_agent_card(self) -> StreetRaceAgentCard:
return StreetRaceAgentCard(
name="My Agent",
description="A specialized agent that does something useful",
capabilities=["capability1", "capability2"],
)
async def get_required_tools(self) -> list[str]:
return [
"streetrace:fs_tool::read_file",
"streetrace:fs_tool::write_file",
]
async def create_agent(self, model_factory, tools) -> BaseAgent:
model = model_factory.get_default_model()
return Agent(
name="My Agent",
model=model,
description="My specialized agent",
instruction="You are a specialized agent that does X, Y, and Z...",
tools=tools,
)
Option 2: Legacy Approach (Basic Functions)
-
Create a directory for your agent in the
./agents/folder (e.g.,./agents/my_agent/) -
Create an
agent.pyfile with these required functions:get_agent_metadata()- Returns a dictionary withnameanddescriptionkeysrun_agent(input_text: str)- Implements the agent's functionality
-
Add a
README.mdfile with documentation for your agent
Running Agents
The run_agent tool allows the primary assistant to execute specialized agents:
run_agent(
agent_name="Hello World",
input_text="What files are in this directory?",
model_name="default" # Optional, defaults to the default model
)
This enables a hierarchical agent system where the primary StreetRace assistant can delegate tasks to specialized agents.
Tool Configuration
Tools available to agents are defined in the ./tools/tools.yaml configuration file. This file specifies:
- Tool name and description
- Source type (e.g., 'local' for Python modules or 'mcp' for external services)
- Module and function name for local tools
- Whether the tool requires agent capabilities
The configuration makes it easy to add, modify, or disable tools without changing code.
Tool Discovery
The list_tools tool provides information about available tools that can be provided to agents.
This helps the assistant understand what capabilities are available in the system.
The tool returns a list of available tools with:
- Tool name
- Description
- Whether the tool requires agent capabilities
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file streetrace-0.1.8.tar.gz.
File metadata
- Download URL: streetrace-0.1.8.tar.gz
- Upload date:
- Size: 70.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.2 Linux/6.1.132-1-MANJARO
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0048f7f9e4bcfc81c9f09172b4d1ab6452f49dcc0762ef42198271f3aeeb3768
|
|
| MD5 |
4317262c7112c37f028efdfac28f146d
|
|
| BLAKE2b-256 |
29359cffbdad0ed49d6d7ebb9d4b04772604d773fee1acadda0684214cf80fcc
|
File details
Details for the file streetrace-0.1.8-py3-none-any.whl.
File metadata
- Download URL: streetrace-0.1.8-py3-none-any.whl
- Upload date:
- Size: 92.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.13.2 Linux/6.1.132-1-MANJARO
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02078be8f4324028a982ebbca2aae28f67f01366c3366dc0b021595f09021eae
|
|
| MD5 |
399d43be53da8e2f1575fe78bc2240b1
|
|
| BLAKE2b-256 |
84aee106f4033fb28451b4a5f627690b650001a03ac190a91825c05ede06d375
|