npx claudepluginhub chkim-su/orchestratorOracle-powered autonomous development pipelines with Gemini-Claude orchestration
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
A Claude Code plugin providing autonomous development pipelines powered by Oracle CLI (Gemini-Claude orchestration).
| Command | Description |
|---|---|
/fullauto:auto | Fully autonomous pipeline - Claude orchestrates with dynamic state-based decisions |
/fullauto:edit | Code modification pipeline with Oracle's Gemini-Claude orchestration |
/fullauto:explore | Web information gathering pipeline - search and fetch external resources |
/fullauto:plan | Implementation planning pipeline - design architecture before coding |
/fullauto:research | Deep reflection pipeline - strategic analysis and decision making |
/fullauto:review | Codebase analysis pipeline - read-only exploration and understanding |
/plugin marketplace add chkim-su/orchestrator
/plugin install fullauto@orchestrator
Run the setup script:
~/.claude/plugins/cache/orchestrator/fullauto/*/scripts/setup-oracle.sh
Or manually:
# Clone Oracle repository
git clone https://github.com/chkim-su/claude-oracle.git ~/projects/personal_project/claude-oracle
# Create conda environment
conda create -n oracle python=3.12 -y
conda activate oracle
pip install -r ~/projects/personal_project/claude-oracle/requirements.txt
# Set environment variable
export ORACLE_HOME="$HOME/projects/personal_project/claude-oracle"
/fullauto:auto implement user authentication with OAuth
Claude will autonomously:
# Analyze codebase
/fullauto:review how does authentication work
# Research external information
/fullauto:explore OAuth best practices 2025
# Deep analysis and decision making
/fullauto:research JWT vs Session authentication
# Create implementation plan
/fullauto:plan implement OAuth authentication
# Execute code changes
/fullauto:edit add login endpoint
┌─────────────────────────────────────────────────────────────────┐
│ Claude Code │
│ (Orchestrator / Executor) │
├─────────────────────────────────────────────────────────────────┤
│ │
│ /fullauto:auto ──┬── /fullauto:review (codebase analysis) │
│ ├── /fullauto:explore (web research) │
│ ├── /fullauto:research (deep thinking) │
│ ├── /fullauto:plan (architecture) │
│ └── /fullauto:edit (code modification) │
│ │
└─────────────────────────────────────────────────────────────────┘
↑↓
┌─────────────────────────────────────────────────────────────────┐
│ Oracle CLI │
│ (Gemini Integration Layer) │
├─────────────────────────────────────────────────────────────────┤
│ - oracle run : Start coding session │
│ - oracle review : Code analysis via Gemini │
│ - oracle explore : Web research via Gemini │
│ - oracle research : Deep reflection via Codex │
│ - oracle rag : Semantic code search (RAG) │
└─────────────────────────────────────────────────────────────────┘
| Variable | Default | Description |
|---|---|---|
ORACLE_HOME | ~/projects/personal_project/claude-oracle | Oracle CLI installation path |
Add to your project's .claude/settings.json for auto-installation:
{
"extraKnownMarketplaces": {
"orchestrator": {
"source": {
"source": "github",
"repo": "chkim-su/orchestrator"
}
}
},
"enabledPlugins": {
"fullauto@orchestrator": true
}
}
MIT
Chanho Kim (@chkim-su)