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.
15 lines
454 B
Rust
15 lines
454 B
Rust
//! kei-auth — multi-tenant token auth. Replaces LBM's single LBM_MCP_TOKEN.
|
|
//!
|
|
//! Cubes:
|
|
//! - [`schema`] — SQLite tables for users + tokens
|
|
//! - [`hmac`] — HMAC-SHA256 signing helpers
|
|
//! - [`tokens`] — issue / verify / revoke / list
|
|
//! - [`scopes`] — read / write / admin enum + checks
|
|
|
|
pub mod hmac;
|
|
pub mod schema;
|
|
pub mod scopes;
|
|
pub mod tokens;
|
|
|
|
pub use scopes::Scope;
|
|
pub use tokens::{issue, revoke, verify, VerifyOutcome};
|