@fastagent/cli 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +13 -0
- package/README.md +41 -0
- package/cli.js +574 -0
- package/package.json +18 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 @fastagent
|
|
4
|
+
|
|
5
|
+
Permission is granted to install, use, reproduce, and modify this package for internal, business, and commercial purposes.
|
|
6
|
+
|
|
7
|
+
You may copy this package only as reasonably necessary to install, run, deploy, and integrate applications or services that depend on it.
|
|
8
|
+
|
|
9
|
+
You may not redistribute, sublicense, or resell this package, or modified versions of it, as a standalone product, package, SDK, CLI, or developer service without prior written permission from @fastagent.
|
|
10
|
+
|
|
11
|
+
No trademark rights are granted in the @fastagent name, logo, or branding.
|
|
12
|
+
|
|
13
|
+
This package is provided "as is", without warranty of any kind, to the fullest extent permitted by law.
|
package/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# @fastagent/cli
|
|
2
|
+
|
|
3
|
+
FastAgent 是一个面向工具接入、skills、MCP、IM 通道接入、子智能体、计划任务与多智能体调度场景的 agentic 执行引擎命令行入口。
|
|
4
|
+
|
|
5
|
+
通过 `fastagent` 命令,你可以用统一方式启动和使用 FastAgent;当前公开命令面已开放其中一部分能力,并会持续扩展。
|
|
6
|
+
|
|
7
|
+
## 安装
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install -g @fastagent/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
安装完成后可直接使用:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
fastagent --help
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## 可用命令
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
fastagent
|
|
23
|
+
fastagent --channel weixin
|
|
24
|
+
fastagent --channel weixin --output jsonl
|
|
25
|
+
fastagent config
|
|
26
|
+
fastagent doctor
|
|
27
|
+
fastagent skills add <source>
|
|
28
|
+
fastagent skills list
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## 示例
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
fastagent --help
|
|
35
|
+
fastagent --version
|
|
36
|
+
fastagent --channel weixin
|
|
37
|
+
fastagent --channel weixin --output jsonl
|
|
38
|
+
fastagent config
|
|
39
|
+
fastagent doctor
|
|
40
|
+
fastagent skills list
|
|
41
|
+
```
|