File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Aria ARK — Gemini CLI Context
2+
3+ > ** ARK** = Aria Research Kit — the developer toolset for Project Aria smart glasses.
4+
5+ ## Tool Mapping
6+
7+ Skills use Claude Code tool names. When you encounter these in a skill, use your Gemini CLI equivalent:
8+
9+ | Skill references | Gemini CLI equivalent |
10+ | -----------------| ----------------------|
11+ | ` Read ` (file reading) | ` read_file ` |
12+ | ` Write ` (file creation) | ` write_file ` |
13+ | ` Edit ` (file editing) | ` replace ` |
14+ | ` Bash ` (run commands) | ` run_shell_command ` |
15+ | ` Grep ` (search file content) | ` grep_search ` |
16+ | ` Glob ` (search files by name) | ` glob ` |
17+ | ` WebSearch ` | ` google_web_search ` |
18+ | ` WebFetch ` | ` web_fetch ` |
19+
20+ ## Skills
21+
22+ @./projectaria_ark_plugin/skills/projectaria-tools/SKILL.md
23+ @./projectaria_ark_plugin/skills/client-sdk/SKILL.md
24+ @./projectaria_ark_plugin/skills/mps/SKILL.md
25+ @./projectaria_ark_plugin/skills/vrs-health-check/SKILL.md
26+ @./projectaria_ark_plugin/skills/pilot-dataset/SKILL.md
27+ @./projectaria_ark_plugin/skills/web-app-creator/SKILL.md
Original file line number Diff line number Diff line change @@ -39,6 +39,17 @@ codex plugin marketplace add https://github.com/facebookresearch/projectaria-plu
3939Then open Codex chat, run ` /plugin ` , choose the Project Aria Plugins
4040marketplace, and install any plugin from it, e.g.` aria-ark ` .
4141
42+ ### Gemini CLI
43+
44+ Install as a Gemini CLI extension:
45+
46+ ``` bash
47+ gemini extensions install https://github.com/facebookresearch/projectaria-plugins.git
48+ ```
49+
50+ The extension loads the ` GEMINI.md ` context file at session start, which
51+ includes a tool mapping table and imports all ARK skill content.
52+
4253## Plugins
4354
4455| Plugin | Description |
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " aria-ark" ,
3+ "description" : " Aria Research Kit (ARK) skills for building applications with Project Aria smart glasses" ,
4+ "version" : " 1.0.0" ,
5+ "contextFileName" : " GEMINI.md"
6+ }
Original file line number Diff line number Diff line change 22
33> ** ARK** = Aria Research Kit — the developer toolset for Project Aria smart glasses.
44
5- ## Data Processing (projectaria-tools)
6-
7- TODO
8-
9- ## Real-Time Webapp Development (Aria Flow)
10-
11- TODO
12-
13- ## Quick Reference
14-
15- TODO
16-
17- @import projectaria-ark-plugin/skills/aria-research-kit/SKILL.md
18- @import projectaria-ark-plugin/skills/aria-flow/SKILL.md
5+ ## Tool Mapping
6+
7+ Skills use Claude Code tool names. When you encounter these in a skill, use your Gemini CLI equivalent:
8+
9+ | Skill references | Gemini CLI equivalent |
10+ | -----------------| ----------------------|
11+ | ` Read ` (file reading) | ` read_file ` |
12+ | ` Write ` (file creation) | ` write_file ` |
13+ | ` Edit ` (file editing) | ` replace ` |
14+ | ` Bash ` (run commands) | ` run_shell_command ` |
15+ | ` Grep ` (search file content) | ` grep_search ` |
16+ | ` Glob ` (search files by name) | ` glob ` |
17+ | ` WebSearch ` | ` google_web_search ` |
18+ | ` WebFetch ` | ` web_fetch ` |
19+
20+ ## Skills
21+
22+ @./skills/projectaria-tools/SKILL.md
23+ @./skills/client-sdk/SKILL.md
24+ @./skills/mps/SKILL.md
25+ @./skills/vrs-health-check/SKILL.md
26+ @./skills/pilot-dataset/SKILL.md
27+ @./skills/web-app-creator/SKILL.md
You can’t perform that action at this time.
0 commit comments