Skip to content

Commit f131916

Browse files
committed
feat: expand cli compatibility copy and ai crawler directives
1 parent bfaefd8 commit f131916

4 files changed

Lines changed: 49 additions & 0 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,11 @@ Agent Workspace wraps your preferred terminal tools and runs them side by side w
6767
- Codex CLI
6868
- Gemini CLI
6969
- OpenCode
70+
- Grok CLI
7071
- Any CLI agent that runs in a terminal
7172

73+
Compatibility rule: if it can be launched from a terminal command in your worktree, Agent Workspace can run it.
74+
7275
**Works with:** Claude Max, Codex plans, or your own API keys.
7376

7477
## Features

site/index.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,12 @@ <h1 class="mega-title">
138138
<div class="integration-content reveal">
139139
<h2 class="section-title">A GUI for your TUIs.</h2>
140140
<p class="section-desc">Bring your CLIs. <span class="text-cyan">Agent Workspace</span> wraps your preferred terminal tools &mdash; run them side by side in the same workspace with your existing local auth and provider accounts.</p>
141+
<p class="section-desc"><strong>Compatibility rule:</strong> if a tool can be launched from a terminal command in your worktree, it can run in Agent Workspace.</p>
142+
<ul class="cli-compat-list">
143+
<li>Common examples: Claude Code, Codex CLI, Gemini CLI, OpenCode, Grok CLI.</li>
144+
<li>Also works with command-driven CLIs and scripts (for example Aider, Goose, or custom repo scripts).</li>
145+
<li>If a tool starts with a command, Agent Workspace can host it in a terminal pane.</li>
146+
</ul>
141147

142148
<div class="cli-grid">
143149
<div class="cli-card">

site/robots.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ Allow: /
44
User-agent: GPTBot
55
Allow: /
66

7+
User-agent: Google-Extended
8+
Allow: /
9+
10+
User-agent: ClaudeBot
11+
Allow: /
12+
13+
User-agent: Claude-User
14+
Allow: /
15+
16+
User-agent: Claude-SearchBot
17+
Allow: /
18+
19+
User-agent: PerplexityBot
20+
Allow: /
21+
22+
User-agent: Perplexity-User
23+
Allow: /
24+
725
User-agent: *
826
Allow: /
927

site/styles.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,6 +1042,28 @@ a.btn-glow {
10421042
margin: 0 auto 2.5rem;
10431043
}
10441044

1045+
.cli-compat-list {
1046+
max-width: 860px;
1047+
margin: -1.25rem auto 2.5rem;
1048+
padding: 1rem 1.25rem;
1049+
list-style: none;
1050+
text-align: left;
1051+
background: rgba(7, 15, 33, 0.55);
1052+
border: 1px solid rgba(255, 255, 255, 0.1);
1053+
border-radius: 12px;
1054+
}
1055+
1056+
.cli-compat-list li {
1057+
color: var(--text-muted);
1058+
margin: 0.4rem 0;
1059+
line-height: 1.5;
1060+
}
1061+
1062+
.cli-compat-list li::before {
1063+
content: "• ";
1064+
color: var(--cyan);
1065+
}
1066+
10451067
.logo-showcase {
10461068
display: flex;
10471069
align-items: center;

0 commit comments

Comments
 (0)