We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Plugins extend Overkill with custom tools, slash commands, and lifecycle hooks. They run as subprocesses communicating over JSON-RPC 2.0 on stdio.
p := sdk.New(sdk.Manifest{Name: "hello", Version: "0.1.0"}) p.OnTool("greet", func(ctx context.Context, args json.RawMessage) (any, error) { return map[string]string{"text": "hi!"}, nil }) p.Run()
overkill plugin install https://github.com/you/your-overkill-plugin
Plugins live in ~/.overkill/plugins/<name>/. A Go SDK is available at examples/plugins/sdk-go/.
~/.overkill/plugins/<name>/
examples/plugins/sdk-go/
examples/plugins/notes/
notes
examples/plugins/git-stats/
git_stats
Overkill