dsh-adb 0.1.0 → 0.1.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/README.md +4 -3
- package/lib/index.d.ts +2 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,12 +10,13 @@
|
|
|
10
10
|
dsh plugin --profile web add dsh-adb
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
或从 GitHub 直装:`dsh plugin --profile web add github:SamXiaBing/dsh-adb`
|
|
14
14
|
|
|
15
15
|
## 生态收录
|
|
16
16
|
|
|
17
|
-
- ✅ [
|
|
18
|
-
- ✅ [awesome-
|
|
17
|
+
- ✅ [npm](https://www.npmjs.com/package/dsh-adb) — `dsh-adb@0.1.0` 已发布(2026-08-14)
|
|
18
|
+
- ✅ [awesome-deepseek-harness#87](https://github.com/0xsline/awesome-deepseek-harness/pull/87) — **已合并**
|
|
19
|
+
- ✅ [awesome-dsh-plugin#85](https://github.com/awesome-dsh-plugin/awesome-dsh-plugin/pull/85) — **已合并**
|
|
19
20
|
- ⏳ [awesome-DSH-plugin#29](https://github.com/Alex-Yanggg/awesome-DSH-plugin/pull/29) — 待合并
|
|
20
21
|
|
|
21
22
|
Topics:`dsh-plugin` `dsh` `adb` `android` `automotive` `bench`
|
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import Schema from 'schemastery';
|
|
2
2
|
import type { Context } from '@deepseek-ai/cordis';
|
|
3
3
|
export declare const name = "dsh-adb";
|
|
4
|
+
/** The tool registry is a hard dependency: every tool registers through it. */
|
|
5
|
+
export declare const inject: string[];
|
|
4
6
|
/** Plugin config (all optional — `Config` supplies the defaults). */
|
|
5
7
|
export interface Config {
|
|
6
8
|
/** Absolute path to the adb executable. */
|
package/lib/index.js
CHANGED
|
@@ -5,6 +5,8 @@ import { registerInstallTool } from './tools/install.js';
|
|
|
5
5
|
import { registerLogcatTool } from './tools/logcat.js';
|
|
6
6
|
import { registerPerfTool } from './tools/perf.js';
|
|
7
7
|
export const name = 'dsh-adb';
|
|
8
|
+
/** The tool registry is a hard dependency: every tool registers through it. */
|
|
9
|
+
export const inject = ['tools'];
|
|
8
10
|
export const Config = Schema.object({
|
|
9
11
|
adbPath: Schema.string().description('adb 可执行文件绝对路径;缺省自动探测 PATH / ANDROID_HOME / ANDROID_SDK_ROOT / platform-tools'),
|
|
10
12
|
defaultSerial: Schema.string().description('默认目标设备 serial'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-adb",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "ADB device & bench operations for DeepSeek Harness: device discovery, structured logcat, apk install, file pull/push, performance snapshots",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|