clean-room-skill 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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "clean-room",
|
|
3
3
|
"displayName": "Clean Room",
|
|
4
4
|
"description": "Spec-first clean-room workflow for authorized source analysis without replacement code.",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.4",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "whit3rabbit"
|
|
8
8
|
},
|
|
@@ -14,6 +14,5 @@
|
|
|
14
14
|
"reverse-engineering",
|
|
15
15
|
"compliance"
|
|
16
16
|
],
|
|
17
|
-
"skills": "./skills/"
|
|
18
|
-
"agents": "./agents/"
|
|
17
|
+
"skills": "./skills/"
|
|
19
18
|
}
|
package/bin/verify.sh
CHANGED
|
@@ -39,6 +39,11 @@ echo "Validating JSON metadata..."
|
|
|
39
39
|
"$python_cmd" -m json.tool .codex-plugin/plugin.json >/dev/null
|
|
40
40
|
"$python_cmd" -m json.tool .claude-plugin/plugin.json >/dev/null
|
|
41
41
|
|
|
42
|
+
if command -v claude >/dev/null 2>&1; then
|
|
43
|
+
echo "Validating Claude plugin manifest..."
|
|
44
|
+
claude plugin validate .claude-plugin/plugin.json
|
|
45
|
+
fi
|
|
46
|
+
|
|
42
47
|
echo "Compiling Python hooks and scripts..."
|
|
43
48
|
"$python_cmd" -m compileall -q hooks skills/clean-room/scripts
|
|
44
49
|
|
package/package.json
CHANGED