enigma-cli 1.35.1 → 1.35.3

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
@@ -68,7 +68,10 @@ Everything in **Minimum**, plus:
68
68
  enigma Interactive menu: choose features to set up
69
69
  enigma install Install/update agent skills
70
70
  enigma security Set up git security hooks in the current repo
71
- enigma guard [--all] Run the commit guard (staged files, or all tracked)
71
+ enigma guard [--all] Run the commit guard: staged files, --all for all tracked, or
72
+ --range <base>..<head> for what a commit range touched (pre-push,
73
+ CI). --json emits one document; exits 1 on findings, 2 if it
74
+ could not run at all
72
75
  enigma config [k v] Show or set runtime toggles (e.g. config commit-emoji off)
73
76
  enigma <tool> [acct] Launch claude | codex | opencode with an account
74
77
  (resolution: explicit > active profile > tool active);
@@ -81,7 +84,8 @@ enigma compress [file] Compress JSON/logs/text to fewer tokens (reversible via C
81
84
  --clear wipes all dashboard data (stats/history/cache)
82
85
  enigma verify Check that work reported as finished actually is: scans the change for
83
86
  unfinished work and runs your verification command. parity <src> <dst>
84
- compares a codebase against a port of it. Also runs at turn end
87
+ compares a codebase against a port of it. --json emits one document;
88
+ exits 1 on findings, 2 when the check could not run. Also runs at turn end
85
89
  enigma mcp Run the context-compression MCP server over stdio
86
90
  enigma dashboard|dash Open the local dashboard (manage enigma; see savings) in your browser (http://enigma,
87
91
  or http://localhost:24282 if :80/hosts is unavailable)
@@ -94,6 +98,30 @@ enigma check Integrity gate: verify skills are well-formed and sealed
94
98
  enigma help | version
95
99
  ```
96
100
 
101
+ Every command answers `enigma <command> --help` with its own usage, flags and exit codes.
102
+
103
+ ### Running enigma inside a container or CI runner
104
+
105
+ ```
106
+ enigma install --hooks <cls> Which hooks to wire: post-edit, stop | all | none
107
+ enigma install --no-hooks Wire none of them --no-statusline Leave statusLine alone
108
+ enigma install --ref <tag|sha> Pin the skills ref (the resolved commit is printed)
109
+ enigma install --assets-from <dir> Install from a staged assets tree (implies --offline)
110
+ enigma install --offline Make no network call at all
111
+
112
+ ENIGMA_AGENT_CLAUDE=<abs path> Point the gate at an agent installed off PATH
113
+ (also _CODEX, _OPENCODE, _ROVODEV, _PI). The daemon runs
114
+ the pipeline, so set it before the daemon starts
115
+ ENIGMA_BIN_PATH=<abs path> Use this enigma binary instead of downloading the release
116
+ ENIGMA_SKILLS_REF=<tag|sha> Default skills ref (install --ref overrides it)
117
+ ENIGMA_OFFLINE=1 No enigma command reaches the network - the skill check,
118
+ the update notice and the background linter/dashboard
119
+ installs all stand down (install --offline sets it)
120
+ ```
121
+
122
+ `gh` is needed only by the gate's push, pr and ci steps: `enigma gate axi run --skip
123
+ push,pr,ci` and `enigma gate init` work in an image without it.
124
+
97
125
  ## Agent skills
98
126
 
99
127
  Skills are authored once and deployed to every selected agent (no per-agent
@@ -265,6 +293,13 @@ On every commit the guard, OS-agnostically:
265
293
  Each protection is individually toggleable (saved to `.githooks/enigma-guard.json`).
266
294
  Bypass once with `git commit --no-verify`.
267
295
 
296
+ `enigma guard` also runs standalone, outside the pre-commit hook, for a pre-push hook or CI
297
+ job where nothing is staged: `enigma guard --range <base>..<head>` scans exactly what a
298
+ commit range touched (a lone ref means `<ref>..HEAD`), reading each file at that range's
299
+ head rather than the working tree, so a secret committed and then edited out is still
300
+ caught. `--json` emits one machine-readable document; exit codes split 0 clean, 1 blocking
301
+ findings, 2 the guard could not run at all (no repository, an unresolvable range).
302
+
268
303
  ## Multiple accounts and profiles
269
304
 
270
305
  Work across separate workflows with different accounts per tool - for example
@@ -441,9 +476,10 @@ enigma install --output-style lite # set it during install
441
476
 
442
477
  `on`/`off` also work (`on` = `full`). Like the toggle above it edits the memory
443
478
  file, so **restart your agent** after changing it. Code, comments, commits, and
444
- PRs stay normal, the agent reverts to full prose for security warnings and other
445
- safety-critical replies, and the level is switchable mid-session by asking
446
- ("be more terse", "ultra", "normal mode").
479
+ PRs stay normal, and the agent reverts to full prose for security warnings and
480
+ other safety-critical replies. Only the selected level's rules are deployed, so
481
+ asking for "normal mode" lifts the compression for the rest of the session while
482
+ changing level takes `enigma config output-style <level>` and an agent restart.
447
483
 
448
484
  Claude Code's status bar shows an `[ENIGMA]` badge at all times; while the mode is
449
485
  active it appends the level (`[ENIGMA:FULL]`, `[ENIGMA:LITE]`, `[ENIGMA:ULTRA]`).
@@ -68,13 +68,23 @@ Non-negotiable, language-agnostic defaults - apply them by default without being
68
68
  <!-- enigma:output-style:start -->
69
69
  ### Output Style (Token-Efficient)
70
70
 
71
- - Default to **{{output-level}}** compression in conversational prose: cut filler, pleasantries, and hedging while keeping every technical fact, exact identifier, and code block intact. Brevity must never drop substance or change a technical claim.
72
- - Levels (the user can switch any time by asking - e.g. "be more terse", "full", "ultra", or "normal mode" to turn it off):
73
- - **lite** - professional and tight: drop filler and hedging, keep correct grammar and the user's language. The most conservative level.
74
- - **full** - drop articles and use fragments where meaning stays unambiguous; prefer short synonyms ("fix", not "implement a solution for"). The default when enabled.
75
- - **ultra** - telegraphic: one word where one word suffices, arrows for causality (X -> Y). Never abbreviate code symbols, function/API names, paths, or error strings.
76
- - Auto-clarity: revert to full prose for security warnings, irreversible or destructive action confirmations, and any multi-step sequence where compression would make the order or meaning ambiguous. Resume after the critical part.
77
- - 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.
71
+ Prose to the user is compressed at level **{{output-level}}**. It shapes the ANSWER, never the work: thinking, tool calls, verification and scope are untouched. A short reply that skipped a check is the one failure this can cause, and the worst one.
72
+
73
+ - Active on EVERY response, the fiftieth as much as the first. Drifting back to full prose after a few turns is the failure mode: unsure whether it still applies -> it does. Only the user lifts it ("normal mode").
74
+ - Answer what was ASKED, at the size it deserves. Yes/no -> the verdict on line one, then only what proves it (a path, a commit, a test result). Four asks -> four short items, a table or a checklist, never four essays. Never restate the request, announce what you are about to do, or head a three-line answer.
75
+ - Report the outcome, not the route to it: no process narration, no ruled-out alternatives, no list of what you never touched. Work left unfinished, unverified or blocked IS an outcome - always name it.
76
+ - Cut filler (just, really, basically, simply), pleasantries (sure, happy to, of course) and hedging. Facts, identifiers, numbers and code blocks survive intact: compression drops words, never substance.
77
+ - Not: "I've taken a look, and it appears the issue is most likely caused by the auth middleware not validating token expiry correctly." The same finding, at your level:
78
+ <!-- enigma:case:outputStyle=lite -->
79
+ - lite: professional and tight. Articles and whole sentences stay; filler and hedging go. Yes: "The auth middleware's expiry check uses `<` where it should use `<=`. Fixed in `auth.ts:42`."
80
+ <!-- enigma:case:end -->
81
+ <!-- enigma:case:outputStyle=full -->
82
+ - full: drop articles, fragments fine, short synonyms ("fix", not "implement a solution for"). Shape: `[thing] [state] [reason]. [next step].` Yes: "Auth middleware: expiry check uses `<`, should be `<=`. Fixed in `auth.ts:42`."
83
+ <!-- enigma:case:end -->
84
+ <!-- enigma:case:outputStyle=ultra -->
85
+ - ultra: telegraphic. One word where one suffices, arrows for causality (X -> Y), conjunctions dropped. Never abbreviate code symbols, function or API names, paths, or error strings. Yes: "`auth.ts:42`: expiry check `<` -> `<=`. Fixed."
86
+ <!-- enigma:case:end -->
87
+ - Full prose returns for security warnings, destructive confirmations, a multi-step sequence whose order compression would blur, and a question the user had to repeat; resume after. Code, comments, commits, PR text and file contents are always written normally. Always answer in the user's language.
78
88
  <!-- enigma:output-style:end -->
79
89
 
80
90
  <!-- enigma:recall:start -->
@@ -68,13 +68,23 @@ Non-negotiable, language-agnostic defaults - apply them by default without being
68
68
  <!-- enigma:output-style:start -->
69
69
  ### Output Style (Token-Efficient)
70
70
 
71
- - Default to **{{output-level}}** compression in conversational prose: cut filler, pleasantries, and hedging while keeping every technical fact, exact identifier, and code block intact. Brevity must never drop substance or change a technical claim.
72
- - Levels (the user can switch any time by asking - e.g. "be more terse", "full", "ultra", or "normal mode" to turn it off):
73
- - **lite** - professional and tight: drop filler and hedging, keep correct grammar and the user's language. The most conservative level.
74
- - **full** - drop articles and use fragments where meaning stays unambiguous; prefer short synonyms ("fix", not "implement a solution for"). The default when enabled.
75
- - **ultra** - telegraphic: one word where one word suffices, arrows for causality (X -> Y). Never abbreviate code symbols, function/API names, paths, or error strings.
76
- - Auto-clarity: revert to full prose for security warnings, irreversible or destructive action confirmations, and any multi-step sequence where compression would make the order or meaning ambiguous. Resume after the critical part.
77
- - 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.
71
+ Prose to the user is compressed at level **{{output-level}}**. It shapes the ANSWER, never the work: thinking, tool calls, verification and scope are untouched. A short reply that skipped a check is the one failure this can cause, and the worst one.
72
+
73
+ - Active on EVERY response, the fiftieth as much as the first. Drifting back to full prose after a few turns is the failure mode: unsure whether it still applies -> it does. Only the user lifts it ("normal mode").
74
+ - Answer what was ASKED, at the size it deserves. Yes/no -> the verdict on line one, then only what proves it (a path, a commit, a test result). Four asks -> four short items, a table or a checklist, never four essays. Never restate the request, announce what you are about to do, or head a three-line answer.
75
+ - Report the outcome, not the route to it: no process narration, no ruled-out alternatives, no list of what you never touched. Work left unfinished, unverified or blocked IS an outcome - always name it.
76
+ - Cut filler (just, really, basically, simply), pleasantries (sure, happy to, of course) and hedging. Facts, identifiers, numbers and code blocks survive intact: compression drops words, never substance.
77
+ - Not: "I've taken a look, and it appears the issue is most likely caused by the auth middleware not validating token expiry correctly." The same finding, at your level:
78
+ <!-- enigma:case:outputStyle=lite -->
79
+ - lite: professional and tight. Articles and whole sentences stay; filler and hedging go. Yes: "The auth middleware's expiry check uses `<` where it should use `<=`. Fixed in `auth.ts:42`."
80
+ <!-- enigma:case:end -->
81
+ <!-- enigma:case:outputStyle=full -->
82
+ - full: drop articles, fragments fine, short synonyms ("fix", not "implement a solution for"). Shape: `[thing] [state] [reason]. [next step].` Yes: "Auth middleware: expiry check uses `<`, should be `<=`. Fixed in `auth.ts:42`."
83
+ <!-- enigma:case:end -->
84
+ <!-- enigma:case:outputStyle=ultra -->
85
+ - ultra: telegraphic. One word where one suffices, arrows for causality (X -> Y), conjunctions dropped. Never abbreviate code symbols, function or API names, paths, or error strings. Yes: "`auth.ts:42`: expiry check `<` -> `<=`. Fixed."
86
+ <!-- enigma:case:end -->
87
+ - Full prose returns for security warnings, destructive confirmations, a multi-step sequence whose order compression would blur, and a question the user had to repeat; resume after. Code, comments, commits, PR text and file contents are always written normally. Always answer in the user's language.
78
88
  <!-- enigma:output-style:end -->
79
89
 
80
90
  <!-- enigma:recall:start -->
@@ -7,6 +7,6 @@
7
7
  "minimalCode"
8
8
  ],
9
9
  "updated": "2026-07-17T00:17:02+02:00",
10
- "cliVersion": "1.35.1",
10
+ "cliVersion": "1.35.3",
11
11
  "sha": "3f0dcc28341bb0407860534f7ce9314cfc91b5e673f8f3d13b89d61851ed75f6"
12
12
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
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
6
  "updated": "2026-06-16T11:24:30+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "f742a2be3f328b9ea1ff9a35a449177c2cbec35ad16e46f7054b7a873a2ab017"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Backend/API architecture: controller-service-repository layering, modern TypeScript project configuration (module resolution, strict flags, @/* path alias), API and request optimization (batching, avoiding redundant calls, skipping no-op writes), server-side caching (Redis), and Zod boundary validation.",
6
6
  "updated": "2026-08-02T19:59:01+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "652637f818b4ce4f4d5d83fa68fa57fe7842e32fb179523958c5496af54bb938"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Ciphera code style conventions (formatting, naming, imports incl. namespace imports for wide module surfaces, path-alias specifiers and no file extensions, comments, code-level anti-patterns; TypeScript-first, language-agnostic).",
6
6
  "updated": "2026-08-02T19:59:01+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "3beb0383a9cb0331ef8a579308a2517d24d57a8ba33751ad17d16d0a4f66e344"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Pre-delivery self-review gate, prioritized review dimensions, and change-quality criteria.",
6
6
  "updated": "2026-08-02T04:15:47+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "b35f0bb4a29f2346d9a1b00a4bfee9557a9b6a44116d9e6e59abcd945466dbcb"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Core engineering execution policy and harness orchestration (highest-authority rules), including the generalization rule that treats a named example as a class to sweep and fix.",
6
6
  "updated": "2026-08-02T04:28:51+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "95091678d4e72e3a9b1ef3ad0514e503a2a631f0d134bf772b4a1b3c66881995"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Senior database architecture policy: engine selection (PostgreSQL by default, SQLite only for local-first/embedded stores), ORM selection (Prisma in TypeScript/JavaScript), query optimization, anti-duplication/normalization, scalability, and RGPD/GDPR encryption.",
6
6
  "updated": "2026-08-04T18:33:27+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "26fddc14caf697e830448a2cc453ddc470fe83d098d50bd67b278effba63274e"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Reproduce-isolate-fix debugging methodology with root-cause discipline and regression verification.",
6
6
  "updated": "2026-08-02T04:15:47+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "968876bcac9ce6e5a20be05c89ac97191b112c9e08679a8dc506d150c375fec4"
9
9
  }
@@ -4,6 +4,6 @@
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
6
  "updated": "2026-06-01T00:45:28+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "6375d835c2aef2c9bd31ce116444dc3d796f510f9970a213aa3ac4696d7e21b9"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Transactional email: React Email templates instead of hand-written HTML tables, server-side rendering, one send module behind the provider SDK, plain-text alternatives, idempotent background sending, link safety, and deliverability (SPF/DKIM/DMARC, bounce suppression, unsubscribe).",
6
6
  "updated": "2026-07-30T19:29:19+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "c9724fdbcdbeab99573be3fd44d4cdd97c2a394d99f3c4395f118f17356b00ed"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one.",
6
6
  "updated": "2026-07-29T01:18:36+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "9e30ee7d8a1a1e8c6e7f4e043857cd01841c68a427752e45bc0cad9ec5cfa279"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Frontend architecture: reusable components, abstraction thresholds, state management, no-op detection (skip any operation whose result equals current state, not just form saves; dirty means different from the loaded snapshot, not touched), instant first paint (render the shell, load data async, skeletons), perceived performance (prefetch on intent, debounce/throttle, cancel stale requests, avoid waterfalls, lazy widgets), large-list rendering (infinite scroll is the preferred default, pagination the deliberate exception when the design or the user calls for it, virtualization, skeletons, progressive loading), data views that ship their own affordances by default (a log, expense, transaction or history table is not done when the rows render: fuse.js search, the filters its column kinds imply, a date range, sort, filter state in the URL, and an export of the filtered set), every reference to an entity being a way into it (a name, id, project or path in a row links to that record, reveals it in a hover card, or at minimum copies and filters by it, never inert text; machine codes get human labels and raw payloads are never dumped into a cell), optimistic UI with rollback, visual restraint (one card level, spacing before borders, one elevation scale), icon actions (repeated row/card actions are icon-only buttons with aria-label plus title, not text labels), responsive/adaptive layout (fluid units, breakpoints, no overlap/overflow, viewport meta, touch targets), form fields that declare their keyboard and casing (autocapitalize/autocomplete/inputmode per field kind, set once in the shared Input, normalized on blur), variable-length text (min-width:0 in flex/grid, wrap vs truncate, long unbroken strings, worst-case content checks), auth screens (breached-password feedback, strength meter, cookie consent before login/register), and AI chat/agent interfaces via Vercel's AI Elements registry instead of hand-rolled message threads.",
6
6
  "updated": "2026-08-04T14:11:26+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "e5fbf094be2e7a00e40d02fd7611b7333b1249d7ac951029b8944e359135aa21"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Git & contribution policy (senior engineering standards).",
6
6
  "updated": "2026-08-04T20:04:42+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "f55f4ed5474d5c6e7fd0804d88ac38fb3c9c3cd863519645d1415c02f4416db7"
9
9
  }
@@ -7,6 +7,6 @@
7
7
  "logoColorPolicy"
8
8
  ],
9
9
  "updated": "2026-07-17T00:17:02+02:00",
10
- "cliVersion": "1.35.1",
10
+ "cliVersion": "1.35.3",
11
11
  "sha": "09cdbefd98625b02a7d03685e5deed128238ff8454a83fe22279610fe3ef8ddf"
12
12
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Application and AI-agent security: secrets, authn/authz (least privilege), credential flows with breach-checked passwords (Have I Been Pwned), OWASP Top 10, transport/crypto baseline, cookies and consent, secure logging, and agent/MCP/tool-use safety.",
6
6
  "updated": "2026-08-02T19:59:01+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "3201b6d41437626eb7bf45648c0d7f8c419dc4de87fbd9d4ca83c5ae3b6b6edf"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Create new skills, modify and improve existing skills, and measure skill performance with evals and benchmarks.",
6
6
  "updated": "2026-08-03T00:16:54+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "a49f6166f57d734e0f13487332da37903e925f32257447856af0fbd6a5f1dc84"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Exhaustive completion discipline for long/multi-item tasks - inventory, coverage ledger, verified done.",
6
6
  "updated": "2026-08-02T04:15:47+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "4c2197954135dd3375f32d839238b82a95c0e93e976ddf5a9cbc4a0cf0146e97"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Concise, realistic technical copy - UI microcopy, descriptions, hints, empty/error states, and README/doc prose that informs without over-explaining or restating the obvious, and never uses a typographic dash.",
6
6
  "updated": "2026-07-28T20:30:23+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "a4b792103eb1f9dad93b9d70ea79dc18fe9cbbc318facf5adb47ae5907d842f9"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Test strategy, coverage gates, deterministic tests, mocking discipline, regression-first bug fixing, and test-suite organization (layout by type/domain, mirrored paths, file naming, fixture/helper placement).",
6
6
  "updated": "2026-06-16T17:11:49+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "3bdf591057b760f674fb2b1425f63acb426cda2c4f042e1a74c5a5d3807df664"
9
9
  }
@@ -4,6 +4,6 @@
4
4
  "provider": "FJRG2007/enigma",
5
5
  "description": "Strict frontend + backend schema validation, normalization before validation (shared normalizers: trim, lowercase email, capitalize names, canonicalize links and handles), schema consistency, and safe client-facing error handling.",
6
6
  "updated": "2026-08-01T17:44:16+02:00",
7
- "cliVersion": "1.35.1",
7
+ "cliVersion": "1.35.3",
8
8
  "sha": "225e1e26f4a49fac70714b1bebc104ea42143203cc8fcc9e3330b29f05b6e025"
9
9
  }
@@ -1,6 +1,6 @@
1
1
  {
2
- "enigma-darwin-arm64": "f54b09af03c95df904ae57543d4ffb0b9d3d3165a561de4a81e2fcb9271f152d",
3
- "enigma-linux-arm64": "712f04659e37d77d2593e0c5a66135a690b76fbd37f3b48582063742a367c69f",
4
- "enigma-linux-x64": "98afcea630f221f10e1eb9850e6df64036a3375a28bacd8276ec3b6559bd8b0a",
5
- "enigma-win32-x64.exe": "0f52ef8da10adf303756785bc9f30c6470662840c21e0f27110bebc3159f4726"
2
+ "enigma-darwin-arm64": "7806087b53324b06105fe76f16191f79e16bb25a00b8c7fbae4c09d2ebcfaa79",
3
+ "enigma-linux-arm64": "0a34fb5662b3523253d87098b93281be8fd57006e920846840f806a5eb1228cd",
4
+ "enigma-linux-x64": "c9dfc40e4d568557ae3e91ea54ce71698ce23825406eb34d43183c6d9c75b303",
5
+ "enigma-win32-x64.exe": "9d1add8d345b8e41f766eb016fa2b2295952e55f65053264a5f5e33bc13e4835"
6
6
  }
package/dist/guard.js CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "enigma-cli",
3
- "version": "1.35.1",
3
+ "version": "1.35.3",
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": {