@sswl/ai-manager 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/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # @sswl/ai-manager
2
+
3
+ SSWL AI Manager CLI。
4
+
5
+ 这个 npm 包本身不携带企业资产内容,只提供:
6
+
7
+ - 企业 VPN / 内网可达性检查
8
+ - 内网 Git 控制面仓库同步
9
+ - Claude Code / Codex 项目级与全局级资产安装
10
+ - 项目内免交互更新
11
+
12
+ 企业资产内容在运行时通过内网 Git 仓库获取。
13
+
14
+ ## Usage
15
+
16
+ ```bash
17
+ npx @sswl/ai-manager
18
+ npx @sswl/ai-manager update
19
+ npx @sswl/ai-manager apply --tool claude-code --scope project --project /path/to/project --profile full-enterprise
20
+ ```
21
+
22
+ ## Publish
23
+
24
+ ```bash
25
+ npm pack --dry-run
26
+ npm publish --access public
27
+ ```
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+
3
+ const { runCli } = require("../lib/cli");
4
+
5
+ runCli(process.argv, { commandName: "ai-manager" }).catch((error) => {
6
+ console.error(error.message || String(error));
7
+ process.exit(1);
8
+ });