dsh-bots 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/README.md +20 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# dsh-bots
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/dsh-bots)
|
|
4
|
+
[](#license)
|
|
5
|
+
|
|
6
|
+
**The plural form of the dsh bot framework** - a plugin for the [DeepSeek Harness](https://github.com/deepseek-ai/deepseek-harness) (`dsh`).
|
|
7
|
+
|
|
8
|
+
This package name is reserved; the first release is in development.
|
|
9
|
+
|
|
10
|
+
Compatibility name: the bot framework ships as dsh-bot; this form keeps the plural spelling installable.
|
|
11
|
+
|
|
12
|
+
Source and roadmap live in the [dsh-plugin monorepo](https://github.com/dushaobindoudou/dsh-plugin).
|
|
13
|
+
Watch the repo or the npm package to catch the release. Related releases from
|
|
14
|
+
the same suite: [dsh-workflow](https://www.npmjs.com/package/dsh-workflow),
|
|
15
|
+
[dsh-selfrepair](https://www.npmjs.com/package/dsh-selfrepair),
|
|
16
|
+
[dsh-finder](https://www.npmjs.com/package/dsh-finder).
|
|
17
|
+
|
|
18
|
+
## License
|
|
19
|
+
|
|
20
|
+
MIT
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-bots",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "The plural form of the dsh bot framework - name reserved; first release in development.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "dushaobindoudou",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"dsh",
|
|
9
|
+
"dsh-plugin",
|
|
10
|
+
"deepseek-harness",
|
|
11
|
+
"cordis-plugin",
|
|
12
|
+
"bot",
|
|
13
|
+
"bots"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/dushaobindoudou/dsh-plugin.git",
|
|
18
|
+
"directory": "packages/dsh-bots"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/dushaobindoudou/dsh-plugin/tree/main/packages/dsh-bots#readme"
|
|
21
|
+
}
|