freeturtle 0.1.36 → 0.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
  An open-source framework for deploying autonomous AI CEOs that run onchain businesses.
4
4
 
5
- FreeTurtle gives you an AI agent that operates as your project's CEO it posts to Farcaster, responds to mentions, writes strategy briefs, manages GitHub repos, queries databases, and chats with you via Telegram. It reads smart contracts, tracks wallet balances, and performs onchain actions: creating bounty tasks via a TaskBoard contract, funding them with ETH, reviewing submissions, and paying contributors — all autonomously. Everything it knows and does is stored as readable files (Markdown and JSON) that both you and the agent can edit. You define its identity, voice, and goals in a single `soul.md` file, set up cron schedules and tool access in `config.md`, and let it run. It modifies itself when you ask, requires your approval for anything destructive, and logs every action to an audit trail.
5
+ FreeTurtle gives you an AI agent that operates as your project's CEO. It posts to Farcaster, responds to mentions, writes strategy briefs, manages GitHub repos, queries databases, reads smart contracts, and chats with you via Telegram. Everything it knows and does is stored as readable files (Markdown and JSON) that both you and the agent can edit. You define its identity, voice, and goals in a single `soul.md` file, set up cron schedules and tool access in `config.md`, and let it run. It modifies itself when you ask, requires your approval for anything destructive, and logs every action to an audit trail.
6
+
7
+ **Coming soon:** public-facing DMs with XMTP, wallet balance tracking, onchain actions (autonomous onchain transactions, creating bounty tasks via a TaskBoard contract, funding them with ETH, reviewing submissions, and paying contributors).
6
8
 
7
9
  > **Beta software.** FreeTurtle is under active development. Expect bugs, breaking changes, and rough edges. If you run into issues, please open a GitHub issue or reach out directly.
8
10
 
@@ -17,13 +19,12 @@ FreeTurtle gives you an AI agent that operates as your project's CEO — it post
17
19
 
18
20
  FreeTurtle is a long-running daemon — it needs a machine that stays on 24/7.
19
21
 
20
- #### Local (recommended for getting started)
22
+ #### Local
21
23
 
22
- Run FreeTurtle on hardware you already own. No cloud account needed, no ongoing costs, and your data stays on your machine.
24
+ Give your turtle its own dedicated machine using hardware you already own.
23
25
 
24
- - **Your existing Mac or Linux machine** — just leave it running. Works great for testing or if your machine is always on.
25
26
  - **Raspberry Pi** — a $35-80 single-board computer that runs headless, draws ~5W of power, and is perfect for always-on daemons. A Pi 4 (4GB+) or Pi 5 handles FreeTurtle easily. Install the 64-bit Raspberry Pi OS Lite, plug in ethernet, and SSH in.
26
- - **Any old laptop or desktop** — install Ubuntu Server and repurpose it as a dedicated FreeTurtle box.
27
+ - **Any old laptop or desktop** — repurpose it as a dedicated FreeTurtle box.
27
28
 
28
29
  #### Cloud
29
30
 
@@ -440,7 +441,7 @@ Your cloud provider (Oracle, Railway, Fly.io, DigitalOcean, etc.) has full acces
440
441
 
441
442
  ## Roadmap
442
443
 
443
- - **v0.2** — XMTP integration (public-facing DMs)
444
+ - **v0.2** — XMTP integration (public-facing DMs), onchain actions
444
445
  - **Future** — Hosted dashboard, multi-CEO management
445
446
 
446
447
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freeturtle",
3
- "version": "0.1.36",
3
+ "version": "0.1.38",
4
4
  "description": "An open-source framework for deploying autonomous AI CEOs that run onchain businesses.",
5
5
  "type": "module",
6
6
  "main": "dist/bin/freeturtle.js",