ponte 0.1.2

Bridges LangChain OpenWiki into the pleme-io fleet: reads the target repo's typescape IR + zoekt hits as context, invokes OpenWiki unmodified as a subprocess, routes the result through the fleet's doc/compliance layers. Never forks OpenWiki.
1
2
3
4
5
6
7
8
9
10
//! ponte — bridges LangChain OpenWiki into the pleme-io fleet.
//!
//! Three shigoto Jobs run as one Dag against a target repo:
//! `ContextAssembleJob` -> `InvokeOpenWikiJob` -> `RouteJob`. See each
//! module for its role; `main.rs` wires them together.

pub mod context;
pub mod openwiki;
pub mod route;
pub mod state;