chore(release): v0.1.3#43
Merged
Merged
Conversation
fix(lsp): preserve safe defaults and actionable errors
chore(tools): register csharp write tools and docs
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review infoConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (8)
Walkthroughバージョン 0.1.3 へのリリース更新で、新しい LSP 書き込みツール(rename_symbol、replace_symbol_body、insert_before_symbol、insert_after_symbol、remove_symbol、validate_text_edits)と create_class 機能を導入。ローカル実行と LSP ベースの処理をサポートし、SKILL ドキュメントを更新。 Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant LocalDispatcher as Local Tool<br/>Dispatcher
participant LSPHelper as LSP Write<br/>Helper
participant ProjectMgr as Project Root<br/>Resolver
participant LSPExecutor as LSP<br/>Executor
Client->>LocalDispatcher: call LSP write tool<br/>(rename_symbol, etc.)
LocalDispatcher->>ProjectMgr: resolve_project_root()
ProjectMgr-->>LocalDispatcher: project_root
LocalDispatcher->>LSPHelper: local_lsp_write(tool, params)
LSPHelper->>LSPExecutor: execute_via_lsp_path(tool, params)
alt LSP Available
LSPExecutor-->>LSPHelper: result
else LSP Unavailable
LSPHelper->>LSPExecutor: fallback to direct execution
LSPExecutor-->>LSPHelper: result or error
end
LSPHelper-->>LocalDispatcher: wrapped_result<br/>(backend: "lsp")
LocalDispatcher-->>Client: tool response
Estimated code review effort🎯 4 (Complex) | ⏱️ ~50 minutes Possibly related issues
Poem
✨ Finishing Touches
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
rename_symbol,replace_symbol_body,insert_before_symbol,insert_after_symbol,remove_symbol,validate_text_edits,create_classを tool catalog に登録(101→108)unity-csharp-editスキルに LSP write ツールの使用例を追加Version
v0.1.3
Closing Issues
None
Summary by CodeRabbit
リリースノート v0.1.3
新機能
ドキュメント
その他