moabualruz

Rice Aise — AI skill for Claude Code

AI community

raise — Cross-platform CLI tool for switching AI agent configuration profiles.

How to install Rice Aise

This entry records only its repository, not the path inside it, so there is no exact command to give. Open moabualruz/rice-aise and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Rice Aise does

raise — Cross-platform CLI tool for switching AI agent configuration profiles. Supports 17 AI coding tools via atomic symlink swapping with credential preservation.

Alternatives in AI

README

riceAise

raise

[![License: CC BY-NC-SA 4.0](https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-sa/4.0/) [![Go](https://img.shields.io/badge/Go-1.22+-00ADD8?logo=go&logoColor=white)](https://go.dev) [![CI](https://github.com/moabualruz/rice-aise/actions/workflows/ci.yml/badge.svg)](https://github.com/moabualruz/rice-aise/actions)

**Switch between AI agent configurations in one command.**

*Full setup with plugins and hooks, vanilla clean slate, or any custom profile — instantly, for 17 AI coding tools at once.*

[Quickstart](#quickstart) · [Commands](#commands) · [Supported Tools](#supported-tools) · [How It Works](#how-it-works) · [Contributing](CONTRIBUTING.md)


The Problem

You have Claude Code with 20 plugins, Codex with custom agents, Gemini with MCP servers — and sometimes you just want a clean slate. Or you want to test a new setup without losing your current one. Or you have a "work" config and a "personal" config.

Today, switching means manually moving dozens of directories and hoping you remember where everything was.

**raise** solves this with profile-based config switching via symlinks — atomic, instant, and credential-preserving.

~/.claude/ ──symlink──> ~/.raise/profiles/full-setup/claude/
~/.codex/  ──symlink──> ~/.raise/profiles/full-setup/codex/
~/.gemini/ ──symlink──> ~/.raise/profiles/full-setup/gemini/
...

$ raise use vanilla    # instant switch, credentials preserved

~/.claude/ ──symlink──> ~/.raise/profiles/vanilla/claude/
~/.codex/  ──symlink──> ~/.raise/profiles/vanilla/codex/
~/.gemini/ ──symlink──> ~/.raise/profiles/vanilla/gemini/

Quickstart

Install

# From source
git clone https://github.com/moabualruz/rice-aise.git
cd rice-aise
go build -o raise ./cmd/raise
sudo mv raise /usr/local/bin/

# Or with go install
go install github.com/mkh/rice-aise/cmd/rais