mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-10 10:35:51 +00:00
432f13b6f5
Add three new MCP tools for Docker container update management: - pulse_list_docker_updates: list containers with pending updates - pulse_check_docker_updates: trigger update check on a host - pulse_update_docker_container: apply update with approval workflow Changes: - Add UpdatesProvider interface to executor.go - Add response types to data_types.go - Add UpdatesMCPAdapter to adapters.go - Register tools and handlers in tools_infrastructure.go - Add SetUpdatesProvider() to service.go - Wire provider in router.go wireOpenCodeProviders()
Internal API Package
This directory contains the API server implementation for Pulse.
Important Note About frontend-modern/
The frontend-modern/ subdirectory that appears here is:
- AUTO-GENERATED during builds
- NOT the source code - just a build artifact
- IN .gitignore - never committed
- REQUIRED BY GO - The embed directive needs it here
Frontend Development Location
👉 Edit frontend files at: /opt/pulse/frontend-modern/src/
Why This Structure?
Go's //go:embed directive has limitations:
- Cannot use
../paths to access parent directories - Cannot follow symbolic links
- Must embed files within the Go module
This is a known Go limitation and our structure works around it.