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
//! `research` CLI library crate. All logic lives here; `main.rs` is a thin
//! entrypoint that dispatches to `cli::run`.
//!
//! Module structure:
//! - `cli`      — argument parsing + command dispatch
//! - `session`  — session directory layout, event log, active pointer
//! - `commands` — subcommand handlers (all stubs in MVP #1)
//! - `output`   — ActionResult / envelope helpers for --json vs plain text

#![warn(clippy::all)]

#[cfg(feature = "autoresearch")]
pub mod autoresearch;

pub mod catalog;
pub mod cli;
pub mod commands;
pub mod fetch;
pub mod output;
pub mod report;
pub mod route;
pub mod session;