enigma-cli 1.15.1 → 1.15.2
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 +37 -0
- package/assets/commands/improve.md +81 -0
- package/assets/skills/anti-overengineering-policy/skill.json +1 -1
- 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.md +54 -0
- package/assets/skills/frontend-design/skill.json +8 -0
- package/assets/skills/frontend-policy/skill.json +1 -1
- package/assets/skills/git-policy/skill.json +1 -1
- package/assets/skills/security-policy/skill.json +1 -1
- package/assets/skills/skill-creator/SKILL.md +485 -0
- package/assets/skills/skill-creator/agents/analyzer.md +274 -0
- package/assets/skills/skill-creator/agents/comparator.md +202 -0
- package/assets/skills/skill-creator/agents/grader.md +223 -0
- package/assets/skills/skill-creator/assets/eval_review.html +146 -0
- package/assets/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/assets/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/assets/skills/skill-creator/references/schemas.md +430 -0
- package/assets/skills/skill-creator/scripts/__init__.py +0 -0
- package/assets/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/assets/skills/skill-creator/scripts/generate_report.py +326 -0
- package/assets/skills/skill-creator/scripts/improve_description.py +247 -0
- package/assets/skills/skill-creator/scripts/package_skill.py +136 -0
- package/assets/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/assets/skills/skill-creator/scripts/run_eval.py +310 -0
- package/assets/skills/skill-creator/scripts/run_loop.py +328 -0
- package/assets/skills/skill-creator/scripts/utils.py +47 -0
- package/assets/skills/skill-creator/skill.json +8 -0
- package/assets/skills/task-completion-policy/skill.json +1 -1
- package/assets/skills/test-organization-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/README.md
CHANGED
|
@@ -97,6 +97,43 @@ SKILLS section lists every skill; unchecking one discards it) or with
|
|
|
97
97
|
future installs, updates and auto-syncs until you restore it with
|
|
98
98
|
`enigma skills restore <name>`.
|
|
99
99
|
|
|
100
|
+
## Slash commands
|
|
101
|
+
|
|
102
|
+
`enigma install` also deploys reusable slash commands to every selected agent (a
|
|
103
|
+
full install only - `--skills-only` / `--memory-only` skip them). Each command is
|
|
104
|
+
authored once and copied verbatim to the agent's command directory, where the file
|
|
105
|
+
name becomes the command.
|
|
106
|
+
|
|
107
|
+
| Agent | Scope | Command directory |
|
|
108
|
+
| ----------- | ------ | ------------------------------- |
|
|
109
|
+
| Claude Code | global | `~/.claude/commands/` |
|
|
110
|
+
| opencode | global | `~/.config/opencode/command/` |
|
|
111
|
+
| OpenAI Codex| global | `~/.codex/prompts/` |
|
|
112
|
+
|
|
113
|
+
(`--local` installs into the project's `.claude/commands/` and `.opencode/command/`.
|
|
114
|
+
Codex has no project-local prompt directory, so it only receives commands at global
|
|
115
|
+
scope.)
|
|
116
|
+
|
|
117
|
+
Commands are enigma-managed: if a same-named command already exists and is not
|
|
118
|
+
enigma's, **it is replaced** so enigma's command always wins the name. A command you
|
|
119
|
+
have not changed is left untouched; auto-sync keeps it current on every launch.
|
|
120
|
+
|
|
121
|
+
### `/improve <area>`
|
|
122
|
+
|
|
123
|
+
Improve a focused area of the current project. Supported areas:
|
|
124
|
+
|
|
125
|
+
| Invocation | What it does |
|
|
126
|
+
| -------------------------------- | --------------------------------------------------- |
|
|
127
|
+
| `/improve ui` or `/improve frontend` | Visual design, components, accessibility, responsiveness (same workflow) |
|
|
128
|
+
| `/improve security` | Secrets, authz, input validation, OWASP, dependency audit |
|
|
129
|
+
| `/improve performance` | Profile hot paths, queries/indexes, caching, bundle/render |
|
|
130
|
+
| `/improve seo` | Metadata, semantic HTML, structured data, crawlability, Core Web Vitals |
|
|
131
|
+
|
|
132
|
+
It detects the project stack first, reuses existing code, applies the smallest
|
|
133
|
+
change, follows any matching policy skill, and verifies with the project's
|
|
134
|
+
build/lint/test before reporting. With no area (or an unknown one) it lists the
|
|
135
|
+
supported areas and stops.
|
|
136
|
+
|
|
100
137
|
## Auto-sync on launch
|
|
101
138
|
|
|
102
139
|
After the first `enigma install`, you never need to run it again: whenever you
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Improve a focused area of the current project - ui/frontend, security, performance, or seo. Usage: /improve <area>.
|
|
3
|
+
argument-hint: ui | frontend | security | performance | seo
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# /improve
|
|
7
|
+
|
|
8
|
+
Improve the requested area of THIS project. The area to improve is: **$ARGUMENTS**
|
|
9
|
+
|
|
10
|
+
## Resolve the target area
|
|
11
|
+
|
|
12
|
+
Map `$ARGUMENTS` (case-insensitive, ignore surrounding whitespace) to exactly one workflow:
|
|
13
|
+
|
|
14
|
+
- `ui` or `frontend` -> Frontend & UI workflow (both aliases produce the same workflow).
|
|
15
|
+
- `security` -> Security workflow.
|
|
16
|
+
- `performance` (also `perf`) -> Performance workflow.
|
|
17
|
+
- `seo` -> SEO workflow.
|
|
18
|
+
|
|
19
|
+
If `$ARGUMENTS` is empty or does not match one of the areas above, do NOT guess: print the supported areas (`ui|frontend`, `security`, `performance`, `seo`) and stop.
|
|
20
|
+
|
|
21
|
+
## Ground rules (every area)
|
|
22
|
+
|
|
23
|
+
- Work only on the current project/repository. Detect the stack first (framework, language, build tool, package manager) before proposing changes.
|
|
24
|
+
- Reuse existing code, components, and utilities before adding new ones; never duplicate logic.
|
|
25
|
+
- Make the smallest change that achieves the improvement. Do not rewrite working code without a concrete reason.
|
|
26
|
+
- Apply changes incrementally and keep them reviewable; explain each change briefly.
|
|
27
|
+
- Never trade away security, accessibility, or correctness to gain another goal.
|
|
28
|
+
- If a matching policy or skill is available in this environment, follow it (for example a frontend, security, backend, validation, or dependency policy).
|
|
29
|
+
- After editing, run the project's build, lint, and test commands when they exist and report the results. Do not claim success without verification.
|
|
30
|
+
|
|
31
|
+
## Workflows
|
|
32
|
+
|
|
33
|
+
### ui | frontend
|
|
34
|
+
|
|
35
|
+
Improve the visual design and frontend quality of the project.
|
|
36
|
+
|
|
37
|
+
1. Map the UI surface: entry points, shared components, design tokens/theme, and the routes or screens that matter most.
|
|
38
|
+
2. Visual design: establish or tighten a deliberate palette, typography scale, spacing, and layout rhythm. Remove templated, default-looking choices in favor of an intentional, consistent identity.
|
|
39
|
+
3. Components: extract repeated markup into reusable components only when reuse or complexity justifies it; align props and naming with the existing codebase.
|
|
40
|
+
4. States and feedback: cover loading, empty, error, and success states; add optimistic UI with rollback where it improves perceived speed.
|
|
41
|
+
5. Accessibility: semantic elements, labels, focus order, keyboard navigation, and sufficient contrast.
|
|
42
|
+
6. Responsiveness: verify the layout across small, medium, and large breakpoints.
|
|
43
|
+
7. Apply the available frontend and frontend-design guidance if present.
|
|
44
|
+
|
|
45
|
+
### security
|
|
46
|
+
|
|
47
|
+
Harden the project against the common, high-impact risks.
|
|
48
|
+
|
|
49
|
+
1. Secrets: find hardcoded credentials, tokens, or keys; move them to environment/secret storage and document the change. Never print secret values.
|
|
50
|
+
2. Authentication and authorization: enforce least privilege; check that every privileged path verifies identity and permissions.
|
|
51
|
+
3. Input handling: validate and sanitize all external input (request bodies, query params, CLI args, file/3rd-party payloads) at trust boundaries with a schema validator.
|
|
52
|
+
4. OWASP Top 10: review for injection, broken access control, SSRF, insecure deserialization, and similar classes relevant to the stack.
|
|
53
|
+
5. Transport and crypto: enforce TLS, use vetted crypto primitives, avoid weak/deprecated algorithms.
|
|
54
|
+
6. Dependencies: run the ecosystem audit (for example `npm audit`, `pip-audit`) and flag known-vulnerable packages.
|
|
55
|
+
7. Logging: ensure logs never leak secrets or PII; never expose internal errors to clients.
|
|
56
|
+
8. Apply the available security and validation guidance if present.
|
|
57
|
+
|
|
58
|
+
### performance
|
|
59
|
+
|
|
60
|
+
Improve runtime and perceived performance with evidence, not guesses.
|
|
61
|
+
|
|
62
|
+
1. Measure first: identify the actual hot paths (profiling, slow queries, large bundles, slow renders). Do not optimize blindly.
|
|
63
|
+
2. Backend: eliminate N+1 queries, add indexes where justified, batch redundant calls, and add caching with correct invalidation.
|
|
64
|
+
3. Frontend: reduce bundle size (code splitting, tree shaking), avoid unnecessary re-renders, lazy-load heavy assets, and cache client-side where safe.
|
|
65
|
+
4. Data and I/O: remove redundant computation and round-trips; stream or paginate large payloads.
|
|
66
|
+
5. Verify: re-measure after each change and report the before/after difference.
|
|
67
|
+
|
|
68
|
+
### seo
|
|
69
|
+
|
|
70
|
+
Improve search-engine visibility and crawlability.
|
|
71
|
+
|
|
72
|
+
1. Metadata: per-page title and meta description, canonical URLs, and Open Graph / Twitter card tags.
|
|
73
|
+
2. Semantic HTML: correct heading hierarchy, landmark elements, and descriptive link text.
|
|
74
|
+
3. Structured data: add relevant JSON-LD schema for the content type.
|
|
75
|
+
4. Crawlability: provide a sitemap and robots configuration; ensure important content is server-rendered or otherwise indexable.
|
|
76
|
+
5. Performance for SEO: address Core Web Vitals (LCP, CLS, INP) since they affect ranking; coordinate with the performance workflow when needed.
|
|
77
|
+
6. Accessibility overlaps with SEO (alt text, language attributes) - apply those too.
|
|
78
|
+
|
|
79
|
+
## Output
|
|
80
|
+
|
|
81
|
+
Report concisely: the resolved area, the files changed, what improved and why, the verification results (build/lint/test), and any follow-ups you could not safely automate.
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.0.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
|
-
"cliVersion": "1.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
7
|
"sha": "297c5d9a0573a319a6f8476f5b1da8cb93e6f3297f13b76ac25d91ce10c7b523"
|
|
8
8
|
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
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
|
-
"cliVersion": "1.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
7
|
"sha": "f742a2be3f328b9ea1ff9a35a449177c2cbec35ad16e46f7054b7a873a2ab017"
|
|
8
8
|
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.1.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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
7
|
"sha": "a46c3cd00aa5f47adb1e7907f1d2bc6f5562f7a272890dee9b1121976ac04ae1"
|
|
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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
7
|
"sha": "3d3bbe0602d5bbb4afe37648fe3c2fa39376b1bcbac5d8c441f01fad1e866ed0"
|
|
8
8
|
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
7
|
"sha": "6375d835c2aef2c9bd31ce116444dc3d796f510f9970a213aa3ac4696d7e21b9"
|
|
8
8
|
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: frontend-design
|
|
3
|
+
description: Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Frontend Design
|
|
7
|
+
|
|
8
|
+
Approach this as the design lead at a small studio known for giving every client a visual identity that could not be mistaken for anyone else's. This client has already rejected proposals that felt templated, and is paying for a distinctive point of view: make deliberate, opinionated choices about palette, typography, and layout that are specific to this brief, and take one real aesthetic risk you can justify.
|
|
9
|
+
|
|
10
|
+
## Ground it in the subject
|
|
11
|
+
|
|
12
|
+
If the brief does not pin down what the product or subject is, pin it yourself before designing: name one concrete subject, its audience, and the page's single job, and state your choice. If there's any information in your memory about the human's preferences, context about what they're building, or designs you've made before – use that as a hint. The subject's own world, its materials, instruments, artifacts, and vernacular, is where distinctive choices come from. Build with the brief's real content and subject matter throughout.
|
|
13
|
+
|
|
14
|
+
## Design principles
|
|
15
|
+
|
|
16
|
+
For web designs, the hero is a thesis. Open with the most characteristic thing in the subject's world, in whatever form makes sense for it: a headline, an image, an animation, a live demo, an interactive moment. Be deliberate with your choice: a big number with a small label, supporting stats, and a gradient accent is the template answer, only use if that's truly the best option.
|
|
17
|
+
|
|
18
|
+
Typography carries the personality of the page. Pair the display and body faces deliberately, not the same families you would reach for on any other project, and set a clear type scale with intentional weights, widths, and spacing. Make the type treatment itself a memorable part of the design, not a neutral delivery vehicle for the content.
|
|
19
|
+
|
|
20
|
+
Structure is information. Structural devices, numbering, eyebrows, dividers, labels, should encode something true about the content, not decorate it. Many generic designs use numbered markers (01 / 02 / 03), but that's only appropriate if the content actually is a sequence - like a real process or a typed timeline where order carries information the reader needs. Question if choices like numbered markers actually make sense before incorporating them.
|
|
21
|
+
|
|
22
|
+
Leverage motion deliberately. Think about where and if animation can serve the subject: a page-load sequence, a scroll-triggered reveal, hover micro-interactions, ambient atmosphere. An orchestrated moment usually lands harder than scattered effects; choose what the direction calls for. However, sometimes less is more, and extra animation contributes to the feeling that the design is AI-generated.
|
|
23
|
+
|
|
24
|
+
Match complexity to the vision. Maximalist directions need elaborate execution; minimal directions need precision in spacing, type, and detail. Elegance is executing the chosen vision well.
|
|
25
|
+
|
|
26
|
+
Consider written content carefully. Often a design brief may not contain real content, and it's up to you to come up with copy. Copy can make a design feel as templated as the design itself. See the below section on writing for more guidance.
|
|
27
|
+
|
|
28
|
+
## Process: brainstorm, explore, plan, critique, build, critique again
|
|
29
|
+
|
|
30
|
+
For calibration: AI-generated design right now clusters around three looks: (1) a warm cream background (near #F4F1EA) with a high-contrast serif display and a terracotta accent; (2) a near-black background with a single bright acid-green or vermilion accent; (3) a broadsheet-style layout with hairline rules, zero border-radius, and dense newspaper-like columns. All three are legitimate for some briefs, but they are defaults rather than choices, and they appear regardless of subject. Where the brief pins down a visual direction, follow it exactly — the brief's own words always win, including when it asks for one of these looks. Where it leaves an axis free, don't spend that freedom on one of these defaults. Just like a human designer who's hired, there's often a careful balance between doing what you're good at and taking each project as a chance to experiment and learn.
|
|
31
|
+
|
|
32
|
+
Work in two passes. First, brainstorm a short design plan based on the human's design brief: create a compact token system with color, type, layout, and signature. Color: describe the palette as 4–6 named hex values. Type: the typefaces for 2+ roles (a characterful display face that's used with restraint, a complementary body face, and a utility face for captions or data if needed). Layout: a layout concept, using one-sentence prose descriptions and ASCII wireframes to ideate and compare. Signature: the single unique element this page will be remembered by that embodies the brief in an appropriate way.
|
|
33
|
+
|
|
34
|
+
Then review that plan against the brief before building: if any part of it reads like the generic default you would produce for any similar page (work through a similar prompt to see if you arrive somewhere similar) rather than a choice made for this specific brief — revise that part, say what you changed and why. Only after you've confirmed the relative uniqueness of your design plan should you start to write the code, following the revised plan exactly and deriving every color and type decision from it.
|
|
35
|
+
|
|
36
|
+
When writing the code, be careful of structuring your CSS selector specificities. It's easy to generate CSS classes that cancel each other out (especially with a type-based selector like .section and a element-based selector like .cta). This can happen often with paddings/margins between sections.
|
|
37
|
+
|
|
38
|
+
Try to do a lot of this planning and iteration in your thinking, and only show ideas to the user when you have higher confidence it'll delight them.
|
|
39
|
+
|
|
40
|
+
## Restraint and self-critique
|
|
41
|
+
|
|
42
|
+
Spend your boldness in one place. Let the signature element be the one memorable thing, keep everything around it quiet and disciplined, and cut any decoration that does not serve the brief. Not taking a risk can be a risk itself! Build to a quality floor without announcing it: responsive down to mobile, visible keyboard focus, reduced motion respected. Critique your own work as you build, taking screenshots if your environment supports it – a picture is worth 1000 tokens. Consider Chanel's advice: before leaving the house, take a look in the mirror and remove one accessory. Human creators have memory and always try to do something new, so if you have a space to quickly jot down notes about what you've tried, it can help you in future passes.
|
|
43
|
+
|
|
44
|
+
## More on writing in design
|
|
45
|
+
|
|
46
|
+
Words appear in a design for one reason: to make it easier to understand, and therefore easier to use. They are design material, not decoration. Bring the same intentionality to copy that you would bring to spacing and color. Before writing anything, ask what the design needs to say, and how it can best be said to help the person navigate the experience.
|
|
47
|
+
|
|
48
|
+
Write from the end user's side of the screen. Name things by what people control and recognize, never by how the system is built. A person manages notifications, not webhook config. Describe what something does in plain terms rather than selling it. Being specific is always better than being clever.
|
|
49
|
+
|
|
50
|
+
Use active voice as default. A control should say exactly what happens when it's used: "Save changes," not "Submit." An action keeps the same name through the whole flow, so the button that says "Publish" produces a toast that says "Published." The vocabulary of an interface is the signposting for someone navigating the product. Cohesion and consistency are how people learn their way around.
|
|
51
|
+
|
|
52
|
+
Treat failure and emptiness as moments for direction, not mood. Explain what went wrong and how to fix it, in the interface's voice rather than a person's. Errors don't apologize, and they are never vague about what happened. An empty screen is an invitation to act.
|
|
53
|
+
|
|
54
|
+
Keep the register conversational and tuned: plain verbs, sentence case, no filler, with tone matched to the brand and the audience. Let each element do exactly one job. A label labels, an example demonstrates, and nothing quietly does double duty.
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "frontend-design",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"provider": "FJRG2007/enigma",
|
|
5
|
+
"description": "Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one.",
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
|
+
"sha": "431645565aec8a4ab4cd17247139f78c377a9bcfcfc4ee1d6f252199c332d86f"
|
|
8
|
+
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.3.0",
|
|
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
|
-
"cliVersion": "1.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
7
|
"sha": "26962db5a8b607e95098a6d88977aee59a10bd14e03afe97245f2b013fd21a9a"
|
|
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.15.
|
|
6
|
+
"cliVersion": "1.15.2",
|
|
7
7
|
"sha": "9971e9d9127397d0152e89d24aad3191e2935e55a8483db7fd15f5d4d7a60e7a"
|
|
8
8
|
}
|