Quick Start
Create a Workspace
- Go to Settings → Extension Management → Workspace to open the workspace management page.
- Tap the plus button in the bottom-right corner to create a new workspace and enter a name.
- Tap the newly created workspace card to enter its management page, then tap Install Rootfs to install the system files.
Workspace names must be in English.
Manage and Configure
On the workspace management page, you can:
- Configure whether tools provided by the workspace require user approval before execution
- Tap the Files tab to manage workspace files, including importing and exporting
- Tap the icon in the top-right corner to open the terminal
Glossary
| Term | Description |
|---|---|
| Workspace | An isolated Linux environment provided by Rikka for AI. Each workspace runs independently with its own filesystem and packages. |
| Terminal | A built-in command-line interface within the workspace where you can run Linux commands to manage files, install software, or debug issues. |
| Rootfs | Short for Root Filesystem — the base system files required for a workspace to run. Installing Rootfs is like installing an operating system for the workspace. |
Installing Common Packages
Workspaces use theapt package manager by default. You can install packages manually via the terminal, or let the AI install what it needs during a task.
- Essential Tools
- Python
- Node.js (nvm)
| Package | Purpose |
|---|---|
curl | Send HTTP requests and download files |
unzip / zip | Extract and create ZIP archives |
git | Version control and repository cloning |
jq | Parse and process JSON data |
File Import & Export
You can manage workspace files in two ways:- In-App Management
- System File Manager
Open the workspace management page and tap the Files menu button at the bottom to switch to the file management view. From here you can:
- Import files into the workspace
- Export files from the workspace
- Share files directly to other apps
Use Cases
Here are some example use cases for reference.Clone a Repository and Edit Files
With a workspace bound, you can ask the AI to clone a Git repository and edit its files. For example, send a message like:Clone https://github.com/user/repo and translate the README.md into ChineseThe AI will perform the following steps in the workspace:
- Install
git(if not already installed) - Clone the target repository into the workspace
- Read the contents of
README.md - Translate the content into Chinese and write it back to the file
Create a Presentation
- Go to Extension Management → Agent Skills and install the pptx skill.
- In the chat page, tap the plus button, go to extension management, and enable the skill.
- Send your request — for example, ask the AI to research a topic and create a presentation.
- The AI will progressively gather information and use the Python / Node.js environment in the workspace to generate the PPT file.
- Once complete, go to the workspace management page to export or share the generated PPT file.