Single-commit clean baseline after security scrub of niche-tells, project codenames, internal jargon, and contributor-email leaks. Contents: - 100 Rust crates (_primitives/_rust/) - 37 agent manifests (_manifests/) + generated specs (_generated/) - 67 user-invocable skills (skills/) - 33 hooks (hooks/) - Composition blocks (_blocks/) - Documentation (docs/, README.md) - TS adapter packages (_ts_packages/) - Assembler (_assembler/) - Roles (_roles/) - Templates (_templates/) - Forgejo CI (.forgejo/) Author: Denis Parfionovich <info@greendragon.info> License: see LICENSE.
18 lines
521 B
Rust
18 lines
521 B
Rust
// SPDX-License-Identifier: Apache-2.0
|
|
// Copyright 2026 <author org>
|
|
//
|
|
//! kei-compute-vultr — Vultr Cloud (v2) impl of `ComputeProvider`.
|
|
//!
|
|
//! Mirrors `kei-compute-hetzner` structurally. Wire format and tier table
|
|
//! per Vultr v2 docs (https://www.vultr.com/api/). User-data is base64
|
|
//! encoded by Vultr requirement.
|
|
|
|
pub mod api;
|
|
pub mod cloud_init;
|
|
pub mod error;
|
|
pub mod provider;
|
|
|
|
pub use api::VultrClient;
|
|
pub use cloud_init::CloudInitSpec;
|
|
pub use error::{Error, Result};
|
|
pub use provider::VultrCompute;
|