-
Notifications
You must be signed in to change notification settings - Fork 217
Update README #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README #16
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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>] | ||
| ``` | ||
|
|
||
| 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`. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The phrasing 'Gemini and Antigravity' is ambiguous when paired with the single path |
||
|
|
||
| **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 | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The placeholder
<agent-name>should be pluralized to<agent-names>to indicate that the--agentoption accepts a comma-separated list of multiple agents, as described in the options section.