ascent-research 0.4.2

ascent-research — an incremental research workflow CLI for AI agents. Every session resumes; knowledge accretes across runs. Mixes HTTP, browser, and local file ingest into a durable per-session wiki + figure-rich HTML report.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Report assembly. Two flavors:
//!
//! * `builder` — legacy synthesize path: session → json-ui `report.json`,
//!   consumed by the external `json-ui` renderer.
//! * `template` — new editorial path: session → embedded HTML template with
//!   placeholder substitution. Produces `report-rich.html` directly, no
//!   json-ui dependency.

pub mod bilingual;
pub mod brief_md;
pub mod builder;
pub mod markdown;
pub mod pdf_local;
pub mod sources;
pub mod template;
pub mod wiki_render;