diff --git a/src/components/graph/vueNodes/widgets/LOD_IMPLEMENTATION_GUIDE.md b/src/components/graph/vueNodes/widgets/LOD_IMPLEMENTATION_GUIDE.md
index 9c5400cb55..95c8b40a37 100644
--- a/src/components/graph/vueNodes/widgets/LOD_IMPLEMENTATION_GUIDE.md
+++ b/src/components/graph/vueNodes/widgets/LOD_IMPLEMENTATION_GUIDE.md
@@ -42,6 +42,9 @@ const { lodScore, lodLevel } = useLOD(toRef(() => props.zoomLevel))
```
+**Primary API:** Use `lodScore` (0-1) for granular control and smooth transitions
+**Convenience API:** Use `lodLevel` ('minimal'|'reduced'|'full') for simple on/off decisions
+
### Step 2: Choose What to Show at Different Zoom Levels
#### Understanding the LOD Score
@@ -178,10 +181,11 @@ const widgetClasses = computed(() => {
// Always show the main functionality
const showMainControl = computed(() => true)
-// Show labels when readable
+// Granular control with lodScore
const showLabels = computed(() => lodScore.value > 0.4)
+const labelOpacity = computed(() => Math.max(0.3, lodScore.value))
-// Show extra info when focused
+// Simple control with lodLevel
const showExtras = computed(() => lodLevel.value === 'full')
```
diff --git a/src/components/graph/vueNodes/widgets/README.md b/src/components/graph/vueNodes/widgets/README.md
deleted file mode 100644
index c2ec601478..0000000000
--- a/src/components/graph/vueNodes/widgets/README.md
+++ /dev/null
@@ -1,143 +0,0 @@
-# Vue Node Widgets
-
-This directory contains Vue components for rendering node widgets in the ComfyUI frontend.
-
-## Getting Started
-
-### Creating a New Widget
-
-1. Create a new `.vue` file in this directory
-2. Follow the widget component patterns from existing widgets
-3. **Implement Level of Detail (LOD)** - see [LOD Implementation Guide](./LOD_IMPLEMENTATION_GUIDE.md)
-4. Register your widget in the widget registry
-5. Add appropriate tests
-
-### Widget Component Structure
-
-```vue
-
-
-
-
-
-
-
-```
-
-## Level of Detail (LOD) Implementation
-
-**All widgets must implement LOD for performance with large graphs.**
-
-See the comprehensive [LOD Implementation Guide](./LOD_IMPLEMENTATION_GUIDE.md) for:
-- What LOD is and why it matters
-- Step-by-step implementation examples
-- Common patterns and best practices
-- Design collaboration guidelines
-- Testing recommendations
-
-## Widget Types
-
-### Input Widgets
-- Text inputs, number inputs, sliders
-- Should always show the input control
-- Show labels and validation at appropriate zoom levels
-
-### Selection Widgets
-- Dropdowns, radio buttons, checkboxes
-- Show current selection always
-- Progressive disclosure of options based on zoom
-
-### Display Widgets
-- Read-only text, images, status indicators
-- Consider whether content is readable at current zoom
-- Hide decorative elements when zoomed out
-
-### Complex Widgets
-- File browsers, color pickers, rich editors
-- Provide simplified representations when zoomed out
-- Full functionality only when zoomed in close
-
-## Performance Guidelines
-
-1. **Use LOD** - Essential for good performance
-2. **Optimize renders** - Use `v-memo` for expensive content
-3. **Minimize DOM** - Use `v-if` instead of `v-show` for LOD elements
-4. **Test at scale** - Verify performance with 100+ nodes
-
-## Testing Your Widget
-
-1. **Unit tests** - Test widget logic and LOD behavior
-2. **Component tests** - Test Vue component rendering
-3. **Visual tests** - Verify appearance at different zoom levels
-4. **Performance tests** - Test with many instances
-
-## Common Patterns
-
-### Widget Value Synchronization
-```typescript
-// Keep widget value in sync with LiteGraph
-const value = computed({
- get: () => props.widget.value,
- set: (newValue) => {
- props.widget.value = newValue
- // Trigger LiteGraph update
- props.widget.callback?.(newValue)
- }
-})
-```
-
-### Conditional Rendering Based on Widget Options
-```typescript
-const showAdvancedOptions = computed(() =>
- props.widget.options?.advanced && lodLevel.value === 'full'
-)
-```
-
-### Accessibility
-```vue
-
-
-
-
- {{ widget.description }}
-
-
-
-```
-
-## Resources
-
-- [LOD Implementation Guide](./LOD_IMPLEMENTATION_GUIDE.md) - Complete guide to implementing Level of Detail
-- [Vue 3 Composition API](https://vuejs.org/guide/extras/composition-api-faq.html)
-- [PrimeVue Components](https://primevue.org/) - Available UI components
-- ComfyUI Widget API documentation (see main docs)
-
-## Getting Help
-
-- Check existing widgets for implementation examples
-- Ask in the ComfyUI frontend Discord
-- Create an issue for complex widget requirements
-- Review the LOD debug panel for performance insights
\ No newline at end of file