<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sedar Olmez</title>
    <description>The latest articles on DEV Community by Sedar Olmez (@sedarolmez94).</description>
    <link>https://dev.to/sedarolmez94</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F529102%2Fed7ef461-88d0-4ef8-824b-17ee4ab2afc0.png</url>
      <title>DEV Community: Sedar Olmez</title>
      <link>https://dev.to/sedarolmez94</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sedarolmez94"/>
    <language>en</language>
    <item>
      <title>Clive — a friendly CLI for local LLMs</title>
      <dc:creator>Sedar Olmez</dc:creator>
      <pubDate>Sat, 01 Aug 2026 20:21:19 +0000</pubDate>
      <link>https://dev.to/sedarolmez94/clive-a-friendly-cli-for-local-llms-36l9</link>
      <guid>https://dev.to/sedarolmez94/clive-a-friendly-cli-for-local-llms-36l9</guid>
      <description>&lt;h2&gt;
  
  
  Why I built Clive
&lt;/h2&gt;

&lt;p&gt;For the last couple of weeks, as the cost of frontier models kept climbing, I started experimenting with open-source large language models.&lt;/p&gt;

&lt;p&gt;What surprised me: for most of the tasks I'd normally hand to Claude or GPT, a &lt;strong&gt;local&lt;/strong&gt; open-source model did the job just as well — and sometimes better.&lt;/p&gt;

&lt;p&gt;The problem was the ergonomics. &lt;a href="https://ollama.com/" rel="noopener noreferrer"&gt;Ollama&lt;/a&gt; makes running local models genuinely easy, but I wanted a smoother terminal workflow — streaming chat that didn't feel clunky, safe file editing, and the ability to run real multi-file agent tasks without leaving my shell.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Clive&lt;/strong&gt; 🦀 — a local-first coding-assistant CLI powered by Ollama.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Clive does
&lt;/h2&gt;

&lt;p&gt;Everything runs on your machine. No prompts, code, or files ever leave your computer.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;💬 &lt;strong&gt;Streaming chat&lt;/strong&gt; and interactive multi-turn coding sessions&lt;/li&gt;
&lt;li&gt;🤖 &lt;strong&gt;Autonomous multi-file agent workflows&lt;/strong&gt; (preview → apply, with rollback)&lt;/li&gt;
&lt;li&gt;✏️ &lt;strong&gt;Safe file editing&lt;/strong&gt; with diffs and unified patches — you approve before anything is written&lt;/li&gt;
&lt;li&gt;📦 &lt;strong&gt;Ollama management&lt;/strong&gt; built in: &lt;code&gt;serve&lt;/code&gt;, &lt;code&gt;pull&lt;/code&gt;, &lt;code&gt;rm&lt;/code&gt;, model recommendations&lt;/li&gt;
&lt;li&gt;⚙️ Persistent config, shell completions, and machine-readable JSON output for automation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It's written in &lt;strong&gt;Rust&lt;/strong&gt;, MIT-licensed, and just hit its first release, &lt;code&gt;v0.1.0&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it in under 5 minutes
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
bash
# Clone and install (from source for now)
git clone https://github.com/SedarOlmez94/clive.git
cd clive
cargo install --path .

# Start Ollama and pull a coding model
clive ollama serve --detach
clive ollama pull qwen2.5-coder:latest

# Chat!
clive chat "Explain Rust's ownership model in two sentences"

# Or run an autonomous agent over your files (preview first)
clive agent "Refactor error handling and add tests" \
  --files src/main.rs \
  --verify "cargo check -q"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>ollama</category>
      <category>rust</category>
      <category>cli</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
