<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>DeepSeek on SoloSoft</title><link>https://www.solosoft.dev/tags/deepseek/</link><description>Recent content in DeepSeek on SoloSoft</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 12 Aug 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://www.solosoft.dev/tags/deepseek/index.xml" rel="self" type="application/rss+xml"/><item><title>DeepSeek Harness: The Open-Source Agent Framework Where Everything Is a Plugin</title><link>https://www.solosoft.dev/post/deepseek-harness-everything-is-a-plugin/</link><pubDate>Wed, 12 Aug 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/deepseek-harness-everything-is-a-plugin/</guid><description>&lt;h1 id="deepseek-harness-the-open-source-agent-framework-where-everything-is-a-plugin"&gt;DeepSeek Harness: The Open-Source Agent Framework Where Everything Is a Plugin&lt;/h1&gt;
&lt;p&gt;The formula is everywhere now: &lt;strong&gt;Model + Harness = Agent.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The model reasons. The harness handles everything else — tool execution, memory, context control, sandboxing, orchestration. And on &lt;a href="https://github.com/deepseek-ai/deepseek-harness"&gt;August 2026&lt;/a&gt;, DeepSeek shipped what might be the most important open-source reference implementation of that formula yet.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DeepSeek Harness (dsh)&lt;/strong&gt; is the Chinese lab&amp;rsquo;s open-source agent framework: &lt;strong&gt;25.9k stars&lt;/strong&gt;, &lt;strong&gt;MIT license&lt;/strong&gt;, &lt;strong&gt;12,000+ commits&lt;/strong&gt;, and an architecture built on one radical idea — &lt;strong&gt;everything is a plugin&lt;/strong&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;Models, tools, skills, sessions, sandboxes, filesystems, loops, orchestration, and UI are ALL implemented as plugins, and can be mixed, matched, replaced, and extended.&amp;rdquo;&lt;/p&gt;</description></item><item><title>AgenticSeek: Open-Source Local Alternative to Manus AI with 25K Stars</title><link>https://www.solosoft.dev/post/agenticseek-ai-assistant-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/agenticseek-ai-assistant-2026/</guid><description>&lt;p&gt;The past year has seen an explosion of &amp;ldquo;AI agent&amp;rdquo; products that promise to browse the web, write code, and complete complex tasks autonomously. Most of these &amp;ndash; Manus AI, Operator, and other cloud-based agents &amp;ndash; send your data to remote servers for processing. &lt;strong&gt;AgenticSeek&lt;/strong&gt; by Fosowl takes a radically different approach: it runs entirely on your local machine, providing autonomous AI agent capabilities without compromising privacy, and has earned over 25,000 GitHub stars in the process.&lt;/p&gt;
&lt;p&gt;AgenticSeek is an open-source autonomous agent that combines web browsing, code execution, file management, and task planning into a single self-contained system. It competes directly with cloud-based agents like Manus AI but with a decisive privacy advantage &amp;ndash; every operation happens on your hardware. Your browsing history, documents, and generated code never leave your machine unless you explicitly choose to share them.&lt;/p&gt;</description></item><item><title>Understand R1-Zero: Deep Dive Into DeepSeek R1's Reinforcement Learning</title><link>https://www.solosoft.dev/post/understand-r1-zero-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/understand-r1-zero-2026/</guid><description>&lt;p&gt;DeepSeek R1-Zero represented a breakthrough in AI reasoning by demonstrating that pure reinforcement learning, without supervised fine-tuning, could produce sophisticated chain-of-thought reasoning in language models. The Understand R1-Zero project, developed by sail-sg (Singapore Management University), provides a comprehensive analysis of how this works under the hood.&lt;/p&gt;
&lt;p&gt;The project reverse-engineers the R1-Zero training methodology, replicating key experiments and providing visualizations of how reasoning capabilities emerge during RL training. It offers insights into reward shaping, policy optimization dynamics, and the critical role of exploration in discovering reasoning strategies.&lt;/p&gt;
&lt;h2 id="research-findings"&gt;Research Findings&lt;/h2&gt;
&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Finding&lt;/th&gt;
 &lt;th&gt;Implication&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;RL alone induces reasoning&lt;/td&gt;
 &lt;td&gt;No supervised data needed for chain-of-thought emergence&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Reward shaping is critical&lt;/td&gt;
 &lt;td&gt;Simple outcome rewards work better than process rewards&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Exploration drives discovery&lt;/td&gt;
 &lt;td&gt;Random policy perturbations enable novel reasoning paths&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Self-verification emerges&lt;/td&gt;
 &lt;td&gt;Models learn to check their own work without explicit training&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Length correlates with accuracy&lt;/td&gt;
 &lt;td&gt;Longer reasoning chains produce better results&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="training-dynamics"&gt;Training Dynamics&lt;/h2&gt;

&lt;figure class="mermaid-wrapper not-prose" role="img" aria-label="Mermaid diagram"&gt;
 &lt;div class="mermaid-container"&gt;
 &lt;pre class="mermaid"&gt;flowchart LR
 A[Base Model] --&amp;gt; B[RL Training Loop]
 B --&amp;gt; C[Generate Reasoning]
 C --&amp;gt; D[Evaluate Answer]
 D --&amp;gt; E{Reward}
 E --&amp;gt;|Correct| F[Positive Update]
 E --&amp;gt;|Incorrect| G[Negative Update]
 F --&amp;gt; H[Policy Update]
 G --&amp;gt; H
 H --&amp;gt; I{Converged?}
 I --&amp;gt;|No| B
 I --&amp;gt;|Yes| J[Trained R1-Zero Model]&lt;/pre&gt;
 &lt;script type="application/mermaid"&gt;flowchart LR
 A[Base Model] --&gt; B[RL Training Loop]
 B --&gt; C[Generate Reasoning]
 C --&gt; D[Evaluate Answer]
 D --&gt; E{Reward}
 E --&gt;|Correct| F[Positive Update]
 E --&gt;|Incorrect| G[Negative Update]
 F --&gt; H[Policy Update]
 G --&gt; H
 H --&gt; I{Converged?}
 I --&gt;|No| B
 I --&gt;|Yes| J[Trained R1-Zero Model]&lt;/script&gt;
 &lt;/div&gt;
&lt;/figure&gt;&lt;p&gt;The training loop is elegantly simple. The model generates reasoning chains and answers, receives reward signals based on correctness, and updates its policy through reinforcement learning. Over thousands of iterations, the model discovers effective reasoning strategies entirely through trial and error.&lt;/p&gt;</description></item></channel></rss>