mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-26 20:33:15 +00:00
- Separate built-in plugin interface from external plugin interface - Route dynamic plugin loading through homeagent-sdk/sdk using reflection - Turn internal/sdk into an enhanced wrapper over canonical SDK types - Vendor SDK repo snapshot under third_party/homeagent-sdk for stable builds - Keep internal constructors/adapters for memory, knowledge, llm, settings - Align dynamic QQ loading with canonical SDK chain
18 lines
451 B
Cheetah
18 lines
451 B
Cheetah
# Build external Go plugin for HomeAgent
|
|
# Usage: make # build plugin.so
|
|
# make clean # remove plugin.so
|
|
|
|
PLUGIN_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
SDK_ROOT := $(realpath $(PLUGIN_DIR)../..)
|
|
PLUGIN_NAME := $(notdir $(realpath $(PLUGIN_DIR)))
|
|
|
|
.PHONY: all clean
|
|
|
|
all: plugin.so
|
|
|
|
plugin.so:
|
|
cd $(SDK_ROOT) && go build -buildmode=plugin -o $(PLUGIN_DIR)plugin.so $(PLUGIN_DIR)
|
|
|
|
clean:
|
|
rm -f $(PLUGIN_DIR)plugin.so
|