# ElizaOS Weekly Newsletter (Feb 8–Feb 14, 2026)

## 1) Executive Summary

**Big week for “production-ready agents.”** Here are the top milestones community members should know:

1. **Multi-language Eliza is landing:** Work on the next-generation framework expanded beyond TypeScript to include **Rust + Python** support, aiming to bring ElizaOS to a much wider developer base and runtime footprint ([PR #6485](https://github.com/elizaos/eliza/pull/6485), plus the broader “next” branch work in [PR #6474](https://github.com/elizaos/eliza/pull/6474)).

2. **Security + multi-user isolation got a serious upgrade:** The project introduced a robust **JWT authentication and user management** system—an important step toward enterprise/multi-tenant deployments ([PR #6200](https://github.com/elizaos/eliza/pull/6200)).

3. **Plugin economy accelerated (especially finance + reliability):** The ecosystem added more “real-world” capabilities—transaction guardrails/escrow, improved Solana/EVM reliability, sports data, and even a decentralized job marketplace for agents (notably in the plugins registry and chain plugins).

## 2) Development Updates (Core + Plugins)

### Framework & Runtime

- **Multi-language core (Rust/Python/TS):** The next-gen direction is clear: make ElizaOS usable where agents actually ship—servers, embedded setups, and performance-sensitive environments—while keeping the TypeScript experience strong. If you’ve been waiting to build agents in Rust or Python without awkward wrappers, this is the path ([PR #6485](https://github.com/elizaos/eliza/pull/6485)).

- **JWT authentication system:** A comprehensive auth implementation landed, including test coverage and middleware integration. It’s gated behind `ENABLE_DATA_ISOLATION=true`, which helps teams adopt it safely without breaking existing single-tenant setups ([PR #6200](https://github.com/elizaos/eliza/pull/6200)).

- **ActionFilterService to reduce “prompt bloat”:** A new filtering service ranks actions/providers using vector similarity + BM25 reranking, shrinking context from “hundreds of actions” down to a relevant subset—directly lowering token costs and improving response quality ([PR #6475](https://github.com/elizaos/eliza/pull/6475)).

### Stability & Bug Fixes

- **CI repair in flight:** A CI fix was raised this week (mentioned in Discord as [PR #6477](https://github.com/elizaos/eliza/pull/6477)), continuing the ongoing reliability work so contributors don’t get stuck fighting the pipeline.

- **Hardening against null/undefined crashes:** Multiple fixes focused on eliminating runtime failures from `Object.entries()` and provider initialization edge cases (e.g., settings utilities and bootstrap provider safety checks). This is the kind of “unglamorous” work that prevents agents from face-planting in production.

- **Known issue surfaced:** A crash in the agent skills provider (`skill.description.toLowerCase is not a function`) was reported on fresh deployments (not yet shown as fixed in the week’s Discord logs, but acknowledged as a real bug to address).

### Plugins & Ecosystem Capabilities

- **Financial safety & transaction infrastructure:**
  - Added **transaction guardrails / validation + escrow-like flows** (via Proofgate integration) in the plugin registry ([PR #254](https://github.com/elizaos-plugins/registry/pull/254)).
  - Expanded trading capabilities with improved **EVM wallet management / RPC fallback / multicall** features in the EVM plugin (see weekly summary references: [plugin-evm PR #24](https://github.com/elizaos-plugins/plugin-evm/pull/24), [PR #25](https://github.com/elizaos-plugins/plugin-evm/pull/25)).

- **Solana reliability upgrades:** Cloud proxy routing and transaction refactors improved uptime and feature coverage (see weekly summary references: [plugin-solana PR #24](https://github.com/elizaos-plugins/plugin-solana/pull/24), [PR #26](https://github.com/elizaos-plugins/plugin-solana/pull/26)).

- **Cost & performance improvements in model plugins:** A **persistent media caching layer** for OpenAI plugin usage helps avoid paying twice for the same generated audio/images ([plugin-openai PR #23](https://github.com/elizaos-plugins/plugin-openai/pull/23)).

## 3) Community Spotlight (Discord Highlights)

### ElizaCloud authentication: SIWE for agents (and “proof-of-agent” ideas)
A key technical conversation landed around making ElizaCloud easier for **agents** (not just humans) to use. The standout commitment: **SIWE (Sign-In With Ethereum, EIP-4361)** for ElizaCloud auth, enabling agents to generate API keys via signature-based flows. This was framed as a building block for a “proof-of-agent” system where agents complete coding tasks before getting credentials.

- Core thread: agent-signup via signatures, Privy collaboration, and simplifying OpenClaw-style integrations.
- Community tension (productive): “llms.txt exists, but agents still struggle to get practical CLI/API access”—a clear call to tighten the developer loop.

### ElizaCloud UX research (real user feedback)
Community member **yojo** brought unusually concrete market feedback: five non-coding potential investors tested ElizaCloud.ai and hit repeated friction:
- VPN recharge failures, unclear USD top-up flow
- a welcome bonus bug (double account creation)
- difficulty identifying “reliable” plugins
- confusion about who ElizaCloud is for (coders vs non-coders)

This wasn’t just criticism—action items emerged quickly: clearer onboarding, beta labeling, improved roadmap discoverability, and a more guided plugin marketplace.

### Twitter plugin cross-pollination
**azsxdc** shared that they’re using **Eliza’s Twitter plugin inside OpenClaw** because it’s higher quality and avoids riskier “ban-prone” approaches. They committed to posting their fork to GitHub, which is exactly the kind of pragmatic ecosystem re-use we want to see.

### Security awareness: scams + migration support
Multiple members warned about scam DMs and fake “support desks.” Reminder echoed by several helpers: **only use official ticket channels for migration/support**.

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

- **Migration status:** The community confirmed the **AI16Z → ELIZAOS migration is complete**. Users who missed the window are being directed to **official support tickets** for manual migration (example: `ticket-0550` was raised as waiting >1 week).
- **Exchange delisting confusion resolved:** Panic around Korean exchange delistings was clarified—**the delisted asset was the pre-rebrand AI16Z token**, not the current ELIZAOS token.
- **No official bridge:** Community guidance remains: there is **no official/safe SOL↔BSC bridge** for ELIZA right now—be cautious.
- **Staking:** No staking portal is available “for now” per Discord responses.
- **auto.fun:** No concrete new auto.fun release details were shared in this week’s discussions. If there are upcoming launches tied to token utility, the community is explicitly asking for clearer, more regular communication.

## 5) Coming Soon (What to Watch Next)

- **ElizaCloud SIWE auth + easier agent API key provisioning** (and possible Privy-driven changes to auth flows).
- **ElizaCloud LLM functionality updates** following recent Cloud API improvements.
- **UX fixes that unlock non-coder adoption:** VPN recharge reliability, welcome bonus duplication, clearer USD deposit UX.
- **Plugin “marketplace” direction:** strong community push for an “App Store-like” discovery + recommended bundles for common use cases.
- **Stability fixes:** agent skills provider crash fix, Babylon feedback “share to Farcaster” link issue, and reported group chat breakage.

## 6) Resources (Links & Pointers)

**Roadmap**
- Public roadmap: https://github.com/elizaos/roadmap

**Core PRs / Features**
- Multi-language next-gen Eliza: https://github.com/elizaos/eliza/pull/6485  
- JWT auth + user management: https://github.com/elizaos/eliza/pull/6200  
- ActionFilterService (reduce prompt bloat): https://github.com/elizaos/eliza/pull/6475  

**Plugins & Registry**
- Proofgate transaction guardrails (registry): https://github.com/elizaos-plugins/registry/pull/254  
- OpenAI media caching: https://github.com/elizaos-plugins/plugin-openai/pull/23  
- Solana plugin updates (weekly references): https://github.com/elizaos-plugins/plugin-solana/pull/24, https://github.com/elizaos-plugins/plugin-solana/pull/26  
- EVM plugin updates (weekly references): https://github.com/elizaos-plugins/plugin-evm/pull/24, https://github.com/elizaos-plugins/plugin-evm/pull/25  

**Key Discord threads (for context)**
- Dev + SIWE/ElizaCloud agent auth discussion: https://discord.com/channels/1253563208833433701/1300025221834739744  
- Community UX feedback + migration Q&A: https://discord.com/channels/1253563208833433701/1253563209462448241