ai-xray 1.2.0 → 2.0.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/PRD.md +421 -280
- package/README.md +2 -2
- package/dist/cli.js +771 -0
- package/dist/cli.js.map +1 -0
- package/package.json +36 -24
- package/src/cli.ts +155 -118
- package/src/client.ts +203 -0
- package/src/commands/bench.ts +99 -0
- package/src/commands/compare.ts +76 -0
- package/src/commands/id.ts +139 -0
- package/src/commands/ping.ts +55 -0
- package/src/commands/probe.ts +136 -0
- package/src/commands/tokenize.ts +96 -0
- package/src/utils/http.ts +86 -0
- package/src/utils/output.ts +36 -123
- package/src/utils/timer.ts +75 -0
- package/tests/bench.test.ts +13 -0
- package/tests/client.test.ts +37 -0
- package/tests/compare.test.ts +24 -0
- package/tests/http.test.ts +12 -0
- package/tests/id.test.ts +13 -0
- package/tests/ping.test.ts +12 -0
- package/tests/probe.test.ts +13 -0
- package/tests/tokenize.test.ts +32 -0
- package/tsup.config.ts +11 -11
- package/vitest.config.ts +13 -0
- package/ana-suggestions.md +0 -105
- package/tests/cli.test.ts +0 -172
- package/tests/diff.test.ts +0 -169
- package/tests/env.test.ts +0 -69
- package/tests/init.test.ts +0 -164
- package/tests/output.test.ts +0 -49
- package/tests/read.test.ts +0 -169
- package/tests/scout.test.ts +0 -248
- package/tests/tree.test.ts +0 -222
package/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
**Agent/LLM Analysis Tool Group**
|
|
4
4
|
|
|
5
5
|
This package is a placeholder namespace for upcoming Agent and LLM analysis tools.
|
|
6
|
-
The original `ai-xray` CLI codebase has been renamed and moved to the `
|
|
7
|
-
Please use `npx
|
|
6
|
+
The original `ai-xray` CLI codebase has been renamed and moved to the `aiseer` package.
|
|
7
|
+
Please use `npx aiseer` instead!
|
|
8
8
|
|
|
9
9
|
---
|
|
10
10
|
*Created by [10iii](https://github.com/10iii)*
|