@solo-kb/solo-learn 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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  CLI for connecting agents to the Solo Learn production learning system.
4
4
 
5
+ 默认连接 `http://kb.aipon.cn`;如需连接本地代理或未来 HTTPS 入口,可在 `login` 时传入 `--base-url <url>`。
6
+
5
7
  ## Install
6
8
 
7
9
  ```bash
@@ -3,7 +3,7 @@ import { chmodSync, existsSync, mkdirSync, readFileSync, rmSync, readdirSync, wr
3
3
  import { homedir } from 'node:os';
4
4
  import { dirname, join } from 'node:path';
5
5
 
6
- const DEFAULT_BASE_URL = 'https://kb.aipon.cn';
6
+ const DEFAULT_BASE_URL = 'http://kb.aipon.cn';
7
7
 
8
8
  class CliError extends Error {
9
9
  constructor(code, message, status = 1) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solo-kb/solo-learn",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI for connecting agents to the Solo Learn production learning system.",
5
5
  "type": "module",
6
6
  "bin": {