Skip to content

v0.1.0

Choose a tag to compare

@github-actions github-actions released this 07 Jun 11:32
1f06927

最初の公開リリース。Resonite を AI エージェントの実行環境として使うための双方向 IPC
ブリッジ (C# Mod ResoniteIO ↔ Python パッケージ resoio、gRPC over Unix Domain
Socket) の基盤一式。

Added

  • IPC 基盤: gRPC over Unix Domain Socket による双方向ブリッジ。本番 IPC は
    $HOME/.resonite-io/、debug bridge は $HOME/.resonite-io-debug/ の UDS を使用
  • C# Core/Mod 二層アーキテクチャ: Resonite 非依存のピュアライブラリ
    ResoniteIO.Core (gRPC server / Service / 各モダリティのドメインロジック) と、
    engine bridging のみを担う薄い BepInEx adapter ResoniteIO (BepisLoader) に分離。
    依存方向は Core ← Mod
  • モダリティ群 (各モダリティは独立した非同期ストリーム): Connection (Ping) /
    Camera (server-streaming RGB フレーム) / Speaker (server-streaming 音声、
    Resonite → Python) / Microphone (client-streaming 音声、Python → Resonite) /
    Locomotion (client-streaming) / Manipulation (Grab/Release unary) /
    Display / World / ContextMenu / Dash / Inventory /
    Cursor (desktop カーソルを正規化座標で set/get)
  • Python パッケージ resoio: モダリティ単位の async クライアント
    (ConnectionClient / CameraClient / SpeakerClient / MicrophoneClient /
    LocomotionClient / ManipulationClient / DisplayClient / WorldClient /
    ContextMenuClient / DashClient / InventoryClient / CursorClient)。
    betterproto2 + grpclib ベース、pyright strict 準拠
  • CLI resoio: action 名 flat command (ping / record / mic /
    locomotion / manipulate / display / world / context-menu / dash /
    inventory / cursor)。record--video / --audio フィルタで
    Camera/Speaker を mp4/mkv 取得、mic は Microphone を Resonite に流す
  • proto 定義: proto/resonite_io/v1/ を single source of truth とし、Python 側
    生成物を commit、C# 側は csproj が build-time 生成
  • 開発環境: debian:bookworm-slim ベースの devcontainer
    (compose.yml / .devcontainer/)、justfile タスクランナー、container ↔ host
    Resonite bridge スクリプト (scripts/host_agent.py / scripts/resonite_cli.py)
  • CI / リリース / ドキュメント: GitHub Actions の品質ゲート
    (pre-commit / test / type-check / dotnet / proto-check)、v* tag 駆動で
    Thunderstore mod + PyPI パッケージを同時公開する publish.yml、mike による
    バージョン付きドキュメントサイト (MkDocs Material)