Skip to content

Commit f9d5b04

Browse files
committed
polish
1 parent 5d718d8 commit f9d5b04

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

content/blog/workflow/index.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,21 @@ Unlike traditional REPL (Read-Execute-Print Loop) environments that focus solely
5151
</figure>
5252

5353

54-
This blog focus on **workflow** and **evaluation**. We detail the **on-policy annotation** and **SFT training** in https://terminal-agent.github.io/blog/annotation/.
5554

56-
## What Makes Reptile Workflow Special?
55+
## What Makes Reptile Special?
5756

58-
Compared with other CLI agents (e.g., Claude Code and Mini SWE-Agent), Reptile stands out because of:
57+
Compared with other CLI agents (e.g., Claude Code and Mini SWE-Agent), Reptile stands out for the following reasons:
5958

6059
- **Terminal-only beyond Bash-only**: Simple and stateful execution, which is more efficient than bash-only (you don't need to specify the environment in every command). It doesn't require the complicated MCP protocol—just a naive bash tool under the REPL protocol.
61-
> See [TTY-use Post](https://terminal-agent.github.io/blog/tool/) for more details on making terminal backend work.
60+
6261
- **Human-in-the-Loop Learning**: Users can inspect every step and provide prompt feedback, i.e., give feedback under the USER role or edit the LLM generation under the ASSISTANT role.
63-
> See [On-policy Annotation Post](https://terminal-agent.github.io/blog/annotation/) for more details on annotation and naive SFT training.
62+
63+
64+
This blog focus on **workflow** and **benchmarking**.
65+
66+
> See [TTY-use blog](https://terminal-agent.github.io/blog/tool/) for technical details on how to make terminal backend work.
67+
>
68+
> See [on-policy annotation blog](https://terminal-agent.github.io/blog/annotation/) for annotation details on SWE tasks.
6469
6570

6671
## Our Insights in Building General Agents
@@ -198,6 +203,8 @@ Reptile is open source and we welcome contributions! Whether you're interested i
198203

199204
Visit our GitHub repository: [https://github.com/terminal-agent/reptile](https://github.com/terminal-agent/reptile)
200205

206+
We are inspired by excellent community work such as [terminal-bench](https://www.tbench.ai/) and [mini-SWE-agent](https://github.com/SWE-agent/mini-swe-agent). We thank the community for their efforts and valuable insights!
207+
201208
## Conclusion
202209

203210
The terminal has been humanity's interface to computers for 50 years. With Reptile, it becomes the interface between humans and AI agents.
@@ -228,6 +235,8 @@ If you find Reptile useful in your research or applications, please cite:
228235
}
229236
```
230237

238+
---
239+
231240
> **Fun fact**: The name "Reptile" has a dual meaning: it refers to the REPL (Read-Eval-Print-Learning Loop) workflow in terminal interactions, and also pays homage to OpenAI's Reptile meta-learning algorithm (2018), which pioneered few-shot adaptation. Like its namesake, our Reptile learns to quickly adapt to new tasks—but through human-in-the-loop collaboration rather than pure algorithmic optimization. Both share the same philosophy: learning efficiently from minimal examples to master diverse tasks.
232241
>
233242
> *Reference: [On First-Order Meta-Learning Algorithms](https://arxiv.org/abs/1803.02999)*

0 commit comments

Comments
 (0)