Inaricode banner
kyuna0312 kyuna0312

Inaricode

AI community

Description

InariCode — TypeScript CLI for an AI coding assistant: multi-provider chat (Claude, OpenAI, Kimi, Ollama, …), Rust engine tools, optional YAML config with per-provider keys, inari cursor (Cursor Cloud Agents), and inari providers.

Installation

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

README

INARI CODE 🦊

A modular, terminal-based AI development system integrating tmux, LazyVim, and OpenCode.

Concept

INARI CODE provides a clean developer workflow with:

  • Tmux workspaces - Pre-configured tmux sessions for development, debugging, code review
  • LazyVim integration - AI-powered keymaps for code refactoring and fixes
  • OpenCode AI - Prompt-based code generation, refactoring, and bug fixes

Architecture

inari-code/
├── cli/inari                      # CLI tool
├── core/
│   ├── tmux/                      # Workspace scripts
│   │   ├── dev.sh                 # Development session
│   │   ├── debug.sh               # Debug session
│   │   ├── review.sh             # Code review session
│   │   └── test.sh               # Test session
│   ├── nvim/lua/plugins/         # LazyVim plugins
│   │   └── ai-keymaps.lua        # AI keymaps
│   └── ai/
│       ├── ai.sh                  # AI wrapper
│       └── prompts/               # Prompt templates
├── workflows/                      # YAML workflows
└── docs/
    └── DEVELOPMENT.md             # 6-month plan

Installation

git clone https://github.com/yourrepo/inari-code.git
cd inari-code
chmod +x install.sh
./install.sh

Add to PATH:

echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

Quick Start

inari dev          # Start development workspace
inari status      # Show active sessions
inari help        # Show help

Commands

Command Description
inari dev Start dev workspace (nvim + opencode + npm run dev + test)
inari debug Start debug workspace (logs + terminal + nvim)
inari review Start code review (nvim + git log + opencode)
inari test Start test workspace (npm test + nvim)
inari status Show active sessions
inari config Show/set configuration
inari list List available workflows

Configuration

# Set project directory
in