惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
M
MIT News - Artificial intelligence
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG
博客园 - 叶小钗
Jina AI
Jina AI
Last Week in AI
Last Week in AI
The Cloudflare Blog
博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
博客园_首页
I
InfoQ
G
Google Developers Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
H
Help Net Security
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Native Jules: A Polished Flutter Client for the Jules API
Mike CK · 2026-05-02 · via DEV Community
Cover image for Native Jules: A Polished Flutter Client for the Jules API

Mike CK

Hey everyone!

I'm excited to share Native Jules, an open-source Flutter app that gives the Jules API a native desktop/mobile experience.

If you're using Jules to review code sessions, chat with the agent, or inspect generated changes, Native Jules makes that workflow faster and more enjoyable — with multi-account support, offline caching, and a clean, responsive UI.

Highlights

  • Multi-account API key support with fast account switching
  • Session history grouped by repository, with built-in search
  • Chat timeline showing prompts, plans, progress updates, and agent responses
  • Resizable diff panel for reviewing code changes produced by Jules
  • Local caching with background sync and offline-state awareness
  • Light & dark themes with responsive layouts for smaller screens

Native Jules is built to feel like a first-class native app, not just a wrapper around the API.

Tech Stack

Layer Technology
Framework Flutter
State management Provider
Local persistence Hive
HTTP client http
Desktop shell (macOS) window_manager
Supported platforms macOS, iOS, Android, Web, Windows, Linux

The project is organized into jules_flutter/ for the Flutter app and scripts/ for platform-specific launch helpers.

Getting Started

  1. Clone the repo
   git clone https://github.com/CkCreative/jules.git
   cd jules

Enter fullscreen mode Exit fullscreen mode

  1. Install dependencies
   cd jules_flutter
   flutter pub get
   cd ..

Enter fullscreen mode Exit fullscreen mode

  1. Launch the app
   npm run dev   # runs the macOS app by default

Enter fullscreen mode Exit fullscreen mode

  1. On first launch, add an account name and your Jules API key (you'll need access to https://jules.googleapis.com/v1alpha).

The Flutter project also targets iOS, Android, web, Windows, and Linux. See the Available Commands table for all platform-specific commands.

Screenshots

Light mode Dark mode
light mode dark mode

(Click the images to view them full size — they give a quick sense of the UI.)

What's Next?

Native Jules is still young — the current flow is text-prompt based (attachments aren't supported by the Jules API yet), and new sessions are created against repositories returned by the Jules sources API.

I'd love to hear what the community thinks! Ideas, bug reports, and contributions are all welcome.

🔗 Links


If you find Native Jules useful, a ⭐ on GitHub means a lot — and feel free to drop a comment below with any feedback or questions. Happy coding! 🚀


Jules

A polished Flutter client for the Jules API, built for reviewing sessions, chatting with the agent, and inspecting generated code changes in a native app experience.

Screenshots

Jules in light mode Jules in dark mode

Click either screenshot to view it full size

Highlights

  • Multi-account API key support with fast account switching
  • Session history grouped by repository with built-in search
  • Chat timeline for prompts, plans, progress updates, and agent responses
  • Resizable diff panel for reviewing code changes produced by Jules
  • Local caching with background sync and offline-state awareness
  • Light and dark themes with responsive layouts for smaller screens

Tech Stack

  • Flutter
  • Provider for state management
  • Hive for local persistence
  • http for Jules API requests
  • window_manager for a desktop-style macOS shell

Requirements

  • Flutter SDK
  • Xcode for macOS and iOS builds
  • Android Studio and Android SDK for Android builds
  • A Jules API key with access to https://jules.googleapis.com/v1alpha

Getting Started

From the repository root:

cd jules_flutter
flutter pub get
cd

Enter fullscreen mode Exit fullscreen mode