https://github.com/mujhtech/agent-cli
An open-source alternative to OpenAI Codex & Claude Code
https://github.com/mujhtech/agent-cli
Last synced: 8 months ago
JSON representation
An open-source alternative to OpenAI Codex & Claude Code
- Host: GitHub
- URL: https://github.com/mujhtech/agent-cli
- Owner: Mujhtech
- License: mit
- Created: 2025-04-19T18:22:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-22T18:35:48.000Z (about 1 year ago)
- Last Synced: 2025-05-22T19:37:42.877Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Agent CLI
An open-source alternative to OpenAI Codex & Claude Code
## Prerequisites
- Go 1.21 or later
- Git
## Setup
1. Clone the repository:
```bash
git clone https://github.com/yourusername/agent-cli.git
cd agent-cli
```
2. Install dependencies:
```bash
go mod download
```
## Building
To build the project, run:
```bash
make build
```
This will create an executable named `agent-cli` in the root directory.
## Running
After building, you can run the CLI tool:
```bash
./agent-cli
```
## Development
The project structure is organized as follows:
- `cmd/`: Contains the main application entry points
- `internal/`: Private application code
- `pkg/`: Public library code that can be used by external applications
## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.