LerianStudio

Ring For Opencode — Development skill for Claude Code

Development community

Ring engineering skills library ported to OpenCode.

How to install Ring For Opencode

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

What Ring For Opencode does

Ring engineering skills library ported to OpenCode.

Alternatives in Development

  • Gemini CLI Foundations — This repository is a comprehensive skills library for Gemini CLI - reusable, production-ready skill packages t 5.3k ★
  • Nexting — Remote control for Claude Code, Codex, Grok, and Cursor on Mac or PC 1.3k ★
  • Worktree — Create Worktree with Library 404 ★

README

Ring for OpenCode

A comprehensive skills library enforcing proven software engineering practices.

Quick Start

# Clone and install globally
git clone https://github.com/LerianStudio/ring-for-opencode.git
cd ring-for-opencode
./installer.sh

# Or install per-project (copies assets/ to your project's .opencode/)
cp -r assets/ /your/project/.opencode/

# Optional: add project Ring config
# Create `.opencode/ring.jsonc` or `.ring/config.jsonc` in your project root

What Ring Provides

Component Count Location
Agents 18 assets/agent/
Skills 36 assets/skill/
Commands 18 assets/command/
Plugin 1 (unified) plugin/

Architecture

Ring uses a unified plugin architecture with four core components:

  • Unified Plugin: Single entry point (RingUnifiedPlugin) that injects all components into OpenCode
  • Hook System: Event-driven middleware for session lifecycle (session start, context injection, task completion)
  • Config Injection: Automatically loads agents, skills, and commands from .opencode/ directories

Core Skills

Skill Description
ring:test-driven-development RED-GREEN-REFACTOR methodology
ring:requesting-code-review Parallel 6-reviewer system
ring:executing-plans Batch task execution with checkpoints
ring:brainstorming Socratic design refinement
ring:exploring-codebase Deep codebase analysis
ring:writing-plans Implementation planning with context
ring:handoff-tracking Session state preservation
ring:linting-codebase Parallel lint fixing

Available Agents

Reviewers

Agent Focus
@ring:code-reviewer Code quality, architecture, design patterns
@ring:business-logic-reviewer Business rules, domain correctness
@ring:security-reviewer Security vulnerabilities, OWASP Top 10
@ring:test-reviewer Test quality,