@runxun.com/xuncode 0.0.1

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 ADDED
@@ -0,0 +1,13 @@
1
+ XunCode(迅码)Agent SDK
2
+
3
+ Copyright (c) 2026 润迅数据集团有限公司(RunXun Data Group Co., Ltd.)
4
+ 版权所有 All rights reserved.
5
+
6
+ 个人使用免费。企业私有化部署与商业授权请联系 https://runxun.com/contact。
7
+
8
+ 本软件为封装层,通过调用迅码(XunCode)命令行程序工作。迅码命令行程序及其
9
+ 预编译二进制受各自许可条款约束。未经书面许可,不得对本软件进行再分发或用于
10
+ 商业转售。
11
+
12
+ For personal use, free of charge. For enterprise private deployment and
13
+ commercial licensing, contact https://runxun.com/contact.
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # @runxun.com/xuncode
2
+
3
+ **XunCode(迅码)Agent SDK 的 `@runxun.com` 组织别名。** 内容与
4
+ [`xuncode`](https://www.npmjs.com/package/xuncode) 完全一致(直接转出)。
5
+
6
+ 新项目推荐直接用主包:
7
+
8
+ ```bash
9
+ npm i xuncode
10
+ ```
11
+
12
+ 本包用法与 `xuncode` 相同:
13
+
14
+ ```js
15
+ import { query, run } from "@runxun.com/xuncode";
16
+ ```
17
+
18
+ 完整文档见 [`xuncode`](https://www.npmjs.com/package/xuncode) 与
19
+ [runxun.com/ai/tools/xuncode](https://runxun.com/ai/tools/xuncode)。
20
+
21
+ ---
22
+
23
+ © 润迅数据集团有限公司
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ // @runxun.com/xuncode 的类型等同 @xuncode/sdk。
2
+ export * from "@xuncode/sdk";
package/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+ // @runxun.com/xuncode —— 官方别名,内容等同 @xuncode/sdk 包。
2
+ // 单一源:所有实现在 xuncode 里,这里只做转出,永不漂移。
3
+ export * from "@xuncode/sdk";
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@runxun.com/xuncode",
3
+ "version": "0.0.1",
4
+ "description": "XunCode(迅码)Agent SDK —— @runxun.com 组织下的官方别名,内容等同 @xuncode/sdk 包。",
5
+ "type": "module",
6
+ "main": "index.mjs",
7
+ "types": "index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./index.d.ts",
11
+ "import": "./index.mjs"
12
+ }
13
+ },
14
+ "dependencies": {
15
+ "@xuncode/sdk": "^0.0.1"
16
+ },
17
+ "files": [
18
+ "index.mjs",
19
+ "index.d.ts"
20
+ ],
21
+ "engines": {
22
+ "node": ">=18"
23
+ },
24
+ "keywords": [
25
+ "ai",
26
+ "agent",
27
+ "coding-agent",
28
+ "cli",
29
+ "xuncode",
30
+ "迅码",
31
+ "runxun",
32
+ "sdk"
33
+ ],
34
+ "homepage": "https://runxun.com/ai/tools/xuncode",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://git.runxun.com/runxun/xuncode.git"
38
+ },
39
+ "author": "润迅数据集团有限公司",
40
+ "license": "SEE LICENSE IN LICENSE",
41
+ "publishConfig": {
42
+ "access": "public"
43
+ }
44
+ }