README (~140 LOC): - Why this gem exists (4 production needs opencode-ruby alone doesn't cover) - Install + quickstart (showing GenerateResponseJob wiring Session + Turn) - 12-constant API table with one-line role descriptions - Instrumentation + error-reporting adapter setup snippets - Position against opencode-ruby and Eric Guo's opencode_client CHANGELOG documents what shipped, runtime deps, and known limitations (apply_patch artifact drop, gem-side behavioral tests TBD, no Rails generator yet). LICENSE was auto-generated by Gitea (MIT, 2026 ajaynomics) and is unchanged.
2.3 KiB
2.3 KiB
Changelog
0.0.1.alpha1 — 2026-05-20
Initial public alpha. Extracted from a production multi-product Rails app (ajent-rails) where these objects shipped under lib/opencode/rails/ before being carved out into a standalone gem.
Includes:
Opencode::Session— AR-coupled, row-level-locked session lifecycle (ensure!,recreate!,abort!)Opencode::Turn— orchestrator covering send → stream → recover → finalize, with CAS-safe message terminal-state transitionsOpencode::Exchange— domain object over a turn's message array; emitsopencode.apply_patch.artifacts_droppedwhen post-write file content is unavailableOpencode::Artifact— value-object (filename + content + content_type + trust metadata), idempotent attachOpencode::MessageArtifacts— ActiveStorage-aware artifact attachment pipeline with transform supportOpencode::Sandbox— disk-backed sandbox reader, returnsArtifactlistOpencode::SandboxFile— single-file value object (pathname → bytes/content-type)Opencode::Transform— base class for content-rewriting transformsOpencode::Impostor— ActiveStorage download/upload round-trip helperOpencode::UploadedFilesPrompt— user-prompt prefix builder listing uploaded files, sandbox-path inverted (injection-based, noOpencode::Permissionsreference)Opencode::ToolDisplay— view-model for tool-call hashes (Turbo Stream-friendly)Opencode::ErrorReporter— pluggable adapter mirroring theOpencode::Instrumentationpattern
Runtime dependencies:
opencode-ruby ~> 0.0.1.alpha1(wire client + Reply state machine)activerecord >= 7.1, < 9.0activestorage >= 7.1, < 9.0activesupport >= 7.1, < 9.0
Known limitations (alpha):
- Apply-patch tool's post-write file content is not extracted (wire-format limitation in OpenCode v1.15+); affected files surface via the
opencode.apply_patch.artifacts_droppedinstrumentation event. Future work: optional sandbox-read fallback path. - Smoke tests only inside the gem (14 tests). Behavioral coverage lives in the host app that originally produced this code (
ajent-rails'stest/lib/opencode/rails/). Standalone gem-side test suite using Combustion is open work. - No generator (
rails g opencode:install) yet. - No Rails Engine integration —
require "opencode-rails"is sufficient.