chore: update project documentation and generated files

- Update CLAUDE.md with Flutter PR review guidelines
- Regenerate macOS plugin registrant

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Changed files
+2
macos
+2
macos/Flutter/GeneratedPluginRegistrant.swift
···
import shared_preferences_foundation
import sqflite_darwin
import url_launcher_macos
+
import video_player_avfoundation
import window_to_front
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
···
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
SqflitePlugin.register(with: registry.registrar(forPlugin: "SqflitePlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
+
FVPVideoPlayerPlugin.register(with: registry.registrar(forPlugin: "FVPVideoPlayerPlugin"))
WindowToFrontPlugin.register(with: registry.registrar(forPlugin: "WindowToFrontPlugin"))
}