Skip to content

feat(skills-next): add ruby SDK references#252

Open
evanpurkhiser wants to merge 1 commit into
mainfrom
evanpurkhiser/feat-skills-next-add-ruby-sdk-references
Open

feat(skills-next): add ruby SDK references#252
evanpurkhiser wants to merge 1 commit into
mainfrom
evanpurkhiser/feat-skills-next-add-ruby-sdk-references

Conversation

@evanpurkhiser

Copy link
Copy Markdown
Member

Direct LLM port of the existing ruby SDK skill into the skills-next per-SDK reference layout under skills-next/references/sdks/ruby/. This content has NOT been reviewed at all — it is a machine-generated port of the existing SDK skill, and every file should be treated as unverified.

@evanpurkhiser evanpurkhiser force-pushed the evanpurkhiser/feat-skills-next-add-ruby-sdk-references branch from 6afca6f to 180bd13 Compare July 2, 2026 21:14

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit 180bd13. Configure here.

| `Honeybadger.context { \|c\| c[:key] = val }` | `Sentry.configure_scope { \|s\| s.set_context("app", {key: val}) }` |
| `Honeybadger.context.clear!` | `Sentry.get_current_scope.clear` |
| `Honeybadger.add_breadcrumb(msg, metadata: h)` | `Sentry.add_breadcrumb(Sentry::Breadcrumb.new(message: msg, data: h))` |
| `Honeybadger.exception_filter { \|n\| n.halt! if … }` | `config.before_send = lambda { \|e, _h\| nil if … }` |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Honeybadger filter drops all events

High Severity

The mapped before_send example uses lambda { |e, _h| nil if … }. In Ruby, when the condition is false the block still returns nil, so Sentry drops every error event—not only the filtered ones.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 180bd13. Configure here.

@dingsdax dingsdax requested a review from sl0thentr0py July 6, 2026 08:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant