dirge-agent 0.10.2

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
1
2
3
4
5
6
7
8
//! /agent list (shared with /agents).

pub(crate) async fn cmd_agent_list(
    ctx: &mut crate::ui::slash::SlashCtx<'_>,
    parts: &[&str],
) -> anyhow::Result<()> {
    super::super::agents::cmd_agents(ctx, parts).await
}