Android CLI and Skills for AI Agent Development Workflows

Google introduced Android CLI and Android Skills, tools designed to improve AI agent workflows for Android development outside of Android Studio.
Android CLI Features
The revitalized Android CLI serves as a lightweight, programmatic interface for terminal-based Android development. Key commands include:
android sdk install- downloads specific SDK components for lean environmentsandroid create- generates new projects from official templates with recommended architectureandroid emulator- creates and manages virtual devicesandroid run- deploys apps to devicesandroid update- ensures latest capabilities are available
Internal experiments showed Android CLI reduced LLM token usage by more than 70% and completed tasks 3x faster compared to using standard toolsets alone.
Android Skills Repository
The Android Skills GitHub repository provides modular, markdown-based instruction sets (SKILL.md files) that trigger automatically when prompts match skill metadata. Initial skills include:
- Navigation 3 setup and migration
- Implementing edge-to-edge support
- AGP 9 and XML-to-Compose migrations
- R8 config analysis
Skills can be browsed and set up using the android skills command when using Android CLI.
📖 Read the full source: HN AI Agents
👀 See Also

Maestro v1.5.0 adds Claude Code support for multi-agent orchestration
Maestro v1.5.0, an open-source multi-agent orchestration platform, now runs as a native plugin on Claude Code in addition to Gemini CLI. The update includes deeper design planning, a 42-step orchestration backbone, agent capability enforcement, and security hardening.

Crag: Open-source tool generates unified AI agent rules from project configs
Crag is an open-source compiler that analyzes project configurations and generates a single governance.md file, then compiles it into multiple AI agent rule files to prevent configuration drift across tools like Claude Code, Cursor, and Copilot.

Claude Code gains TLA+ model checking via tla-mcp MCP server
tla-mcp is a new MCP server that lets Claude Code call the TLA+ model checker tla-rs as a first-class tool — validate specs, run bounded checks with counterexample traces, and replay scenarios from the chat.

PreToolUse Hook Fixes Claude Code Image Crash Problem
A developer created a PreToolUse hook that intercepts Claude Code's Read calls on images, converts them safely, and proxies them through a Haiku subprocess to prevent API Error 400 crashes from problematic images.