# ElizaOS Weekly Newsletter (Apr 19–25, 2026)

## 1) Executive Summary

This week felt like two tracks running in parallel: **serious community re-organization after the Eliza Labs transition**, and **continued shipping across the codebase**.

**Big milestones:**
- **Foundation status clarified + community governance taking shape.** In Discord, *odilitime* confirmed the foundation is **still funded** and **still responsible for the token**, and invited contributors into an emerging **steering group** focused on marketing and (potential) governance.
- **Core platform hardening + identity improvements landed across repos.** The team moved auth flows to **Steward** in `elizaos/cloud`, expanded wallet support, and kept pushing the framework toward more reliable “real-world” agent operations.
- **Agent autonomy expanded (LifeOps + markets + payments).** Calendar/travel tooling progressed, prediction-market functionality continued to mature, and the community rallied around practical agent payment rails (notably the LemonCake plugin and a separate M2M payments proposal).

## 2) Development Updates (Technical)

### Core framework stability & performance
- **Prompt bloat reduction in the action-planner + reflection pipeline** was a headline improvement this week. The team targeted duplicate/oversized context being shipped on each chat turn—an easy way to burn context windows (and money) in long sessions.  
  - See: `fix(reflection,providers): reduce prompt bloat blowing long-context cap` ([elizaos/eliza#7013](https://github.com/elizaos/eliza/pull/7013))

- **Dependency maintenance stayed aggressive** (TypeScript v6, vitest v4, uuid v14, commander v14, gymnasium v1.3.0, plus Cargo/npm/yarn updates). The goal: keep the monorepo modern, secure, and compatible across TS/Python/Rust tooling.

### Cloud + identity + wallets
- **Auth migration to Steward** improved independence and reliability of login flows.  
  - `elizaos/cloud#466` — https://github.com/elizaos/cloud/pull/466
- **Native wallet support expanded** (EVM + Solana), making it easier to connect user identities and assets to agents.  
  - `elizaos/cloud#462` — https://github.com/elizaos/cloud/pull/462
- **Billing bug fix:** image-generation models were being misclassified—now corrected for more accurate pricing.  
  - `elizaos/cloud#470` — https://github.com/elizaos/cloud/pull/470

### UI + mobile improvements
- **Settings UI polish shipped**: dropdown sizing fixes, model picker updates, header drag-strip corrections, and other quality-of-life adjustments that make the app feel less “alpha-y” day-to-day.  
- **Android default role wiring completed,** finalizing a key piece of mobile behavior so default roles work as expected out of the box.

### Plugins & ecosystem expansion
- The plugin ecosystem continues to broaden, with registry updates and new proposals flowing in. Notable in-progress items include:
  - **Flipcoin plugin** being added to the plugin registry (in progress).
  - **Prediction markets support** continuing to land in core (and highlighted in community content this week).

### Critical CI/CD note
A CI failure popped up in the plugin registry:
- **`elizaos-plugins/registry#346`** had a workflow failing to fetch an OIDC token. Root cause appears to be **missing GitHub workflow permissions** (`id-token: write`) or `github_token` configuration. This is a **repo configuration issue**, not a code bug—and it blocks smooth automation until fixed.  
  - PR: https://github.com/elizaos-plugins/registry/pull/346

### Security & privacy direction
- A new interoperability/security-oriented initiative was raised: **decentralized private state verification** for agents using **local ZK proofs**—a forward-looking approach to letting agents prove facts about internal state without revealing the state itself. This is still early-stage, but it’s the kind of primitive that could matter a lot for agent-to-agent trust.

## 3) Community Spotlight (Discord)

### Governance: from “what now?” to “who does what?”
The community openly wrestled with what “post-transition” means. The biggest clarity point: **Eliza Labs transitioning does not mean the foundation disappears.** *odilitime* corrected that assumption and helped redirect energy into building structure:
- *quanteliza* proposed a **structured, transparent forum** for leadership and business ops (social media, website, comms).
- *odilitime* pointed to an existing **steering group** (marketing + possible governance) and offered invites.
- *valleybeyond7991* jumped in to help with **social media** and joined the steering group.

### Agents in the wild (and the costs of shipping)
A practical reminder that “agents in production” is messy: *nusko_* shared a Jinx agent built with ElizaOS that hit **9M impressions** and **3.3K followers**—before running into **Twitter bans**. It’s a real-world proof point for distribution *and* a cautionary tale about platform risk.

### Payments for agents: beyond “just use USDC”
Two threads converged into one bigger theme: **agent commerce needs safer primitives**.
- *arkchain* raised concerns about **USDC freezing risk** in cross-border contexts and asked for alternatives.
- *lemoncake03027* showcased an **open-source, MIT-licensed payments plugin** designed for agent machine-to-machine payments, using **spend-capped, time-boxed, revocable Pay Tokens** (USDC/JPYC on Polygon) with receipts and accounting integrations—and said integrating in ElizaOS v2 is “one line.” *odilitime* approved the implementation direction.
- Separately, *Lemoncake03027* also described an M2M payments rail using **spend-capped JWTs + a kill switch**, offering to ship an Eliza plugin integration if needed.

### Security PSA: phishing in the ecosystem
A community member reported losing **100k ai16z tokens** to a wallet drainer tied to `bulkdao.co/allocation`. This was shared explicitly as a warning—please double-check URLs, avoid rushed “allocation” links, and consider a fresh wallet for experimental dApps.

## 4) Token Economics (AI16Z + auto.fun)

**Foundation responsibility confirmed:** The week’s most important token-related update was governance clarity: the **foundation remains funded and responsible for the token**, even amid broader transitions.

**Migration pain surfaced again:** A user reported being unable to migrate self-custodied **AI16Z → ELIZAOS** because the migration window closed; *odilitime* offered a waitlist path but set expectations that it may be a longshot.

**Market sentiment:** Community members noted AI16Z has underperformed relative to peers in recent market moves, and discussion continues around narrative damage vs underlying product strength (with *odilitime* pointing to ongoing GitHub shipping and demand signals like openclaw/hermes).

**auto.fun:** No concrete weekly product or contract updates were posted in the provided logs—if auto.fun changes shipped this week, they weren’t captured in these summaries. If you have links, drop them in Discord and we’ll include them next week.

## 5) Coming Soon

Here’s what to watch next:
- **Multi-calendar Google feed support** in `eliza` + broader **calendar management** features in `cloud` (LifeOps keeps getting sharper).
- **Flipcoin plugin** landing in the registry (plus continued plugin onboarding momentum).
- **CI/CD fix for registry OIDC permissions** (unblocks smoother PR automation).
- **A clearer governance surface:** likely a dedicated forum/space for leadership roles, comms, website/X ownership, and transparent decision-making.
- **Early exploration of ZK-based agent interoperability** (private state verification)—a potential cornerstone for trust in agent-to-agent interactions.

## 6) Resources (Links)

**Community / Media**
- Cron Job S1E12 “The 4/20 Miracle”: https://elizaos.news  
- Discord threads (discussion): https://discord.com/channels/1253563208833433701/1253563209462448241  
- Discord threads (coders): https://discord.com/channels/1253563208833433701/1300025221834739744  

**Key PRs / Issues**
- Prompt/context optimization: https://github.com/elizaos/eliza/pull/7013  
- LifeOps calendar/travel expansion (weekly highlight): https://github.com/elizaos/eliza/pull/6984  
- Prediction markets plugin: https://github.com/elizaos/eliza/pull/6963  
- Privacy/data sanitization initiative: https://github.com/elizaos/eliza/issues/7007  
- Steward auth migration: https://github.com/elizaos/cloud/pull/466  
- Wallet support (EVM + Solana): https://github.com/elizaos/cloud/pull/462  
- Billing fix: https://github.com/elizaos/cloud/pull/470  
- Plugin registry CI issue context (OIDC perms): https://github.com/elizaos-plugins/registry/pull/346  
- New Solana escrow/reputation proposal: https://github.com/elizaos-plugins/registry/pull/348