clickup-cli 0.5.3

CLI for the ClickUp API, optimized for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::CommandFactory;
use clap_complete::{generate, Shell};
use crate::error::CliError;
use crate::Cli;

pub fn execute(shell: Shell) -> Result<(), CliError> {
    let mut cmd = Cli::command();
    generate(shell, &mut cmd, "clickup", &mut std::io::stdout());
    Ok(())
}