@openclaw-cn/cli 1.2.4 → 1.2.6

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.
@@ -20,7 +20,6 @@ const BUILTIN_IGNORE_RULES = [
20
20
  '.env.*',
21
21
  '!.env.example',
22
22
  '*.lock',
23
- 'SKILL.md',
24
23
  ];
25
24
 
26
25
  async function installSkill(client, skillId) {
package/lib/config.js CHANGED
@@ -33,7 +33,7 @@ export const getClient = () => {
33
33
  return axios.create({
34
34
  baseURL: getApiUrl(),
35
35
  timeout: 30000, // 30s timeout
36
- maxBodyLength: 100 * 1024, // 100KB max request body
36
+ maxBodyLength: 5 * 1024 * 1024, // 5MB max request body
37
37
  headers: token ? { Authorization: `Bearer ${token}` } : {}
38
38
  });
39
39
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw-cn/cli",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "description": "The official CLI for OpenClaw-CN Agent ecosystem",
5
5
  "bin": {
6
6
  "claw": "./bin/claw.js"