Coding agents
bedrock ships a skill that teaches coding agents, Claude Code and similar tools, how to build and ship your Android app correctly. Install it once, then just ask.
Install the skill
Make sure the CLI is installed first. Then download the skill file into your agent's skills folder:
curl -fsSL https://pub-23076c351b4c45618532bf7f9c32c316.r2.dev/skill/SKILL.md \
-o ~/.claude/skills/bedrock/SKILL.mdThat installs it for Claude Code, available in every project on your machine. To scope it to a single project instead, save it to .claude/skills/bedrock/SKILL.md inside that project. It's plain markdown, so it works the same way with other agents that support project-level skills or instructions files.
What to ask for
Once it's installed, just describe what you want:
- "Build a release APK for this app."
- "Ship a signed AAB for the Play Store."
- "Set the API URL for release builds to https://api.example.com."
- "Did my last build succeed? What went wrong if not?"
Your agent will run the right bedrock commands, watch the build, and report back. No need to know the CLI yourself.
What it won't do for you
Two steps stay in your hands, on purpose: both involve a browser or an interactive prompt an agent can't complete.
- Signing in. The first time, your agent will ask you to run
bedrock loginyourself. - Linking a new project. The first time in a new project directory, you'll be asked to run
bedrock inityourself. It's a picker for your organization, project, and app.
After either one, your agent picks up right where it left off.