You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/blog/workflow/index.md
+14-5Lines changed: 14 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,16 +51,21 @@ Unlike traditional REPL (Read-Execute-Print Loop) environments that focus solely
51
51
</figure>
52
52
53
53
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/.
55
54
56
-
## What Makes Reptile Workflow Special?
55
+
## What Makes Reptile Special?
57
56
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:
59
58
60
59
-**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
+
62
61
-**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.
64
69
65
70
66
71
## Our Insights in Building General Agents
@@ -198,6 +203,8 @@ Reptile is open source and we welcome contributions! Whether you're interested i
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
+
201
208
## Conclusion
202
209
203
210
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:
228
235
}
229
236
```
230
237
238
+
---
239
+
231
240
> **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.
0 commit comments