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
//! Session state: on-disk layout, slug rules, event log schema, active pointer.
//!
//! No subprocess invocations, no network. Pure filesystem operations
//! and data-shape definitions. `commands::*` builds on top of this layer.

pub mod active;
pub mod config;
pub mod event;
pub mod layout;
pub mod log;
pub mod md_parser;
pub mod md_template;
pub mod schema;
pub mod slug;
pub mod sources_block;
pub mod wiki;