enigma-cli 1.28.3 → 1.29.1
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/assets/memory/AGENTS.md +0 -20
- package/assets/memory/CLAUDE.md +0 -20
- package/assets/skills/anti-overengineering-policy/SKILL.md +25 -15
- package/assets/skills/anti-overengineering-policy/skill.json +7 -4
- package/assets/skills/anti-overengineering-review/skill.json +1 -1
- package/assets/skills/backend-policy/skill.json +1 -1
- package/assets/skills/ciphera-style-policy/skill.json +1 -1
- package/assets/skills/code-review-policy/skill.json +1 -1
- package/assets/skills/core-engineering-policy/skill.json +1 -1
- package/assets/skills/database-expert/skill.json +1 -1
- package/assets/skills/debugging-policy/skill.json +1 -1
- package/assets/skills/dependency-policy/skill.json +1 -1
- package/assets/skills/frontend-design/skill.json +1 -1
- package/assets/skills/frontend-policy/skill.json +1 -1
- package/assets/skills/git-policy/skill.json +1 -1
- package/assets/skills/logo-sourcing-policy/SKILL.md +17 -11
- package/assets/skills/logo-sourcing-policy/skill.json +7 -4
- package/assets/skills/security-policy/skill.json +1 -1
- package/assets/skills/skill-creator/skill.json +1 -1
- package/assets/skills/task-completion-policy/skill.json +1 -1
- package/assets/skills/technical-writing-policy/skill.json +1 -1
- package/assets/skills/testing-policy/skill.json +1 -1
- package/assets/skills/validation-policy/skill.json +1 -1
- package/bin/checksums.json +4 -4
- package/package.json +1 -1
package/assets/memory/AGENTS.md
CHANGED
|
@@ -56,26 +56,6 @@
|
|
|
56
56
|
- 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.
|
|
57
57
|
<!-- enigma:output-style:end -->
|
|
58
58
|
|
|
59
|
-
<!-- enigma:minimal-code:start -->
|
|
60
|
-
### Minimal Code (Anti-Overengineering)
|
|
61
|
-
|
|
62
|
-
- 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.
|
|
63
|
-
- 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.
|
|
64
|
-
- Levels (the user can switch any time, e.g. "be more lazy", "full", "ultra", or "stop minimal-code" to turn it off):
|
|
65
|
-
- **lite** - build what was asked, but name the lazier alternative in one line; the user picks.
|
|
66
|
-
- **full** - the ladder enforced: stdlib and native first, shortest diff and explanation. The default when enabled.
|
|
67
|
-
- **ultra** - YAGNI extremist: deletion before addition, ship the one-liner and challenge the rest of the requirement in the same response.
|
|
68
|
-
- 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).
|
|
69
|
-
<!-- enigma:minimal-code:end -->
|
|
70
|
-
|
|
71
|
-
<!-- enigma:logo-sourcing:start -->
|
|
72
|
-
### Brand Logos and Icons
|
|
73
|
-
|
|
74
|
-
- Never fabricate, redraw, or emit from-memory SVG paths for the logo of a real company, product, platform, framework, or technology. SOURCE the official asset: the vendor's brand/press kit, or a vector-logo registry (simpleicons.org, svgl.app, worldvectorlogo.com, cdnlogo.com, iconify.design, devicon.dev), or an already-installed icon package; search the web when you can. Full detail in logo-sourcing-policy. Only author marks that do not exist yet (the user's own project logo, a generic placeholder); if you cannot get a real one, ask the user - never invent it.
|
|
75
|
-
- Prefer vector (SVG); for web or WebP-capable targets prefer an optimized WebP/AVIF over PNG when a raster is required (smaller, faster). Keep the brand's official colors.
|
|
76
|
-
- Check contrast before placing a logo: read the SVG fills to tell if it is monochrome (e.g. a solid black/white mark) and would vanish on a same-tone background. Resolve a clash per the logo-color-policy setting = **{{logo-color-policy}}**: `ask` (stop and ask the user how to resolve), `adapt-background` (add a contrasting container/badge behind the logo, keep its colors), `adapt-logo` (swap to the opposite brand variant / recolor the mark to fit).
|
|
77
|
-
<!-- enigma:logo-sourcing:end -->
|
|
78
|
-
|
|
79
59
|
<!-- enigma:recall:start -->
|
|
80
60
|
### Session Memory (Recall)
|
|
81
61
|
|
package/assets/memory/CLAUDE.md
CHANGED
|
@@ -56,26 +56,6 @@
|
|
|
56
56
|
- 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.
|
|
57
57
|
<!-- enigma:output-style:end -->
|
|
58
58
|
|
|
59
|
-
<!-- enigma:minimal-code:start -->
|
|
60
|
-
### Minimal Code (Anti-Overengineering)
|
|
61
|
-
|
|
62
|
-
- 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.
|
|
63
|
-
- 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.
|
|
64
|
-
- Levels (the user can switch any time, e.g. "be more lazy", "full", "ultra", or "stop minimal-code" to turn it off):
|
|
65
|
-
- **lite** - build what was asked, but name the lazier alternative in one line; the user picks.
|
|
66
|
-
- **full** - the ladder enforced: stdlib and native first, shortest diff and explanation. The default when enabled.
|
|
67
|
-
- **ultra** - YAGNI extremist: deletion before addition, ship the one-liner and challenge the rest of the requirement in the same response.
|
|
68
|
-
- 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).
|
|
69
|
-
<!-- enigma:minimal-code:end -->
|
|
70
|
-
|
|
71
|
-
<!-- enigma:logo-sourcing:start -->
|
|
72
|
-
### Brand Logos and Icons
|
|
73
|
-
|
|
74
|
-
- Never fabricate, redraw, or emit from-memory SVG paths for the logo of a real company, product, platform, framework, or technology. SOURCE the official asset: the vendor's brand/press kit, or a vector-logo registry (simpleicons.org, svgl.app, worldvectorlogo.com, cdnlogo.com, iconify.design, devicon.dev), or an already-installed icon package; search the web when you can. Full detail in logo-sourcing-policy. Only author marks that do not exist yet (the user's own project logo, a generic placeholder); if you cannot get a real one, ask the user - never invent it.
|
|
75
|
-
- Prefer vector (SVG); for web or WebP-capable targets prefer an optimized WebP/AVIF over PNG when a raster is required (smaller, faster). Keep the brand's official colors.
|
|
76
|
-
- Check contrast before placing a logo: read the SVG fills to tell if it is monochrome (e.g. a solid black/white mark) and would vanish on a same-tone background. Resolve a clash per the logo-color-policy setting = **{{logo-color-policy}}**: `ask` (stop and ask the user how to resolve), `adapt-background` (add a contrasting container/badge behind the logo, keep its colors), `adapt-logo` (swap to the opposite brand variant / recolor the mark to fit).
|
|
77
|
-
<!-- enigma:logo-sourcing:end -->
|
|
78
|
-
|
|
79
59
|
<!-- enigma:recall:start -->
|
|
80
60
|
### Session Memory (Recall)
|
|
81
61
|
|
|
@@ -85,21 +85,31 @@ deferred optimization stays visible and owned.
|
|
|
85
85
|
|
|
86
86
|
## Intensity (minimal-code setting)
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
88
|
+
When the user asks to be "more/less lazy" mid-session, follow that for the session.
|
|
89
|
+
|
|
90
|
+
<!-- enigma:config:start -->
|
|
91
|
+
Apply this intensity (using "Add a cache for these API responses" as the illustration):
|
|
92
|
+
|
|
93
|
+
<!-- enigma:case:minimalCode=off -->
|
|
94
|
+
Discipline is opt-in: build what was asked without pushing minimalism, and apply the ladder
|
|
95
|
+
above only when the user explicitly asks to simplify.
|
|
96
|
+
<!-- enigma:case:end -->
|
|
97
|
+
<!-- enigma:case:minimalCode=lite -->
|
|
98
|
+
Build what was asked, but name the lazier alternative in one line and let the user pick.
|
|
99
|
+
Example: "Done. FYI: `functools.lru_cache` covers this in one line if you'd rather not own a
|
|
100
|
+
cache class."
|
|
101
|
+
<!-- enigma:case:end -->
|
|
102
|
+
<!-- enigma:case:minimalCode=full -->
|
|
103
|
+
Enforce the ladder: stdlib and native first, shortest diff, shortest explanation. Example:
|
|
104
|
+
"`@lru_cache(maxsize=1000)` on the fetch function. Skipped a custom cache class; add it when
|
|
105
|
+
lru_cache measurably falls short."
|
|
106
|
+
<!-- enigma:case:end -->
|
|
107
|
+
<!-- enigma:case:minimalCode=ultra -->
|
|
108
|
+
YAGNI extremist: deletion before addition; ship the one-liner and challenge the rest of the
|
|
109
|
+
requirement in the same response. Example: "No cache until a profiler says so. When it does:
|
|
110
|
+
`@lru_cache`. A hand-rolled TTL cache is a bug farm with a hit rate."
|
|
111
|
+
<!-- enigma:case:end -->
|
|
112
|
+
<!-- enigma:config:end -->
|
|
103
113
|
|
|
104
114
|
## When NOT to Be Lazy
|
|
105
115
|
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "anti-overengineering-policy",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
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
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"config": [
|
|
7
|
+
"minimalCode"
|
|
8
|
+
],
|
|
9
|
+
"updated": "2026-07-17T00:17:02+02:00",
|
|
10
|
+
"cliVersion": "1.29.1",
|
|
11
|
+
"sha": "3f0dcc28341bb0407860534f7ce9314cfc91b5e673f8f3d13b89d61851ed75f6"
|
|
9
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.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
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, API and request optimization, server-side caching (Redis), and Zod boundary validation.",
|
|
6
6
|
"updated": "2026-06-16T12:06:06+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "a46c3cd00aa5f47adb1e7907f1d2bc6f5562f7a272890dee9b1121976ac04ae1"
|
|
9
9
|
}
|
|
@@ -4,6 +4,6 @@
|
|
|
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
6
|
"updated": "2026-06-26T13:40:52+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "dc9ceb784004b05a0117c464e4bed05946835a04acea282586c0b735ee7c2284"
|
|
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-06-01T00:45:28+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "3d3bbe0602d5bbb4afe37648fe3c2fa39376b1bcbac5d8c441f01fad1e866ed0"
|
|
9
9
|
}
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Core engineering execution policy and harness orchestration (highest-authority rules).",
|
|
6
6
|
"updated": "2026-07-16T22:43:53+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "d132f20db08806054d95e58d3d56c2aa7ebc8e6dd24d902b0a0ed9ddfae216c5"
|
|
9
9
|
}
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Senior database architecture policy: query optimization, anti-duplication/normalization, scalability, and RGPD/GDPR encryption.",
|
|
6
6
|
"updated": "2026-06-03T14:19:50+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "2883bcecb3202683ae6f81b073c3d6a9cec9c55029e011bdd06ba7ac3537297e"
|
|
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-06-01T00:45:28+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "14b0064c8b33a0dc85e51464b05005cf5801c756b1101789a6924b9548420f6b"
|
|
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.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "6375d835c2aef2c9bd31ce116444dc3d796f510f9970a213aa3ac4696d7e21b9"
|
|
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-06-25T15:51:43-04:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "fb78be3233bf9caa67d1f522c19831542b23f47e440b02211b5a950c898318b9"
|
|
9
9
|
}
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Frontend architecture: reusable components, abstraction thresholds, state management, no-op save detection, large-list rendering (infinite scroll/pagination, virtualization, skeletons, progressive loading), and optimistic UI with rollback.",
|
|
6
6
|
"updated": "2026-06-26T13:57:02+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "41cb938c9022efcdadc3056417cc7d442511adee40b09a141f11bb5fd9d56514"
|
|
9
9
|
}
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Git & contribution policy (senior engineering standards).",
|
|
6
6
|
"updated": "2026-07-16T22:44:02+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "e6dfbc33884000d9d25841bd9c5a84d6558ffd374882cb7b34451eb2cebc2161"
|
|
9
9
|
}
|
|
@@ -74,17 +74,23 @@ disappears.
|
|
|
74
74
|
- Ensure the placed logo meets a visible contrast against its actual background
|
|
75
75
|
before shipping it.
|
|
76
76
|
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
77
|
+
<!-- enigma:config:start -->
|
|
78
|
+
When a monochrome logo would clash with its background, resolve it as follows:
|
|
79
|
+
|
|
80
|
+
<!-- enigma:case:logoColorPolicy=ask -->
|
|
81
|
+
Stop and ask the user how to resolve it - recolor the background, add a container/badge
|
|
82
|
+
behind the logo, swap to a different official brand variant, or recolor the logo. Do not
|
|
83
|
+
silently pick one.
|
|
84
|
+
<!-- enigma:case:end -->
|
|
85
|
+
<!-- enigma:case:logoColorPolicy=adapt-background -->
|
|
86
|
+
Give the logo a contrasting container/background (a chip, card, or badge) and KEEP the
|
|
87
|
+
logo's official colors.
|
|
88
|
+
<!-- enigma:case:end -->
|
|
89
|
+
<!-- enigma:case:logoColorPolicy=adapt-logo -->
|
|
90
|
+
Switch to the brand's opposite monochrome variant (or recolor the mark) so it fits the
|
|
91
|
+
existing background.
|
|
92
|
+
<!-- enigma:case:end -->
|
|
93
|
+
<!-- enigma:config:end -->
|
|
88
94
|
|
|
89
95
|
## Trademark Respect
|
|
90
96
|
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "logo-sourcing-policy",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Source real brand/platform/technology logos instead of inventing them - vector-logo registries and vendor brand kits, SVG (WebP for web) preference, official colors, and contrast-aware placement; color-conflict resolution via the logo-color-policy setting.",
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
"config": [
|
|
7
|
+
"logoColorPolicy"
|
|
8
|
+
],
|
|
9
|
+
"updated": "2026-07-17T00:17:02+02:00",
|
|
10
|
+
"cliVersion": "1.29.1",
|
|
11
|
+
"sha": "09cdbefd98625b02a7d03685e5deed128238ff8454a83fe22279610fe3ef8ddf"
|
|
9
12
|
}
|
|
@@ -4,6 +4,6 @@
|
|
|
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
6
|
"updated": "2026-06-01T00:45:28+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "9971e9d9127397d0152e89d24aad3191e2935e55a8483db7fd15f5d4d7a60e7a"
|
|
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-06-16T16:39:13+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "699586cce82ec0a5458288b598ee7e5ebdddb3dfcf19db354d8bc5e85e47c1c7"
|
|
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-06-10T22:11:09+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "6e3facba307eb2b55cefbab2e4b2a346a2b82f93c3ef47e11ebeb78c3c9453a8"
|
|
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.",
|
|
6
6
|
"updated": "2026-06-26T14:09:06+02:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "e750988b8de51d8a69be621673dceca5413ebad7e1a48e40acd18aad526d9928"
|
|
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.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "3bdf591057b760f674fb2b1425f63acb426cda2c4f042e1a74c5a5d3807df664"
|
|
9
9
|
}
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Strict frontend + backend schema validation, schema consistency, and safe client-facing error handling.",
|
|
6
6
|
"updated": "2026-06-25T18:21:50-04:00",
|
|
7
|
-
"cliVersion": "1.
|
|
7
|
+
"cliVersion": "1.29.1",
|
|
8
8
|
"sha": "50349f5b3c55cc337f828dd510c163550614832acb28714871210a7c115a1501"
|
|
9
9
|
}
|
package/bin/checksums.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"enigma-darwin-arm64": "
|
|
3
|
-
"enigma-linux-arm64": "
|
|
4
|
-
"enigma-linux-x64": "
|
|
5
|
-
"enigma-win32-x64.exe": "
|
|
2
|
+
"enigma-darwin-arm64": "ca7eadce3b91331543dfc1611d5cebbdc8a8eac87ab5a91e40f96527ba96e951",
|
|
3
|
+
"enigma-linux-arm64": "09e1691c8c6fabe5dc9b4c5c7a00013714b3e6733ed748998eea627fd0cda6d6",
|
|
4
|
+
"enigma-linux-x64": "2e70b9afbf623fcdc25f936d0ef4d708f7366b92a9bb6b405a07fdd6b3599fa0",
|
|
5
|
+
"enigma-win32-x64.exe": "203cb042d3dfad622275b180468bad98476b909497efe82650d121c5473e6478"
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "enigma-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.29.1",
|
|
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": {
|