Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,31 @@ Android skills follow the [open-standard agent skills](https://agentskills.io/ho
files (SKILL.md) that provide a technical specification of a task, and ground LLMs with information
on specialized domains and workflows.

To use Android skills, check
your agent's documentation.
To learn more, read the official documentation:

- [Android skills](https://developer.android.com/tools/agents/android-skills)
- [Android CLI](https://developer.android.com/tools/agents/android-cli)
- [Android Studio](https://developer.android.com/studio/gemini/skills)

### Install Android skills

Use Android CLI to install Android skills to directories for all detected agents:

```
android skills add [--all] [--agent=<agent-name>] [--skill=<skill-name>]
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The placeholder <agent-name> should be pluralized to <agent-names> to indicate that the --agent option accepts a comma-separated list of multiple agents, as described in the options section.

Suggested change
android skills add [--all] [--agent=<agent-name>] [--skill=<skill-name>]
android skills add [--all] [--agent=<agent-names>] [--skill=<skill-name>]

```

If you don't have any existing agent directories and don't specify particular agents, the skills
will be installed for Gemini and Antigravity at `~/.gemini/antigravity/skills`.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The phrasing 'Gemini and Antigravity' is ambiguous when paired with the single path ~/.gemini/antigravity/skills. It is unclear if these are two separate agents sharing a directory or a single agent (e.g., 'Gemini Antigravity'). Clarifying this relationship would help users correctly locate their installed skills.


**Options:**

- `--all` - Add all Android skills. If omitted (and `--skill` isn't specified), only the
`android-cli` skill will be installed.
- `--agent` - A comma-separated list of agents to install the skill for. If omitted, the skill will
be installed for all detected agents.
- `--skill` - Specific skill that you want to install. If omitted (and `--all` isn't specified),
only the `android-cli` skill will be installed.

## Disclaimer

Expand Down
Loading