no-more-configs 1.3.2 → 1.4.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.
Files changed (2) hide show
  1. package/README.md +32 -11
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -18,6 +18,8 @@
18
18
  <pre>npx no-more-configs@latest</pre>
19
19
 
20
20
  **Works on Windows (WSL2 + Docker Desktop) and Linux (Docker Engine).**
21
+ **Linux is significantly faster** — Docker Engine runs containers natively without the WSL2 virtualization layer that Docker Desktop requires on Windows.
22
+ macOS is untested — if you try it, [open an issue](https://github.com/agomusio/no-more-configs/issues) and let me know how it goes!
21
23
 
22
24
  <br>
23
25
 
@@ -61,11 +63,14 @@ _"I spent weekends configuring Claude, Docker, and everything else — now you d
61
63
  | **GSD framework** | 30+ slash commands and 11 specialized agents for structured development | Out of the box |
62
64
  | **BMAD Method** | AI-driven agile development framework — 21+ specialized agents, 50+ guided workflows (PRD, architecture, epics, QA) | Out of the box |
63
65
  | **PostgreSQL client** | `psql` CLI for connecting to Postgres databases | Out of the box |
66
+ | **Bun** | JavaScript/TypeScript runtime and package manager | Out of the box |
67
+ | **Redis CLI** | `redis-cli` for connecting to Redis instances | Out of the box |
68
+ | **Opt-in SDKs** | Rust, Go, Deno — install at container start via `config.json → sdks` | Opt-in |
64
69
  | **iptables firewall** | Default-deny network with domain whitelist (47 core domains), disable via `config.json` | Out of the box |
65
70
  | **Oh-My-Zsh** | Powerlevel10k, fzf, git-delta, GitHub CLI | Out of the box |
66
- | **Langfuse observability** | Self-hosted tracing — every conversation traced to a local dashboard | Opt-in |
67
- | **MCP gateway** | Model Context Protocol tool access via Docker MCP Gateway | Opt-in |
68
- | **Codex MCP server** | Let Claude delegate to Codex mid-session | Opt-in |
71
+ | **Langfuse observability** | Self-hosted tracing — every conversation traced to a local dashboard | Opt-in (beta) |
72
+ | **MCP gateway** | Model Context Protocol tool access via Docker MCP Gateway | Opt-in (beta) |
73
+ | **Codex MCP server** | Let Claude delegate to Codex mid-session | Opt-in (beta) |
69
74
 
70
75
  ---
71
76
 
@@ -77,10 +82,12 @@ _"I spent weekends configuring Claude, Docker, and everything else — now you d
77
82
  - [VS Code](https://code.visualstudio.com/) with the [Dev Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension
78
83
 
79
84
  **Windows:**
85
+
80
86
  - [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) enabled
81
87
  - [Docker Desktop for Windows](https://www.docker.com/products/docker-desktop/) running (WSL2 backend)
82
88
 
83
89
  **Linux:**
90
+
84
91
  - [Docker Engine](https://docs.docker.com/engine/install/) with [buildx plugin](https://docs.docker.com/build/install-buildx/)
85
92
 
86
93
  ### 1. Install and Open
@@ -186,7 +193,7 @@ npx no-more-configs@latest
186
193
  nmc-update
187
194
  ```
188
195
 
189
- ## Both pull the latest changes and tell you if a container rebuild is needed. The container shell also shows a notification banner when a new version is available.
196
+ ### Both pull the latest changes and tell you if a container rebuild is needed. The container shell also shows a notification banner when a new version is available.
190
197
 
191
198
  ## How It Works
192
199
 
@@ -368,7 +375,8 @@ Add your own skills by creating a directory under `agent-config/skills/` with a
368
375
  ```
369
376
  Host (Docker Desktop)
370
377
  ├── VS Code → Dev Container (Debian 12 Bookworm / Node 20)
371
- │ ├── Claude Code + Codex CLI + plugins + GSD + BMAD + psql
378
+ │ ├── Claude Code + Codex CLI + plugins + GSD + BMAD
379
+ │ ├── Node.js, Bun, Python 3, psql, redis-cli
372
380
  │ ├── iptables whitelist firewall
373
381
  │ └── /var/run/docker.sock (from host)
374
382
 
@@ -506,14 +514,17 @@ tail -50 ~/.claude/state/langfuse_hook.log
506
514
  | `clauder` | Alias for `claude --resume` |
507
515
  | `codex` | Codex CLI — GPT-5.3-Codex, full-auto, no sandbox |
508
516
  | `codexr` | Alias for `codex resume` |
509
- | `bmad` | BMAD Method CLI install modules, check status, list agents |
510
- | `psql` | PostgreSQL client CLI |
517
+ | `save-config` | Capture settings and preferences to `config.json` |
511
518
  | `save-secrets` | Capture live credentials, git identity, and keys to `secrets.json` |
512
- | `langfuse-setup` | Generate secrets, start Langfuse stack, verify health |
513
519
  | `nmc-update` | Pull latest NMC changes, detect if container rebuild is needed |
520
+ | `langfuse-setup` | Generate secrets, start Langfuse stack, verify health |
514
521
  | `mcp-setup` | Regenerate MCP configs (Claude + Codex) and health-check gateway |
515
522
  | `slc` | Show postCreate lifecycle log (`/tmp/devcontainer-logs/postCreate.log`) |
516
523
  | `sls` | Show postStart lifecycle log (`/tmp/devcontainer-logs/postStart.log`) |
524
+ | `bmad` | BMAD Method CLI — install modules, check status, list agents |
525
+ | `psql` | PostgreSQL client CLI |
526
+ | `bun` | Bun runtime — JavaScript/TypeScript runtime and package manager |
527
+ | `redis-cli` | Redis CLI — connect to Redis instances |
517
528
 
518
529
  ---
519
530
 
@@ -561,6 +572,16 @@ Edit `config.json`:
561
572
 
562
573
  Rebuild the container to apply.
563
574
 
575
+ ### Enabling Opt-in SDKs
576
+
577
+ Edit `config.json`:
578
+
579
+ ```json
580
+ { "sdks": { "rust": true, "go": true, "deno": true } }
581
+ ```
582
+
583
+ Rebuild the container. SDKs install during postCreate and persist for the container's lifetime.
584
+
564
585
  ### Changing the Codex Model
565
586
 
566
587
  Edit `config.json`:
@@ -655,10 +676,10 @@ Handled automatically. If it recurs: `git config --global --add safe.directory '
655
676
 
656
677
  ## Known Issues
657
678
 
658
- | Issue | Cause | Status |
659
- | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
679
+ | Issue | Cause | Status |
680
+ | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------ |
660
681
  | Claude Code Edit tool throws `ENOENT: no such file or directory` on files that exist (Windows only) | WSL2 bind mount (C:\ → 9P → container) causes stale file metadata; the Edit tool's freshness check sees a mismatched mtime and rejects the write | Intermittent, self-healing (re-read + retry succeeds). Likely resolved in a future Claude Code update. |
661
- | Lifecycle terminal closes before you can read output | VS Code dismisses the postCreate/postStart terminal on completion | Use `slc` / `sls` aliases to view saved logs from `/tmp/devcontainer-logs/` |
682
+ | Lifecycle terminal closes before you can read output | VS Code dismisses the postCreate/postStart terminal on completion | Use `slc` / `sls` aliases to view saved logs from `/tmp/devcontainer-logs/` |
662
683
 
663
684
  ---
664
685
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "no-more-configs",
3
- "version": "1.3.2",
3
+ "version": "1.4.0",
4
4
  "description": "Zero-config devcontainer for Claude Code & Codex CLI — firewall, plugins, Langfuse tracing, MCP servers, and 80+ slash commands out of the box. One command to install.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -26,6 +26,9 @@
26
26
  "docker",
27
27
  "ai-coding",
28
28
  "ai-agent",
29
+ "agentic-ai",
30
+ "agentic-workflow",
31
+ "vibe-coding",
29
32
  "mcp",
30
33
  "model-context-protocol",
31
34
  "langfuse",