@kody-ade/kody-engine 0.2.59 → 0.2.60
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/dist/bin/kody2.js +8 -3
- package/package.json +1 -1
package/dist/bin/kody2.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// package.json
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@kody-ade/kody-engine",
|
|
6
|
-
version: "0.2.
|
|
6
|
+
version: "0.2.60",
|
|
7
7
|
description: "kody2 \u2014 autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
8
8
|
license: "MIT",
|
|
9
9
|
type: "module",
|
|
@@ -4775,8 +4775,13 @@ var SECRET_PATTERNS = [
|
|
|
4775
4775
|
/\.pem$/i,
|
|
4776
4776
|
/\.key$/i,
|
|
4777
4777
|
/(^|\/)(id_rsa|id_ed25519|id_ecdsa)(\.|$)/i,
|
|
4778
|
-
|
|
4779
|
-
/
|
|
4778
|
+
// Match the keyword anywhere inside the filename, as a whole word (so e.g.
|
|
4779
|
+
// `api-secrets.json`, `config/app.credentials.yaml`, `user-passwords.txt`
|
|
4780
|
+
// all trip — while false friends like `secretary.md` do not).
|
|
4781
|
+
/(^|\/)[^/]*\bsecrets?\b[^/]*$/i,
|
|
4782
|
+
/(^|\/)[^/]*\bcredentials?\b[^/]*$/i,
|
|
4783
|
+
/(^|\/)[^/]*\bpasswords?\b[^/]*$/i,
|
|
4784
|
+
/(^|\/)[^/]*\bapi[-_]keys?\b[^/]*$/i,
|
|
4780
4785
|
/(^|\/)\.netrc$/i,
|
|
4781
4786
|
/(^|\/)\.npmrc$/i
|
|
4782
4787
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kody-ade/kody-engine",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.60",
|
|
4
4
|
"description": "kody2 — autonomous development engine. Single-session Claude Code agent behind a generic executor + declarative executable profiles.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|