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 +49 -0
- package/fixtures/asset-mgmt-roles.json +1543 -0
- package/fixtures/basic-sources.json +58 -0
- package/fixtures/github-repo-landscape.json +308 -0
- package/fixtures/golden-answers.ts +56 -0
- package/fixtures/jsonl-provider.ts +41 -0
- package/fixtures/market-scan.json +246 -0
- package/fixtures/paul-graham-corpus.json +272 -0
- package/fixtures/sellside-research-roles.json +1709 -0
- package/fixtures/youtube-niche.json +262 -0
- package/package.json +45 -0
- package/src/benchmark.ts +151 -0
- package/src/cache.ts +86 -0
- package/src/cli.ts +377 -0
- package/src/command-provider.ts +99 -0
- package/src/config.ts +134 -0
- package/src/costs.ts +134 -0
- package/src/distributed/memory-adapter.ts +152 -0
- package/src/distributed/queue-adapter.ts +29 -0
- package/src/distributed/redis-adapter.ts +185 -0
- package/src/distributed/runner.ts +325 -0
- package/src/distributed/task-splitter.ts +78 -0
- package/src/export.ts +70 -0
- package/src/init.ts +138 -0
- package/src/leaderboard.ts +201 -0
- package/src/providers/brave-provider.ts +161 -0
- package/src/providers/github-provider.ts +151 -0
- package/src/providers/index.ts +49 -0
- package/src/providers/mock-search-provider.ts +45 -0
- package/src/providers/search-provider.ts +12 -0
- package/src/providers/serper-provider.ts +154 -0
- package/src/providers/tavily-provider.ts +158 -0
- package/src/runtime.ts +349 -0
- package/src/scorer.ts +103 -0
- package/src/types.ts +246 -0
- package/src/verifier.ts +369 -0
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
|