persona-wire-core 0.12.0

persona-wire core: Domain (Graph + Specification + Compute + Constraint + AutoVersion + CRUD) + Application (NamedProjection registry, Use Case) + Infrastructure (SQLite storage, Rendering adapter). Transport-agnostic.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Projection Adapters — concrete [`ProjectionRenderer`] implementations.
//!
//! Default 同梱 = [`StaticProjection`] (`TemplateEngine` 委譲のみ)。 LLM /
//! MCP tool 等の OUT は別 crate の Adapter で同 trait を impl して差し込む。
//!
//! [`ProjectionRenderer`]: crate::domain::port::ProjectionRenderer

pub mod r#static;

pub use r#static::StaticProjection;