rslph 0.1.1

CLI tool for LLM-powered autonomous task execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Planning command and stack detection.
//!
//! Provides the `plan` command handler and project stack auto-detection.

mod command;
mod personas;
mod stack;
mod vagueness;

pub use command::run_plan_command;
pub use personas::{REQUIREMENTS_CLARIFIER_PERSONA, TESTING_STRATEGIST_PERSONA};
pub use stack::{detect_stack, DetectedStack, Language};
pub use vagueness::{assess_vagueness, VaguenessScore};