enigma-cli 1.15.9 → 1.16.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/README.md +40 -5
- package/assets/commands/improve.md +0 -4
- 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.json +1 -1
- 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.json +1 -1
- package/assets/skills/task-completion-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/dashboard/index.html +0 -488
- package/assets/dashboard/lib/chart.min.js +0 -7
package/README.md
CHANGED
|
@@ -16,14 +16,15 @@ enigma # interactive hub: pick what to set up
|
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Or via the install script (clears the npm cache, installs the latest version, then
|
|
19
|
-
runs `enigma install`
|
|
19
|
+
runs `enigma install` **interactively** so you choose what to set up - handy where npm
|
|
20
|
+
`postinstall` scripts are disabled):
|
|
20
21
|
|
|
21
22
|
```bash
|
|
22
23
|
# macOS / Linux
|
|
23
|
-
curl -fsSL https://raw.githubusercontent.com/FJRG2007/enigma/main/install.sh | sh
|
|
24
|
+
curl -fsSL https://raw.githubusercontent.com/FJRG2007/enigma/main/scripts/install.sh | sh
|
|
24
25
|
|
|
25
26
|
# Windows (PowerShell)
|
|
26
|
-
irm https://raw.githubusercontent.com/FJRG2007/enigma/main/install.ps1 | iex
|
|
27
|
+
irm https://raw.githubusercontent.com/FJRG2007/enigma/main/scripts/install.ps1 | iex
|
|
27
28
|
```
|
|
28
29
|
|
|
29
30
|
Or one-shot, no global install, no prompts - deploy the skills to every supported
|
|
@@ -138,8 +139,7 @@ have not changed is left untouched; auto-sync keeps it current on every launch.
|
|
|
138
139
|
### `/improve`
|
|
139
140
|
|
|
140
141
|
Two modes in one command. **Implement mode** edits a focused area directly;
|
|
141
|
-
**Advisor mode**
|
|
142
|
-
MIT) is strictly read-only and writes self-contained implementation plans into
|
|
142
|
+
**Advisor mode** is strictly read-only and writes self-contained implementation plans into
|
|
143
143
|
`plans/` for another (cheaper) agent to execute.
|
|
144
144
|
|
|
145
145
|
The mode is resolved from the arguments: an advisor keyword (`audit`, `quick`,
|
|
@@ -490,10 +490,45 @@ table, and reversible-cache (CCR) stats. It runs only while open; `enigma config
|
|
|
490
490
|
dashboard always` keeps a lightweight background daemon, and `enigma compress --clear`
|
|
491
491
|
resets the data.
|
|
492
492
|
|
|
493
|
+
The dashboard is fully modular - if you don't want it (e.g. on a server), you never need
|
|
494
|
+
it, and you can add or remove it at any time. Its browser UI (the page plus a ~196 KB chart
|
|
495
|
+
library) is **not** bundled in `enigma-cli`: it ships as a separate package,
|
|
496
|
+
[`@enigmax/dashboard`](https://www.npmjs.com/package/@enigmax/dashboard), that enigma fetches
|
|
497
|
+
on demand the first time you open or enable the dashboard, into `~/.enigma/dashboard`. enigma
|
|
498
|
+
keeps it current on `enigma update`, so it is enigma's dependency to maintain, not yours. If
|
|
499
|
+
you never use the dashboard, that bundle is never downloaded. `enigma config dashboard off`
|
|
500
|
+
is a complete teardown: it stops any background daemon **and** removes the `enigma` hosts-file
|
|
501
|
+
entry, so nothing is left behind. Re-enable it whenever you like with `on-demand` or `always`.
|
|
502
|
+
|
|
503
|
+
You can also configure enigma **from the dashboard itself**: the **Enigma Settings** panel
|
|
504
|
+
exposes the same options as the terminal UI (`enigma config`), editable in the browser.
|
|
505
|
+
Writes apply immediately at global scope; memory-affecting toggles prompt for an agent
|
|
506
|
+
restart. The settings write endpoint is loopback-only and origin-guarded (cross-site and
|
|
507
|
+
DNS-rebinding requests are refused), and the server never binds anything but 127.0.0.1.
|
|
508
|
+
|
|
493
509
|
The money figure is an estimate: enigma isn't a proxy, so it can't see the model -
|
|
494
510
|
it prices saved tokens per source with sensible defaults. Override the rate with
|
|
495
511
|
`enigma config token-price <usd-per-1M-input-tokens>` (0 restores the defaults).
|
|
496
512
|
|
|
513
|
+
The time figure is likewise an estimate: it converts saved input tokens into saved
|
|
514
|
+
prefill time at a default model speed. Override it with `enigma config token-speed
|
|
515
|
+
<tokens-per-second>` (0 restores the default rate).
|
|
516
|
+
|
|
517
|
+
#### Real tool-usage stats (opt-in)
|
|
518
|
+
|
|
519
|
+
`enigma config usage-stats on` adds a **Real Tool Usage** panel that reads your own
|
|
520
|
+
Claude Code session transcripts (`~/.claude/projects/.../*.jsonl`) to report **measured**
|
|
521
|
+
token consumption and the **real prompt-cache savings** the tool already achieved -
|
|
522
|
+
input/output tokens, cache reads, per-model breakdown. It is read-only and loopback-only;
|
|
523
|
+
nothing is sent anywhere. It is off by default because it reads your session logs, which
|
|
524
|
+
are broader than enigma's own compression data.
|
|
525
|
+
|
|
526
|
+
Honesty note: this reports only what the transcripts actually record. It deliberately does
|
|
527
|
+
**not** attribute savings to skills or to token-efficient output, because a transcript has
|
|
528
|
+
no counterfactual baseline (what a session would have cost *without* them), so any such
|
|
529
|
+
figure would be invented. Only Claude Code is read today; Codex/OpenCode use absent or
|
|
530
|
+
undocumented local session stores and are not guessed.
|
|
531
|
+
|
|
497
532
|
### As an MCP server
|
|
498
533
|
|
|
499
534
|
`enigma mcp` runs a stdio MCP server exposing three tools - `enigma_compress`,
|
|
@@ -347,7 +347,3 @@ The flag is the user's authorization - never create issues without it. (1) Prefl
|
|
|
347
347
|
## Advisor output
|
|
348
348
|
|
|
349
349
|
You are advising, not selling. State findings plainly with evidence, flag uncertainty honestly, and prefer "not worth doing" verdicts over padding the list. A short list of high-confidence, high-leverage plans beats a long one. Report concisely what was audited, what was not, the findings table, the plans written (paths), and the recommended execution order.
|
|
350
|
-
|
|
351
|
-
---
|
|
352
|
-
|
|
353
|
-
Advisor mode adapted from shadcn/improve (https://github.com/shadcn/improve), MIT-licensed.
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.1.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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "3469a7e554b63a5ae3b1a4a127a0765d760649511fa9dfa9cdbcb04b4431fd64"
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "3d3bbe0602d5bbb4afe37648fe3c2fa39376b1bcbac5d8c441f01fad1e866ed0"
|
|
8
8
|
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.9.0",
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Core engineering execution policy and harness orchestration (highest-authority rules).",
|
|
6
|
-
"cliVersion": "1.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "82d246faa4770248a36f143926fbf06bd3ffc082959014184548b57193770fab"
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "6375d835c2aef2c9bd31ce116444dc3d796f510f9970a213aa3ac4696d7e21b9"
|
|
8
8
|
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"provider": "FJRG2007/enigma",
|
|
5
5
|
"description": "Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one.",
|
|
6
|
-
"cliVersion": "1.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "431645565aec8a4ab4cd17247139f78c377a9bcfcfc4ee1d6f252199c332d86f"
|
|
8
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "9971e9d9127397d0152e89d24aad3191e2935e55a8483db7fd15f5d4d7a60e7a"
|
|
8
8
|
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.0.0",
|
|
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
|
-
"cliVersion": "1.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "699586cce82ec0a5458288b598ee7e5ebdddb3dfcf19db354d8bc5e85e47c1c7"
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "6e3facba307eb2b55cefbab2e4b2a346a2b82f93c3ef47e11ebeb78c3c9453a8"
|
|
8
8
|
}
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
"version": "1.2.0",
|
|
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
|
-
"cliVersion": "1.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "3bdf591057b760f674fb2b1425f63acb426cda2c4f042e1a74c5a5d3807df664"
|
|
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.
|
|
6
|
+
"cliVersion": "1.16.1",
|
|
7
7
|
"sha": "a33622a2f810ee4cea39824cb1a7ca34b355a917d4224025df50d77dd74f0b3a"
|
|
8
8
|
}
|
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": "a1cfdf042903fb2822712a8e549fe35d05823ba289d6d99dd4c6782f81b1ba56",
|
|
3
|
+
"enigma-linux-arm64": "bf1c210c762ada33fb8d086631d6e9e394bae80fdb3acb6c802ef8d4049e5563",
|
|
4
|
+
"enigma-linux-x64": "7e069c734be9fde0bca67bb6544ad5c806486e7340e884dcd21ac9420870388a",
|
|
5
|
+
"enigma-win32-x64.exe": "3cad4ebce00154283ca82fbbaa40de5e374dbff5140ca9fae83651bb493d06ab"
|
|
6
6
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "enigma-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.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": {
|