Skip to content

Commit c077886

Browse files
stephanjclaude
andcommitted
chore: bump version to v0.9.9
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 263831d commit c077886

3 files changed

Lines changed: 49 additions & 5 deletions

File tree

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import React from 'react';
2+
3+
export default function CliRunnersIcon({className}) {
4+
return (
5+
<svg
6+
className={className}
7+
width="48"
8+
height="48"
9+
viewBox="0 0 24 24"
10+
fill="none"
11+
xmlns="http://www.w3.org/2000/svg"
12+
>
13+
<rect x="2" y="3" width="20" height="18" rx="2" stroke="currentColor" strokeWidth="1.5" />
14+
<path d="M6 8L10 12L6 16" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" />
15+
<path d="M12 16H18" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
16+
</svg>
17+
);
18+
}

docusaurus/src/components/HomepageFeatures/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import MCPMarketplaceIcon from './icons/MCPMarketplace';
1212
import SubAgentsIcon from './icons/SubAgents';
1313
import ProjectScannerIcon from './icons/ProjectScanner';
1414
import InlineCompletionIcon from './icons/InlineCompletion';
15-
import WebSearchIcon from './icons/WebSearch';
15+
import CliRunnersIcon from './icons/CliRunners';
1616
import DragDropIcon from './icons/DragDrop';
1717

1818
const FeatureList = [
@@ -87,12 +87,12 @@ const FeatureList = [
8787
),
8888
},
8989
{
90-
title: 'Web Search',
91-
icon: WebSearchIcon,
92-
link: '/docs/features/web-search',
90+
title: 'CLI Runners',
91+
icon: CliRunnersIcon,
92+
link: '/docs/features/cli-runners',
9393
description: (
9494
<>
95-
Integrate web search functionality using Google or Tavily to find relevant information for your programming questions.
95+
Execute prompts and spec tasks via external CLI tools like Claude Code, GitHub Copilot, Codex, Gemini CLI, and Kimi directly from the chat interface.
9696
</>
9797
),
9898
},

docusaurus/src/pages/index.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,32 @@ milestone: v2.0
213213
</div>
214214
</div>
215215
</div>
216+
<div className="container home-section">
217+
<div className="row">
218+
<div className="col col--6">
219+
<h2>CLI Runners</h2>
220+
<p>
221+
Execute prompts and spec tasks via external CLI tools like <strong>Claude Code</strong>, <strong>GitHub Copilot</strong>, <strong>OpenAI Codex</strong>, <strong>Google Gemini CLI</strong>, and <strong>Kimi</strong> — directly from the chat interface or the Spec Browser.
222+
</p>
223+
<p>
224+
<strong>Chat Mode:</strong> Select a CLI runner as your provider and chat naturally. DevoxxGenie routes your prompts to the external CLI tool and streams the response back into the conversation.
225+
</p>
226+
<p>
227+
<strong>Spec Task Execution:</strong> Run individual or batch spec tasks through any configured CLI runner. Combined with the Agent Loop, you can delegate entire task backlogs to your preferred coding assistant.
228+
</p>
229+
<div className={styles.buttons} style={{justifyContent: 'flex-start', marginTop: '10px'}}>
230+
<Link
231+
className="button button--primary button--md"
232+
to={useBaseUrl('/docs/features/cli-runners')}>
233+
Learn More
234+
</Link>
235+
</div>
236+
</div>
237+
<div className="col col--6">
238+
<img src={useBaseUrl('/img/CLI-Runners-Setup.png')} alt="CLI Runners configuration" className="feature-image" />
239+
</div>
240+
</div>
241+
</div>
216242
<div className="container home-section">
217243
<div className="row">
218244
<div className="col col--12 text--center">

0 commit comments

Comments
 (0)