Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/duckduckgo/apple-browsers/macos-system-integrationgit clone --depth 1 https://github.com/duckduckgo/apple-browsersWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/rules/duckduckgo/apple-browsers/macos-system-integration)<a href="https://agentmods.dev/rules/duckduckgo/apple-browsers/macos-system-integration"><img src="https://agentmods.dev/badge/rules/duckduckgo/apple-browsers/macos-system-integration.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02537 |
| Opus 5 | $0.00000 | $0.01269 |
| Sonnet 5 | $0.00000 | $0.00507 |
| Haiku 4.5 | $0.00000 | $0.00254 |
Grade A, and why
macos-system-integration scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 420 lines — stays where its author put it; the contents beside it link to each section on GitHub.
macOS System Integration Patterns
Background Agents and Services
Use proper service management for background agents:
// ✅ CORRECT - Background service management
final class BackgroundServiceManager {
private let agentIdentifier = "com.duckduckgo.agent"
private let extensionIdentifier = "com.duckduckgo.extension"
func registerBackgroundAgent() throws {
let service = SMAppService.agent(plistName: "BackgroundAgent.plist")
do {
try service.register()
print("Background agent registered successfully")
} catch {
print("Failed to register background agent: \(error)")
throw error
}
}
func unregisterBackgroundAgent() throws {
let service = SMAppService.agent(plistName: "BackgroundAgent.plist")
do {
try service.unregister()
print("Background agent unregistered successfully")
} catch {
print("Failed to unregister background agent: \(error)")
throw error
}
}
func checkServiceStatus() -> SMAppService.Status {
let service = SMAppService.agent(plistName: "BackgroundAgent.plist")
return service.status
}
}
// ❌ INCORRECT - Direct background processing in main app
final class FeatureManager {
func startBackgroundWork() {
// Don't run continuous background work in main app
DispatchQueue.global().async {
while true {
// This will drain battery and violate sandboxing
self.performWork()
Thread.sleep(forTimeInterval: 60)
}
}
}
}
System Extensions
Use proper system extension lifecycle management:
// ✅ CORRECT - System extension management
import SystemExtensions
final class SystemExtensionManager: NSObject {
private let extensionIdentifier = "com.duckduckgo.network-extension"
func installExtension() {
let request = OSSystemExtensionRequest.activationRequest(
forExtensionWithIdentifier: extensionIdentifier,
queue: .main
)
request.delegate = self
OSSystemExtensionManager.shared.submitRequest(request)
}
func uninstallExtension() {
let request = OSSystemExtensionRequest.deactivationRequest(
forExtensionWithIdentifier: extensionIdentifier,
queue: .main
)
request.delegate = self
OSSystemExtensionManager.shared.submitRequest(request)
}
func checkExtensionStatus() async -> OSSystemExtensionRequest.Result? {
// Check if extension is already installed
return await withCheckedContinuation { continuation in
let request = OSSystemExtensionRequest.propertiesRequest(
forExtensionWithIdentifier: extensionIdentifier,
queue: .main
)
// Handle the properties request to determine status
// Implementation details...
continuation.resume(returning: nil)
}
}
}
// MARK: - OSSystemExtensionRequestDelegate
extension SystemExtensionManager: OSSystemExtensionRequestDelegate {
func request(
_ request: OSSystemExtensionRequest,
actionForReplacingExtension existing: OSSystemExtensionProperties,
withExtension extension: OSSystemExtensionProperties
) -> OSSystemExtensionRequest.ReplacementAction {
return .replace
}
func requestNeedsUserApproval(_ request: OSSystemExtensionRequest) {
print("System extension requires user approval")
// Show UI to guide user through approval process
showUserApprovalGuidance()
}
func request(
_ request: OSSystemExtensionRequest,
didFinishWithResult result: OSSystemExtensionRequest.Result
) {
switch result {
case .completed:
print("System extension request completed successfully")
handleExtensionActivated()
case .willCompleteAfterReboot:
print("System extension will be activated after reboot")
showRebootRequiredMessage()
@unknown default:
print("Unknown system extension result: \(result)")
}
}
func request(_ request: OSSystemExtensionRequest, didFailWithError error: Error) {
print("System extension request failed: \(error)")
handleExtensionError(error)
}
private func showUserApprovalGuidance() {
// Show UI to guide user through System Preferences
}
private func handleExtensionActivated() {
// Update UI to reflect extension is active
}
private func showRebootRequiredMessage() {
// Show UI indicating reboot is required
}
private func handleExtensionError(_ error: Error) {
// Handle extension installation errors
}
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 3d ago First seen · 420 lines · 0 tokens per session scan A e59524dce18d
macos-system-integration is a cursor rule published in the GitHub repository duckduckgo/apple-browsers (251 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,537 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.
Other cursor rules, from other repositories
release-policy
Release, versioning, and signing policy for setmac.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.
control-plane-descriptors
Control plane descriptor and instance implementation patterns.