stakpak-api 0.3.81

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
12
13
14
15
//! Local storage and hook infrastructure
//!
//! This module provides:
//! - Database operations for local session storage
//! - Lifecycle hooks for context management

// Sub-modules
pub(crate) mod context_managers;
pub mod hooks;
pub mod migrations;
pub mod skills;
pub mod storage;

#[cfg(test)]
mod tests;