nodus-wechat 0.1.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 yflauw
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # nodus-wechat
2
+
3
+ Placeholder package for the upcoming Nodus WeChat local agent installer.
4
+
5
+ Run:
6
+
7
+ ```sh
8
+ npx nodus-wechat
9
+ ```
10
+
11
+ Current behavior:
12
+
13
+ - Prints a placeholder message.
14
+ - Does not install Hermes, iLink, or sub2api integrations.
15
+ - Does not read, upload, or write user configuration.
16
+
17
+ The real installer will be released in a later version.
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ "use strict";
4
+
5
+ console.log("Nodus WeChat installer is coming soon.");
6
+ console.log("");
7
+ console.log("Future purpose: install and configure a local WeChat Agent runtime.");
8
+ console.log("This placeholder package does not read, upload, or write user configuration.");
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "nodus-wechat",
3
+ "version": "0.1.0",
4
+ "description": "Placeholder CLI for the upcoming Nodus WeChat local agent installer.",
5
+ "license": "MIT",
6
+ "private": false,
7
+ "bin": {
8
+ "nodus-wechat": "bin/nodus-wechat.js"
9
+ },
10
+ "files": [
11
+ "bin",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "engines": {
16
+ "node": ">=18"
17
+ }
18
+ }