oso95 /
Codirigent
A Rust based terminal workspace for multiple AI coding CLIs in parallel (windows supported)
Loading repository data…
dh1011 / repository
A Rust-based CLI tool that generates and executes terminal commands using OpenAI's language models.
LLM-Term is a CLI that turns plain English prompts into shell commands, shows the generated command, and asks before execution.
This repository now carries two implementations:
ports/cosmopolitan/.The Rust implementation should remain the reference for normal development. The C port should track the same user-facing behavior where practical, with build and runtime decisions optimized for a self-contained portable binary.
.
├── Cargo.toml
├── Cargo.lock
├── src/
├── docs/
├── testdata/
└── ports/
└── cosmopolitan/
├── Makefile
├── src/
├── tests/
├── certs/
├── generated/
└── third_party/
cargo build --release
The binary is written to target/release/.
Run:
llm-term "show the largest files in this directory"
Run setup:
llm-term --config
cd ports/cosmopolitan
make
The portable Windows-launchable artifact is written to:
ports/cosmopolitan/dist/llm-term.exe
On Unix-like systems, the same file can be copied or renamed to llm-term and marked executable.
cp ports/cosmopolitan/dist/llm-term.exe llm-term
chmod +x llm-term
./llm-term --help
Both implementations keep user-visible config.json and cache.json files next to the executable by default.
See:
docs/config.mddocs/cache.mddocs/providers.mddocs/portable-build.mdGenerated commands are displayed before execution. A command only runs after explicit y confirmation.
Selected from shared topics, language and repository description—not editorial ratings.
oso95 /
A Rust based terminal workspace for multiple AI coding CLIs in parallel (windows supported)
dikkadev /
turbocommit is a Rust-based CLI tool that generates high-quality git commit messages in accordance with the Conventional Commits specification, using OpenAI API compatible service. It is easy to use and a cost-effective way to keep git commit history at a higher quality, helping developers stay on track with their work.
majidmanzarpour /
workspace-cli is a Rust-based command-line tool designed to provide programmatic access to Google Workspace APIs with structured JSON output optimized for AI agent consumption. Built for speed, efficiency, and deterministic execution.
missdeer /
codex-mcp-rs is a Rust-based MCP (Model Context Protocol) server that serves as a bridge for Codex CLI, enabling various AI coding assistants (such as Claude Code, Roo Code, KiloCode, etc.) to seamlessly collaborate with Codex.
syntaxpresso /
A standalone Rust-based CLI backend for IDE plugins that provides advanced code generation and manipulation capabilities using Tree-Sitter.
AkhrorKhasanov /
A Rust-based CLI tool that scans directories to identify stale files (e.g., unmodified for >30 days). Utilizing std::fs for metadata analysis and clap for configuration, it provides a safe, efficient way to manage disk space by automating the identification, deletion, or archival of "digital clutter."