Angel is a TUI-based autonomous coding agent built on fauxtp GenServers.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fnmaesdoik

fizzAI fa6a8f2c cf8eba45

+2 -3
+2 -3
angel/tui.py
··· 192 192 193 193 def _on_submit(self, text: str) -> None: 194 194 self._busy = True 195 - self._append(f"⟩ You {text}") 196 - self._append("🧠 Angel is thinking...") 195 + self._append(f"⟩ You\n{text}") 197 196 if self._user_pid and self._cast: 198 197 self._cast(self._user_pid, ("submit", text)) 199 198 ··· 237 236 self._append(f" ↳ {result_preview}") 238 237 239 238 def on_agent_done(self, final_text: str) -> None: 240 - self._append(f"⟩ Angel {final_text}") 239 + self._append(f"⟩ Angel\n{final_text}") 241 240 self._append("─" * 60) 242 241 self._append("✨ Ready") 243 242 self._busy = False