kimi-agent-swarm-cli 0.7.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.
package/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # @kimi-agent-swarm-skill/cli
2
+
3
+ Evidence-backed wide-search CLI for Kimi Agent Swarm.
4
+
5
+ ## Install
6
+
7
+ Requires [Bun](https://bun.sh) 1.0 or later.
8
+
9
+ ```bash
10
+ npm install -g kimi-agent-swarm-cli
11
+ # or
12
+ bun install -g kimi-agent-swarm-cli
13
+ ```
14
+
15
+ ## Quick Start
16
+
17
+ ```bash
18
+ # First-run setup
19
+ kasw init
20
+
21
+ # Run a fixture benchmark
22
+ kasw benchmark --profile fixture-paul-graham-corpus
23
+
24
+ # Live search with Tavily (requires TAVILY_API_KEY)
25
+ kasw research "AI browser agent repos" --profile web-search --provider tavily
26
+
27
+ # Distributed execution
28
+ kasw research "AI browser agent landscape" --profile web-search --provider tavily --distributed --workers 4
29
+
30
+ # Leaderboard
31
+ kasw leaderboard --profile fixture-paul-graham-corpus
32
+ kasw leaderboard --html --out leaderboard.html
33
+ ```
34
+
35
+ ## Providers
36
+
37
+ - `mock` — deterministic demo/CI provider
38
+ - `serper` — Serper.dev Google Search (requires `SERPER_API_KEY`)
39
+ - `tavily` — Tavily AI search (requires `TAVILY_API_KEY`)
40
+ - `brave` — Brave Search API (requires `BRAVE_API_KEY`)
41
+ - `github` — GitHub repository search (requires `GITHUB_TOKEN`)
42
+
43
+ ## Documentation
44
+
45
+ See the [main repository README](https://github.com/min9lin9/kimi-agent-swarm-skill/blob/main/README.md) for full documentation.
46
+
47
+ ## License
48
+
49
+ MIT