puniyu_command 0.8.14

puniyu 命令库,统一命令定义、元信息与注册表管理流程
Documentation
# puniyu_command

命令系统库,统一命令定义、元信息与注册表管理。

## 特性

- 提供 `Command` trait 定义命令行为
- 提供 `CommandRegistry` 管理命令注册(需启用 `registry` feature)
- 提供 `has_permission!` 宏判断权限
- 支持命令别名、优先级和权限控制
- 提供 `Arg``ArgValue``Permission``CommandAction` 等类型

## 快速开始

```rust
use puniyu_command::{Arg, Command, CommandAction, Permission};
use puniyu_context::MessageContext;

struct HelloCommand;

#[async_trait::async_trait]
impl Command for HelloCommand {
    fn name(&self) -> &str { "hello" }

    fn args(&self) -> Vec<Arg<'_>> {
        vec![Arg::string("name").required()]
    }

    fn permission(&self) -> Permission {
        Permission::All
    }

    async fn execute(&self, ctx: &MessageContext) -> puniyu_error::Result<CommandAction> {
        CommandAction::done()
    }
}
```