feat(edge): wire HTTP API to message bus - #30
Open
barton87 wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #22.
Implements the Edge HTTP Server bounty with a focused, test-backed API surface:
GET /api/healthGET /api/statusPOST /api/commandPOST /api/messageGET /healthzGET /api/v1/healthGET /api/v1/statusPOST /api/v1/commandPOST /api/v1/messageMessageBusinto the edge server so accepted commands/messages are published instead of only logged.bus_connected, endpoint list, node/cloud info).pkg/edgetests for route aliases, command/message publishing, invalid requests, and no-bus behavior.pkg/gene.SelectGenesso the repository-wide test suite passes; this is separate from the edge API behavior but required for clean validation.Validation
gofmt -w cmd/picoclaw/main.go pkg/edge/server.go pkg/edge/server_test.go pkg/gene/selector.gogo test ./pkg/edge ./pkg/bus ./cmd/picoclawgo test ./...Notes
The implementation keeps the edge API small and avoids changing unrelated agent-loop behavior. Command/message requests are accepted into the existing bus with metadata so downstream handlers can process them consistently.