Releases: code-yeongyu/oh-my-opencode
v1.1.3
v1.1.2
New Features
🔍 grep.app MCP Integration (shout out to @huynguyen03dev)
- Add grep_app builtin MCP for ultra-fast GitHub code search
- Search real-world code examples from millions of public repositories
- Support regex patterns, language filters, and repository filters
Enables librarian agent to find actual implementation examples from open source.
📚 Enhanced Librarian Agent
- Librarian now leverages grep.app for code example discovery
- Find production-ready patterns from real GitHub repositories
- Better documentation lookup with actual usage examples
🛠️ Schema & Config
- Add multimodal-looker to Zod config schema (#36)
- Fix incorrect model name reference
Thank you to 1 community contributor:
- @huynguyen03dev:
- fix: add multimodal-looker to Zod config schema (#36)
v1.1.1
v1.1.0
New Features
🔍 look_at Tool & multimodal-looker Agent
- Add
look_attool for analyzing media files (PDFs, images, diagrams) - Add
multimodal-lookeragent using Gemini 2.5 Flash model - Analyze visual content in separate context window, saving main conversation tokens
Inspired by Sourcegraph Ampcode's look_at tool design.
Usage
look_at({
file_path: "/path/to/diagram.png",
goal: "Describe the architecture components"
})Supported File Types
- PDF documents
- Images (PNG, JPG)
- Screenshots
- Architecture diagrams
- Charts/Graphs
v1.0.2
v1.0.1
- 55bc8f0 refactor(ultrawork-mode): use history injection instead of direct message modification
- 0ac4d22 feat(think-mode): inject thinking config with maxTokens for extended thinking
- 19b3690 docs: add Ultrawork Mode hook documentation
- 564c8ae fix: use
lstatSyncinstead ofstatSyncfor symlink detection (#32)
v1.0.0
v1.0.0
The first stable release of oh-my-opencode.
Every feature I envisioned is now implemented. Every integration I dreamed of is now real. After extensive testing and stabilization, I can finally say with confidence: this is production-ready.
This plugin is your secret weapon. While it is open source, those who install it will be one step ahead of the developer sitting next to them. The multi-model orchestration, the LSP tools, the AST-Grep search, the background task system, the automatic context injection - all working together to amplify your capabilities beyond what any single-model agent can achieve.
What's New Since v0.4.3
Features
- Ultrawork Mode Hook: Trigger "ultrawork" or "ulw" to activate maximum agent orchestration. Forces parallel exploration, strict TODO tracking, and full utilization of all specialized agents via background tasks.
- Disabled Hooks Configuration: Selectively disable any built-in hook via
disabled_hooksconfig option. - Background Task Improvements:
- Show original prompt and last message in running task status for better visibility
- Send notifications to parent session instead of main session for correct targeting
- GCP Permission Error Retry: Exponential backoff for Google Cloud permission errors in Antigravity auth - no more manual retries.
Bug Fixes
- Fixed session-notification race conditions and memory issues
- Improved background-task notification targeting
Documentation
- Updated LLM agent guide with Google Auth recommendation
- Added
disabled_hooksconfiguration section
Contributors
Thank you to everyone who contributed to this release:
v0.4.4
Features
- Configurable hooks: Add
disabled_hooksconfig option for selectively disabling hooks (#28) - Background task status: Show original prompt and last message when checking running task status
- GCP retry logic: Add exponential backoff retry for Antigravity GCP permission errors
Fixes
- Session notification: Fix race condition and memory issues in session-notification hook
Documentation
- Update README with Google Auth recommendations and disabled_hooks configuration section
v0.4.3
Release Notes: v0.4.3
Since: v0.4.0 (2025-12-12)
🔧 Improvements
Google Auth Integration (Breaking Change from v0.4.0)
Before (v0.4.0):
{ "plugin": ["oh-my-opencode", "oh-my-opencode/google-auth"] }After (v0.4.2+):
// opencode.json
{ "plugin": ["oh-my-opencode"] }
// oh-my-opencode.json
{ "google_auth": true }The Google Antigravity OAuth plugin is now integrated into the main package. Enable it via google_auth: true in your oh-my-opencode.json configuration.
This change resolves #30 - OpenCode's plugin loader was incorrectly treating oh-my-opencode/google-auth as a separate npm package.
📚 Documentation
- Add Google Auth section to Configuration in README.md / README.ko.md
- Update JSON schema with
google_authandlspoptions for IDE autocomplete