stakpak-shared 0.3.74

Stakpak: Your DevOps AI Agent. Generate infrastructure code, debug Kubernetes, configure CI/CD, automate deployments, without giving an LLM the keys to production.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! OAuth provider implementations

mod anthropic;
mod github_copilot;
mod openai_codex;
mod stakpak;

pub use anthropic::AnthropicProvider;
pub use github_copilot::GitHubCopilotProvider;
pub use openai_codex::OpenAICodexProvider;
pub use stakpak::StakpakProvider;