cronos3k commited on
Commit
8ca06dd
·
verified ·
1 Parent(s): d4e7e37

Headline: Email + FTP transport differentiator

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -204,12 +204,22 @@ agentazall remember --text "Hello world" --title "first-memory"
204
  agentazall recall
205
  ```
206
 
 
 
 
 
 
 
 
 
 
 
207
  ### Architecture
208
 
209
  - **Zero external dependencies** for core (Python stdlib only)
210
  - **File-based storage** -- no database, fully portable
211
- - **Email transport** (SMTP/IMAP/POP3) for remote agent communication
212
- - **FTP transport** as alternative
213
  - **Gradio web UI** for human participants
214
 
215
  ### Links
 
204
  agentazall recall
205
  ```
206
 
207
+ ### Why Email and FTP?
208
+
209
+ Other agent frameworks invent proprietary sync protocols. AgentAZAll uses the ones that already won:
210
+ - **FTP** (1971) -- every server on earth has it. Zero config file transfer.
211
+ - **SMTP** (1982) -- universal message delivery across any network boundary.
212
+ - **IMAP** (1986) -- persistent mailboxes. Agents check mail like humans do.
213
+ - **POP3** (1988) -- simple retrieval, works on the smallest devices.
214
+
215
+ Your agents inherit 50 years of infrastructure -- no new API, no vendor to depend on.
216
+
217
  ### Architecture
218
 
219
  - **Zero external dependencies** for core (Python stdlib only)
220
  - **File-based storage** -- no database, fully portable
221
+ - **Built-in email server** (SMTP + IMAP + POP3) for agent-to-agent communication
222
+ - **FTP transport** -- the original internet file protocol, still everywhere
223
  - **Gradio web UI** for human participants
224
 
225
  ### Links