clawlodge-cli 0.1.3 → 0.1.4

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 (2) hide show
  1. package/lib/core.mjs +11 -1
  2. package/package.json +1 -1
package/lib/core.mjs CHANGED
@@ -5,7 +5,17 @@ import readline from "node:readline/promises";
5
5
  import { stdin as input, stdout as output } from "node:process";
6
6
 
7
7
  const ALLOWED_ROOT_FILES = new Set(["AGENTS.md", "SOUL.md", "TOOLS.md", "README.md"]);
8
- const ALLOWED_PREFIXES = ["skills/", "examples/", "templates/", "prompts/", "memory/", ".openclaw/"];
8
+ const ALLOWED_PREFIXES = [
9
+ "skills/",
10
+ "examples/",
11
+ "templates/",
12
+ "prompts/",
13
+ "memory/",
14
+ "workflows/",
15
+ "devops/",
16
+ "docs/",
17
+ ".openclaw/",
18
+ ];
9
19
  const BLOCKED_DIRS = new Set([".git", ".next", "node_modules", "dist", "build", "coverage", ".idea", ".vscode", "tmp", "temp", "logs", "data"]);
10
20
  const BLOCKED_FILE_NAMES = [/^\.env(\..+)?$/i, /^id_(rsa|dsa|ecdsa|ed25519)(\.pub)?$/i];
11
21
  const BLOCKED_FILE_EXTENSIONS = new Set([".pem", ".key", ".p12", ".pfx", ".db", ".sqlite", ".sqlite3", ".log"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawlodge-cli",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "CLI for packing and publishing OpenClaw configs to ClawLodge",
5
5
  "repository": {
6
6
  "type": "git",