@fastagent/cli 0.0.2 → 0.1.0

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.
Files changed (3) hide show
  1. package/README.md +95 -3
  2. package/cli.js +282 -269
  3. package/package.json +14 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fastagent/cli",
3
- "version": "0.0.2",
3
+ "version": "0.1.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "fastagent": "cli.js"
@@ -10,9 +10,21 @@
10
10
  "README.md",
11
11
  "LICENSE.md"
12
12
  ],
13
- "description": "FastAgent unified CLI runtime and launcher surface",
13
+ "description": "FastAgent CLI with IM channels, skills, MCP, cron, and sandbox support",
14
14
  "engines": {
15
15
  "node": ">=20.0.0"
16
16
  },
17
+ "keywords": [
18
+ "fastagent",
19
+ "ai-agent",
20
+ "agent-cli",
21
+ "mcp",
22
+ "skills",
23
+ "sandbox",
24
+ "cron",
25
+ "weixin",
26
+ "wechat",
27
+ "automation"
28
+ ],
17
29
  "license": "SEE LICENSE IN LICENSE.md"
18
30
  }