deepseek-agents 0.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.
Files changed (3) hide show
  1. package/README.md +8 -0
  2. package/index.js +8 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # deepseek-agents
2
+
3
+ This package name is reserved for the [DeepSeekAgents](https://github.com/MoYeRanQianZhi/DeepSeekAgents)
4
+ project - an agent CLI deeply optimized for DeepSeek models.
5
+
6
+ Real releases start at 0.1.x. Until then this is an intentional placeholder
7
+ published by the project owner. The real package will ship a `deepseek`
8
+ binary via platform-specific optional dependencies.
package/index.js ADDED
@@ -0,0 +1,8 @@
1
+ // Name reserved for the DeepSeekAgents project.
2
+ // Real releases start at 0.1.x - watch the repository for the first release:
3
+ // https://github.com/MoYeRanQianZhi/DeepSeekAgents
4
+ console.error(
5
+ "deepseek-agents has not been released yet. " +
6
+ "This 0.0.0 placeholder reserves the package name. " +
7
+ "Watch https://github.com/MoYeRanQianZhi/DeepSeekAgents for the first release."
8
+ );
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "deepseek-agents",
3
+ "version": "0.0.0",
4
+ "description": "DeepSeek Agents - an agent CLI deeply optimized for DeepSeek models. This 0.0.0 release reserves the name; real releases start at 0.1.x.",
5
+ "main": "index.js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/MoYeRanQianZhi/DeepSeekAgents.git"
9
+ },
10
+ "homepage": "https://github.com/MoYeRanQianZhi/DeepSeekAgents#readme",
11
+ "bugs": "https://github.com/MoYeRanQianZhi/DeepSeekAgents/issues",
12
+ "license": "MIT",
13
+ "keywords": ["deepseek", "agent", "cli", "ai", "terminal"]
14
+ }