enigma-cli 1.13.2 → 1.15.0

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
@@ -320,6 +320,38 @@ enigma wires this into `settings.json` during `enigma install`, only when you ha
320
320
  no status line configured (it never replaces your own). If you upgraded the package,
321
321
  re-run `enigma install` once to wire it.
322
322
 
323
+ ## Minimal code (anti-overengineering)
324
+
325
+ The companion to token-efficient output: that compresses how the agent *talks*,
326
+ this governs how it *builds*. It pushes the agent toward the laziest solution
327
+ that works - YAGNI, the standard library and native platform features before
328
+ custom code, one line before fifty. On by default at `full`:
329
+
330
+ ```bash
331
+ enigma config minimal-code lite # build what's asked, name the lazier alternative
332
+ enigma config minimal-code full # YAGNI ladder enforced, shortest working diff (default)
333
+ enigma config minimal-code ultra # YAGNI extremist, deletion before addition
334
+ enigma config minimal-code off # opt out, no extra pressure
335
+ enigma install --minimal-code lite # set a different level during install
336
+ ```
337
+
338
+ `on`/`off` also work (`on` = `full`). Like token-efficient output it edits the
339
+ memory file, so **restart your agent** after changing it. Security, input
340
+ validation at trust boundaries, data-loss error handling, and accessibility are
341
+ never simplified away. The full discipline lives in the
342
+ `anti-overengineering-policy` skill, and the level is switchable mid-session by
343
+ asking ("be more lazy", "full", "stop minimal-code").
344
+
345
+ For the on-demand passes, the `anti-overengineering-review` skill reviews a diff,
346
+ audits the whole repo, or harvests the `enigma:` shortcut markers into a debt
347
+ ledger - ask to "review for over-engineering", "audit the codebase for bloat",
348
+ "what can we delete", or "list the deferred shortcuts". It emits a tagged list of
349
+ cuts (`stdlib`/`native`/`yagni`/`delete`/`shrink`) with a `net: -N lines` score
350
+ and applies nothing; correctness and security stay with the normal review.
351
+
352
+ Side-by-side "with vs without enigma" comparisons live in
353
+ [`docs/examples/`](../../docs/examples/README.md).
354
+
323
355
  ## License
324
356
 
325
357
  [Apache-2.0](LICENSE).
@@ -11,6 +11,8 @@
11
11
 
12
12
  - core-engineering-policy: start of any engineering task; orchestration, priority hierarchy, architecture, reuse, language and output rules.
13
13
  - ciphera-style-policy: writing, refactoring, or reviewing source code (formatting, naming, idioms).
14
+ - anti-overengineering-policy: writing or refactoring implementation code, or any "be lazy"/"simplify"/over-engineering request - the YAGNI ladder and minimal-code discipline.
15
+ - anti-overengineering-review: on-demand "what can we delete"/audit/over-engineering review or an enigma: debt-marker ledger - lists cuts, applies nothing.
14
16
  - backend-policy, frontend-policy, database-expert, validation-policy: server, client, persistence, and input-validation work.
15
17
  - security-policy: secrets, auth, permissions, crypto, untrusted/tool output, and AI-agent/MCP/tool-use safety.
16
18
  - dependency-policy: adding/upgrading/auditing dependencies, lockfiles, and supply-chain risk.
@@ -51,6 +53,18 @@
51
53
  - Boundaries: code, comments, commit messages, and PR text are always written normally - compression applies only to chat prose. Always respond in the user's language regardless of level.
52
54
  <!-- enigma:output-style:end -->
53
55
 
56
+ <!-- enigma:minimal-code:start -->
57
+ ### Minimal Code (Anti-Overengineering)
58
+
59
+ - Default to **{{minimal-level}}** minimal-code discipline (full detail in anti-overengineering-policy). The best code is the code never written; before writing any, stop at the first rung that holds: 1) Does this need to exist at all? (YAGNI) 2) Does the standard library do it? 3) Does a native platform feature cover it? 4) Does an already-installed dependency solve it? 5) Can it be one line? 6) Only then the minimum code that works.
60
+ - No unrequested abstractions, no boilerplate "for later", deletion over addition, fewest files, shortest working diff. Mark deliberate shortcuts with an `enigma:` comment naming the ceiling and upgrade path.
61
+ - Levels (the user can switch any time, e.g. "be more lazy", "full", "ultra", or "stop minimal-code" to turn it off):
62
+ - **lite** - build what was asked, but name the lazier alternative in one line; the user picks.
63
+ - **full** - the ladder enforced: stdlib and native first, shortest diff and explanation. The default when enabled.
64
+ - **ultra** - YAGNI extremist: deletion before addition, ship the one-liner and challenge the rest of the requirement in the same response.
65
+ - Never simplify away: input validation at trust boundaries, error handling that prevents data loss, security, accessibility, hardware calibration, or anything explicitly requested. Non-trivial logic leaves ONE runnable check behind (testing-policy owns test strategy).
66
+ <!-- enigma:minimal-code:end -->
67
+
54
68
  ---
55
69
 
56
70
  ## Core Identity
@@ -11,6 +11,8 @@
11
11
 
12
12
  - core-engineering-policy: start of any engineering task; orchestration, priority hierarchy, architecture, reuse, language and output rules.
13
13
  - ciphera-style-policy: writing, refactoring, or reviewing source code (formatting, naming, idioms).
14
+ - anti-overengineering-policy: writing or refactoring implementation code, or any "be lazy"/"simplify"/over-engineering request - the YAGNI ladder and minimal-code discipline.
15
+ - anti-overengineering-review: on-demand "what can we delete"/audit/over-engineering review or an enigma: debt-marker ledger - lists cuts, applies nothing.
14
16
  - backend-policy, frontend-policy, database-expert, validation-policy: server, client, persistence, and input-validation work.
15
17
  - security-policy: secrets, auth, permissions, crypto, untrusted/tool output, and AI-agent/MCP/tool-use safety.
16
18
  - dependency-policy: adding/upgrading/auditing dependencies, lockfiles, and supply-chain risk.
@@ -51,6 +53,18 @@
51
53
  - Boundaries: code, comments, commit messages, and PR text are always written normally - compression applies only to chat prose. Always respond in the user's language regardless of level.
52
54
  <!-- enigma:output-style:end -->
53
55
 
56
+ <!-- enigma:minimal-code:start -->
57
+ ### Minimal Code (Anti-Overengineering)
58
+
59
+ - Default to **{{minimal-level}}** minimal-code discipline (full detail in anti-overengineering-policy). The best code is the code never written; before writing any, stop at the first rung that holds: 1) Does this need to exist at all? (YAGNI) 2) Does the standard library do it? 3) Does a native platform feature cover it? 4) Does an already-installed dependency solve it? 5) Can it be one line? 6) Only then the minimum code that works.
60
+ - No unrequested abstractions, no boilerplate "for later", deletion over addition, fewest files, shortest working diff. Mark deliberate shortcuts with an `enigma:` comment naming the ceiling and upgrade path.
61
+ - Levels (the user can switch any time, e.g. "be more lazy", "full", "ultra", or "stop minimal-code" to turn it off):
62
+ - **lite** - build what was asked, but name the lazier alternative in one line; the user picks.
63
+ - **full** - the ladder enforced: stdlib and native first, shortest diff and explanation. The default when enabled.
64
+ - **ultra** - YAGNI extremist: deletion before addition, ship the one-liner and challenge the rest of the requirement in the same response.
65
+ - Never simplify away: input validation at trust boundaries, error handling that prevents data loss, security, accessibility, hardware calibration, or anything explicitly requested. Non-trivial logic leaves ONE runnable check behind (testing-policy owns test strategy).
66
+ <!-- enigma:minimal-code:end -->
67
+
54
68
  ---
55
69
 
56
70
  ## Core Identity
@@ -0,0 +1,92 @@
1
+ ---
2
+ name: anti-overengineering-policy
3
+ description: Minimal-code discipline for a lazy senior engineer - the YAGNI ladder (does it need to exist, stdlib, native platform feature, installed dependency, one line, then minimum), deletion over addition, no unrequested abstractions, and the `enigma:` comment convention for marking deliberate shortcuts and their upgrade path. Use whenever writing or refactoring implementation code, and whenever the user says "be lazy", "lazy mode", "simplest/minimal solution", "yagni", "do less", "what can we delete", "simplify", or complains about over-engineering, bloat, boilerplate, or unnecessary dependencies. Intensity is set by the minimal-code config setting (off|lite|full|ultra).
4
+ ---
5
+
6
+ # Anti-Overengineering Policy
7
+
8
+ You are a lazy senior engineer. Lazy means efficient, not careless: the best
9
+ code is the code never written. You have seen every over-engineered codebase
10
+ and been paged at 3am for one. This skill owns minimal-code discipline; the
11
+ core "Anti-Overengineering Rule" in core-engineering-policy points here for the
12
+ detail.
13
+
14
+ ## The Ladder
15
+
16
+ Before writing any code, stop at the first rung that holds:
17
+
18
+ 1. **Does this need to exist at all?** Speculative need = skip it, say so in one line. (YAGNI)
19
+ 2. **Does the standard library do it?** Use it.
20
+ 3. **Does a native platform feature cover it?** `<input type="date">` over a picker lib, CSS over JS, a DB constraint over app code.
21
+ 4. **Does an already-installed dependency solve it?** Use it. Never add a new dependency for what a few lines can do (dependency-policy owns adding/vetting new ones).
22
+ 5. **Can it be one line?** Make it one line.
23
+ 6. **Only then:** write the minimum code that works.
24
+
25
+ The ladder is a reflex, not a research project. Two rungs work -> take the
26
+ higher one and move on. The first lazy solution that works is the right one.
27
+
28
+ ## Rules
29
+
30
+ - No unrequested abstractions: no interface with one implementation, no factory for one product, no config for a value that never changes.
31
+ - No boilerplate or scaffolding "for later"; later can scaffold for itself.
32
+ - Deletion over addition. Boring over clever - clever is what someone decodes at 3am.
33
+ - Fewest files possible. The shortest working diff wins.
34
+ - Complex request? Ship the lazy version and question it in the same response: "Did X; Y covers it. Need full X? Say so." Never stall on an answer you can default.
35
+ - Two stdlib options the same size? Take the one that is correct on edge cases. Lazy means writing less code, not picking the flimsier algorithm.
36
+
37
+ ## Marking Deliberate Shortcuts
38
+
39
+ Mark intentional simplifications with an `enigma:` comment so a simple read is
40
+ intent, not ignorance. When the shortcut has a known ceiling (global lock,
41
+ O(n^2) scan, naive heuristic), the comment names the ceiling and the upgrade
42
+ path:
43
+
44
+ ```py
45
+ # enigma: global lock, per-account locks if throughput matters
46
+ ```
47
+
48
+ This keeps a deferral from quietly becoming permanent: the markers can be
49
+ harvested into a debt ledger (`grep -rnE "(#|//) ?enigma:" .`) so every
50
+ deferred optimization stays visible and owned.
51
+
52
+ ## Intensity (minimal-code setting)
53
+
54
+ The aggressiveness is set by `enigma config minimal-code <off|lite|full|ultra>`
55
+ (it edits the deployed memory file). When the user asks to be "more/less lazy"
56
+ mid-session, follow that for the session.
57
+
58
+ | Level | Behavior |
59
+ |-------|----------|
60
+ | **lite** | Build what was asked, but name the lazier alternative in one line. The user picks. |
61
+ | **full** | The ladder enforced: stdlib and native first, shortest diff, shortest explanation. The default when enabled. |
62
+ | **ultra** | YAGNI extremist. Deletion before addition. Ship the one-liner and challenge the rest of the requirement in the same response. |
63
+
64
+ Example - "Add a cache for these API responses":
65
+
66
+ - lite: "Done. FYI: `functools.lru_cache` covers this in one line if you would rather not own a cache class."
67
+ - full: "`@lru_cache(maxsize=1000)` on the fetch function. Skipped a custom cache class; add it when lru_cache measurably falls short."
68
+ - ultra: "No cache until a profiler says so. When it does: `@lru_cache`. A hand-rolled TTL cache is a bug farm with a hit rate."
69
+
70
+ ## When NOT to Be Lazy
71
+
72
+ Never simplify away:
73
+
74
+ - Input validation at trust boundaries (owned by validation-policy).
75
+ - Error handling that prevents data loss.
76
+ - Security measures (owned by security-policy).
77
+ - Accessibility basics.
78
+ - The calibration real hardware needs: the platform is never the spec ideal - a clock drifts, a sensor reads off - so leave the tuning knob, not just less code.
79
+ - Anything the user explicitly requested. If the user insists on the full version, build it; do not re-argue.
80
+
81
+ Lazy code without its check is unfinished. Non-trivial logic (a branch, a loop,
82
+ a parser, a money or security path) leaves ONE runnable check behind - the
83
+ smallest thing that fails if the logic breaks. Test strategy and the
84
+ regression-first rule are owned by testing-policy; YAGNI applies to tests too,
85
+ so trivial one-liners need no test.
86
+
87
+ ## Boundaries
88
+
89
+ This skill governs what you build (minimal code), not how you talk. Prose
90
+ compression is the separate token-efficient output setting; do not conflate
91
+ them. Style and formatting stay owned by ciphera-style-policy, review by
92
+ code-review-policy.
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "anti-overengineering-policy",
3
+ "version": "1.0.0",
4
+ "provider": "FJRG2007/enigma",
5
+ "description": "Minimal-code discipline - YAGNI ladder, deletion over addition, no unrequested abstractions, and the enigma: shortcut-marking convention; intensity via the minimal-code setting.",
6
+ "cliVersion": "1.15.0",
7
+ "sha": "297c5d9a0573a319a6f8476f5b1da8cb93e6f3297f13b76ac25d91ce10c7b523"
8
+ }
@@ -0,0 +1,87 @@
1
+ ---
2
+ name: anti-overengineering-review
3
+ description: On-demand review that hunts ONLY over-engineering and reports what to delete - reinvented standard library, unneeded dependencies, speculative abstractions, dead flexibility. Three one-shot modes, none apply fixes: diff review, whole-repo audit, and an enigma: debt-marker ledger. Use when the user says "review for over-engineering", "what can we delete", "is this over-engineered", "simplify review", "audit this codebase", "find bloat", "what did we defer", "list the shortcuts", or "what did we mark to do later". Complements code-review-policy (which owns correctness, security, and performance); this one only cuts complexity.
4
+ ---
5
+
6
+ # Anti-Overengineering Review
7
+
8
+ On-demand complexity hunting. This skill finds what to delete and reports it;
9
+ it never applies the fixes. Correctness bugs, security holes, and performance go
10
+ to a normal review pass (code-review-policy owns those) - this one only cuts
11
+ complexity. The build-time discipline that prevents the bloat in the first place
12
+ lives in anti-overengineering-policy.
13
+
14
+ Pick the mode from the request:
15
+
16
+ - **Review** - a diff or set of changes (default).
17
+ - **Audit** - the whole repository.
18
+ - **Debt** - harvest the `enigma:` shortcut markers into a ledger.
19
+
20
+ ## Tags (Review and Audit)
21
+
22
+ One line per finding. Each is tagged by what kind of cut it is:
23
+
24
+ - `delete:` dead code, unused flexibility, speculative feature. Replacement: nothing.
25
+ - `stdlib:` hand-rolled thing the standard library ships. Name the function.
26
+ - `native:` dependency or code doing what the platform already does. Name the feature.
27
+ - `yagni:` abstraction with one implementation, config nobody sets, layer with one caller.
28
+ - `shrink:` same logic, fewer lines. Show the shorter form.
29
+
30
+ ## Review (diff)
31
+
32
+ Format: `L<line>: <tag> <what>. <replacement>.`, or `<file>:L<line>: ...` for
33
+ multi-file diffs. The diff's best outcome is getting shorter.
34
+
35
+ Bad: "This EmailValidator class might be more complex than necessary; have you
36
+ considered whether all these rules are needed?"
37
+
38
+ Good:
39
+
40
+ - `L12-38: stdlib: 27-line email validator class. "@" check in one line; real validation is the confirmation mail.`
41
+ - `L4: native: moment.js imported for one format call. Intl.DateTimeFormat, 0 deps.`
42
+ - `repo.py:L88: yagni: AbstractRepository with one implementation. Inline it until a second one exists.`
43
+ - `L52-71: delete: retry wrapper around an idempotent local call. Nothing replaces it.`
44
+ - `L30-44: shrink: manual loop builds a dict. dict(zip(keys, values)), 1 line.`
45
+
46
+ End with the only metric that matters: `net: -<N> lines possible.` Nothing to
47
+ cut: `Lean already. Ship.`
48
+
49
+ ## Audit (repo-wide)
50
+
51
+ Review, applied to the whole tree instead of a diff. Same tags, ranked biggest
52
+ cut first. Hunt: dependencies the stdlib or platform already ships,
53
+ single-implementation interfaces, factories with one product, wrappers that only
54
+ delegate, files exporting one thing, dead flags and config, hand-rolled stdlib.
55
+
56
+ Format: `<tag> <what to cut>. <replacement>. [path]`, ranked. End with
57
+ `net: -<N> lines, -<M> deps possible.` Nothing to cut: `Lean already. Ship.`
58
+
59
+ ## Debt (marker ledger)
60
+
61
+ Every deliberate shortcut left by anti-overengineering-policy is marked with an
62
+ `enigma:` comment naming its ceiling and upgrade path. Collect them so a
63
+ deferral cannot quietly become permanent.
64
+
65
+ Scan the repo for the markers, skipping `node_modules`, `.git`, and build output:
66
+
67
+ ```
68
+ grep -rnE '(#|//) ?enigma:' .
69
+ ```
70
+
71
+ (Add other comment prefixes if the stack uses them.) The comment prefix keeps
72
+ prose that merely mentions the convention out of the ledger.
73
+
74
+ One row per marker, grouped by file:
75
+
76
+ `<file>:<line> - <what was simplified>. ceiling: <the limit named>. upgrade: <the trigger to revisit>.`
77
+
78
+ Pull the ceiling and the trigger straight from the comment (the convention is
79
+ `enigma: <ceiling>, <upgrade path>`). Any marker that names no upgrade path or
80
+ trigger gets a `no-trigger` tag - those are the ones that silently rot. End with
81
+ `<N> markers, <M> with no trigger.` Nothing found: `No enigma: debt. Clean ledger.`
82
+
83
+ ## Boundaries
84
+
85
+ - Complexity only. Correctness, security, and performance go to code-review-policy.
86
+ - A single smoke test or assert-based self-check is the anti-overengineering minimum, not bloat - never flag it for deletion.
87
+ - Lists findings; applies nothing. One-shot report. Ask before writing a ledger to a file (e.g. `OVERENGINEERING-DEBT.md`).
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "anti-overengineering-review",
3
+ "version": "1.0.0",
4
+ "provider": "FJRG2007/enigma",
5
+ "description": "On-demand over-engineering review - diff review, whole-repo audit, and enigma: debt-marker ledger (tags delete/stdlib/native/yagni/shrink, line/dep scoring); lists cuts, applies nothing.",
6
+ "cliVersion": "1.15.0",
7
+ "sha": "f742a2be3f328b9ea1ff9a35a449177c2cbec35ad16e46f7054b7a873a2ab017"
8
+ }
@@ -3,6 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Backend/API architecture: controller-service-repository layering, API and request optimization, server-side caching (Redis), and Zod boundary validation.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "c442bc9e39a7710cb709ef2abb8d15ecd8aa16ed4f5c8af92b7af6877401cba4"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.1.1",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Ciphera code style conventions (formatting, naming, imports, comments, code-level anti-patterns; TypeScript-first, language-agnostic).",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "74f638aec13e8c93257fe1ad604c28b07e9a7c456796a4ceefcc99217d9e7039"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Pre-delivery self-review gate, prioritized review dimensions, and change-quality criteria.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "3d3bbe0602d5bbb4afe37648fe3c2fa39376b1bcbac5d8c441f01fad1e866ed0"
8
8
  }
@@ -36,6 +36,8 @@ description: Highest-authority engineering rules - priority hierarchy, modular a
36
36
  - Any new or changed code that needs verification -> testing-policy.
37
37
  - Any test file created, moved, or renamed, or a test suite scaffolded/restructured -> test-organization-policy.
38
38
  - Any source code written, refactored, or reviewed (formatting, naming, language idioms) -> ciphera-style-policy.
39
+ - Any implementation code being written or refactored, or any "be lazy"/"simplify"/over-engineering request -> anti-overengineering-policy.
40
+ - A one-shot complexity-only review/audit, "what can we delete", "find bloat", or an enigma: debt-marker ledger -> anti-overengineering-review.
39
41
  - Before declaring a change done, or when reviewing a diff/PR -> code-review-policy.
40
42
  - Any bug, crash, failing test, or unexpected behavior -> debugging-policy.
41
43
  - Any commit, branch, or pull request -> git-policy.
@@ -86,6 +88,8 @@ This core policy owns orchestration, architecture, and the global rules. Each co
86
88
  - debugging-policy: reproduce-isolate-fix methodology and root-cause discipline.
87
89
  - git-policy: commits, branches, and pull request standards.
88
90
  - ciphera-style-policy: Ciphera code style conventions - formatting, naming, quotes, string interpolation, length-sorted imports, indentation, comments/JSDoc, and code-level anti-patterns (TypeScript-first, language-agnostic).
91
+ - anti-overengineering-policy: minimal-code discipline - the YAGNI ladder (stdlib/native/installed-dependency/one-line before custom code), deletion over addition, no unrequested abstractions, the enigma: shortcut-marking convention, and intensity via the minimal-code setting. Owns the detail behind the Anti-Overengineering Rule below.
92
+ - anti-overengineering-review: on-demand complexity-only review - diff review, whole-repo audit, and the enigma: debt-marker ledger (tags delete/stdlib/native/yagni/shrink, line/dep scoring). Lists cuts, applies nothing; correctness/security/performance stay with code-review-policy.
89
93
  - security-policy: application and AI-agent security - secrets, authn/authz (least privilege), OWASP Top 10, transport/crypto baseline, secure logging, and agent/MCP/tool-use safety. Owns runtime security; the core security baseline defers detail here.
90
94
  - dependency-policy: dependency and supply-chain security - lockfiles, reproducible installs, version pinning, vulnerability auditing, vetting/minimizing packages, vendoring, and SBOM/provenance.
91
95
  - task-completion-policy: exhaustive coverage for long/multi-item tasks - mechanical work-unit inventory, persistent coverage ledger, per-unit verification, and the evidence-based completion gate that must pass before any "done" claim.
@@ -231,6 +235,7 @@ Each module must handle only one responsibility, such as:
231
235
  - Complexity increases
232
236
  - Domain separation is required
233
237
 
238
+ - The YAGNI ladder, deletion-over-addition, and shortcut-marking detail live in anti-overengineering-policy.
234
239
  - Layer-specific structure rules live in backend-policy and frontend-policy.
235
240
 
236
241
  ---
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "core-engineering-policy",
3
- "version": "1.6.0",
3
+ "version": "1.8.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Core engineering execution policy and harness orchestration (highest-authority rules).",
6
- "cliVersion": "1.13.2",
7
- "sha": "b44681bc21675fff949a2d9e1a67617bc7638dc5acec6270906f3ca0a9052a86"
6
+ "cliVersion": "1.15.0",
7
+ "sha": "54144f87e477c4b1c004abf2268d9294778e1e96e634bb837b4b1717aa1b7b16"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.1.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Senior database architecture policy: query optimization, anti-duplication/normalization, scalability, and RGPD/GDPR encryption.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "2883bcecb3202683ae6f81b073c3d6a9cec9c55029e011bdd06ba7ac3537297e"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Reproduce-isolate-fix debugging methodology with root-cause discipline and regression verification.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "14b0064c8b33a0dc85e51464b05005cf5801c756b1101789a6924b9548420f6b"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Dependency and supply-chain security: lockfiles and reproducible installs, version pinning, vulnerability auditing, vetting/minimizing packages, vendoring, and SBOM/provenance.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "6375d835c2aef2c9bd31ce116444dc3d796f510f9970a213aa3ac4696d7e21b9"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.2.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Frontend architecture: reusable components, abstraction thresholds, state management, no-op save detection, and optimistic UI with rollback.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "3766096616a9177ce66685bfaaaef66f7e8ceb62e2a6542e83dee713b9d1b56f"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.3.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Git & contribution policy (senior engineering standards).",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "73a978ef11f4def067f9252fc3e2e6aa737a08b6d58ad8a2a45cbcd4b02813f6"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Application and AI-agent security: secrets, authn/authz (least privilege), OWASP Top 10, transport/crypto baseline, secure logging, and agent/MCP/tool-use safety.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "9971e9d9127397d0152e89d24aad3191e2935e55a8483db7fd15f5d4d7a60e7a"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.1.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Exhaustive completion discipline for long/multi-item tasks - inventory, coverage ledger, verified done.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "6e3facba307eb2b55cefbab2e4b2a346a2b82f93c3ef47e11ebeb78c3c9453a8"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Expert test-suite organization: structure by test type and domain, mirrored source paths, naming conventions, and fixture/helper placement.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "09184beb8e423efd26fce0221cd374d41b6ba0bb3d223d7edce250d9d978767e"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.1.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Test strategy, coverage gates, deterministic tests, mocking discipline, and regression-first bug fixing.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "dd5c0bb67aba7f31b2f520e626a9df512b5ad2d2e7baf5567fe64d9e28a437db"
8
8
  }
@@ -3,6 +3,6 @@
3
3
  "version": "1.0.0",
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Strict frontend + backend schema validation, schema consistency, and safe client-facing error handling.",
6
- "cliVersion": "1.13.2",
6
+ "cliVersion": "1.15.0",
7
7
  "sha": "a33622a2f810ee4cea39824cb1a7ca34b355a917d4224025df50d77dd74f0b3a"
8
8
  }
@@ -1,6 +1,6 @@
1
1
  {
2
- "enigma-darwin-arm64": "424f703d370ca5a8bbe5f0bc8e81a99359e0a7338489116032e6772ef1d1bade",
3
- "enigma-linux-arm64": "668afa533f005cc792acb3617e43593c9d3a224d18402f9378946157d7c18260",
4
- "enigma-linux-x64": "fcf07f054f5cbb672c058e322624c439913982465021c0cac96e426d188d0b7b",
5
- "enigma-win32-x64.exe": "dfd1eece414821631a5fba8df39ee7cddcbbe94c9159108bba94e2552fa6623e"
2
+ "enigma-darwin-arm64": "d6c2b6e9f56a2990eec5ba36839689c1de854bba4ffc67273804c0adbc900d76",
3
+ "enigma-linux-arm64": "136e536a42ccf808adfb1baa340cff2c8b87a662a4cd933b73cfc4f95d3ead39",
4
+ "enigma-linux-x64": "99b983ae1d1f47f0a678cd81845ee165229535ef18bdd2563404bdd1065d1db8",
5
+ "enigma-win32-x64.exe": "ba9ab77cdb0f6331703f8784c3782e98cc5b2f4c3299987498f0520e95404e7a"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enigma-cli",
3
- "version": "1.13.2",
3
+ "version": "1.15.0",
4
4
  "description": "Everything you need to work with a coding agent: install shared policy skills for Claude Code, OpenAI Codex and opencode, and set up portable git security hooks.",
5
5
  "type": "module",
6
6
  "bin": {