fix(browser-use): load AppKit framework before hiding macOS dock icon#1
Closed
fix(browser-use): load AppKit framework before hiding macOS dock icon#1
Conversation
The previous dock icon fix was silently failing because NSApplication class isn't available in a bare Python process — AppKit must be loaded first. Added ctypes.cdll.LoadLibrary for AppKit.framework before objc_getClass(b"NSApplication"). - Root cause: objc_getClass returns NULL without AppKit loaded - objc_msgSend(NULL, ...) is a no-op, so the fix silently did nothing - Bump to v1.0.2
erudenko
added a commit
that referenced
this pull request
Mar 23, 2026
…display - Rename /gtd:process → /gtd:clarify (GTD step 2) - Rename /gtd:work → /gtd:engage (GTD step 5) - Add "reference" list type for non-actionable items worth keeping - Replace random hex IDs (gtd-a1b2c3) with sequential numbers (#1, #2, #3) - Add gtd-display.ts Bun tool for all terminal output (replaces inline echo -e) - Boxed output with unicode borders, background-colored title bars, overflow truncation - Workflow now matches canonical GTD: Capture → Clarify → Organize → Reflect → Engage - Store schema v2.0 with nextId counter for atomic ID allocation Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 tasks
erudenko
added a commit
that referenced
this pull request
Mar 31, 2026
…n version sync Three root causes for persistent Test Plugins CI failures: 1. pnpm workspace interference: tools/pnpm-workspace.yaml only lists 'skills-api'. pnpm traverses up from tools/claudeup-core and finds this config, skipping claudeup-core's own deps. Fix: --ignore-workspace. 2. pnpm-lock.yaml in tools/claudeup-core is missing vitest and @vitest/coverage-v8 entirely (they are in package.json devDependencies but were never committed to the lockfile). With --ignore-workspace pnpm reads the local frozen lockfile and never installs vitest → 'sh: vitest: not found'. Fix: --no-frozen-lockfile so pnpm installs from package.json directly. 3. kanban version mismatch: plugins/kanban/plugin.json is 1.1.0 but .claude-plugin/marketplace.json still listed 1.0.0. The marketplace-sync integration test catches this. Fix: bump to 1.1.0 in marketplace.json. Supersedes PR #6 (which fixed #1 and #3 but not #2)."
3 tasks
Member
Author
|
test Generated by Claude Code |
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
NSApplicationclass isn't available in a bare Python process because AppKit framework isn't loadedctypes.cdll.LoadLibrary("/System/Library/Frameworks/AppKit.framework/AppKit")beforeobjc_getClass(b"NSApplication")objc_getClassreturned NULL →objc_msgSend(NULL, ...)was a no-op → the entire fix chain did nothingTest plan
NSApplicationclass resolves to non-None after loading AppKitsetActivationPolicy:returns policy=2 (Prohibited)