Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Implement GDPR-compliant consent management for desktop applications
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-05 | ✗→✓ | ▲ Improved | -9% | 0% |
| case-08 | ✗→✓ | ▲ Improved | -21% | 0% |
| case-11 | ✗→✓ | ▲ Improved | -16% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 2089% | 0% |
| case-14 | ✗→✓ | ▲ Improved | -43% | 0% |
Implement GDPR-compliant consent management for desktop applications with user preferences and data handling.
json{ "type": "object", "properties": { "projectPath": { "type": "string" }, "consentCategories": { "type": "array" }, "framework": { "enum": ["electron", "wpf", "qt", "swiftui"] } }, "required": ["projectPath"] }
javascriptconst consentCategories = { necessary: { title: 'Necessary', description: 'Required for basic functionality', required: true }, analytics: { title: 'Analytics', description: 'Help us improve the app', required: false }, crashReporting: { title: 'Crash Reporting', description: 'Help us fix bugs', required: false } };
javascriptconst Store = require('electron-store'); const consentStore = new Store({ name: 'consent' }); function getConsent(category) { return consentStore.get(`consent.${category}`, null); } function setConsent(category, granted) { consentStore.set(`consent.${category}`, granted); consentStore.set(`consent.timestamp`, Date.now()); }
amplitude-desktop-integrationsentry-desktop-setupOther measured skills in the registry, with their headline benchmark lift.