feat: 发布智能体版

This commit is contained in:
augushong
2026-03-26 20:22:34 +08:00
parent 7ee9e102a5
commit 8cc08bcb8c
138 changed files with 7964 additions and 660 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace base\common\command;
use think\console\Command;
/**
* 命令基类extend/base 层)
*
* 提供所有命令的基础功能
* 命令行CLI只使用文本输出
* JSON 输出由 Web API 统一处理
*/
abstract class CommandBase extends Command
{
/**
* 配置命令参数
*/
protected function configure()
{
}
}