The Privateer SDK provides the interface and utilities needed for developing Privateer plugins. It includes common logic, cloud provider utilities, and an evaluation framework that can be reused across multiple plugins.
For complete SDK documentation, visit privateerproj.com/docs/developers/sdk/
The website includes:
- Detailed SDK overview and components
- Plugin development guides
- API reference and examples
- Best practices and patterns
Add the SDK to your Go project:
go get github.com/privateerproj/privateer-sdkImport the SDK in your plugin:
import (
"github.com/privateerproj/privateer-sdk/pluginkit"
"github.com/privateerproj/privateer-sdk/config"
"github.com/privateerproj/privateer-sdk/shared"
)See the plugin development guide for detailed usage examples.
- pkg.go.dev Documentation - Complete API reference
- SDK Documentation - Developer guide and tutorials
- Go 1.25.1 or later - Required for building and testing
- Make - For using the Makefile build targets
make buildRun all tests:
make testRun tests with coverage:
make testcovmake build- Build all packagesmake test- Run tests and vet checksmake testcov- Run tests with coverage reportmake tidy- Clean up go.mod dependenciesmake quick- Alias formake build
privateer-sdk/
├── command/ # CLI command utilities
├── config/ # Configuration management
├── pluginkit/ # Core plugin kit functionality
├── shared/ # Shared plugin interfaces
└── utils/ # Utility functions
We welcome contributions! See our Contributing Guidelines for details.
All contributions are covered by the Apache 2 License at the time the pull request is opened, and all community interactions are governed by our Code of Conduct.
For vulnerability reporting, please reference our Security Policy. For security questions, please search our closed issues and open a new issue if your question has not yet been answered.
- Privateer SDK - SDK for developing Privateer plugins
- Privateer Documentation - Complete documentation site
- Example Plugin - Reference implementation