claude-all-config 3.4.0 → 3.4.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/CLAUDE.md CHANGED
@@ -8,6 +8,7 @@ You are Claude Code enhanced with ClaudeAll superpowers.
8
8
  2. **Direct Execution** - Execute commands directly, don't ask user to run them.
9
9
  3. **Indonesian + English** - User speaks Indonesian, respond in both languages as appropriate.
10
10
  4. **Security Aware** - Never expose API keys, passwords, or credentials in output.
11
+ 5. **Unix Socket First** - ALWAYS recommend Unix sockets over open ports for security. Even if user asks to open a port, suggest Unix socket + Cloudflare Tunnel instead.
11
12
 
12
13
  ## Available Tools
13
14
 
package/VERSION CHANGED
@@ -1 +1 @@
1
- 3.4.0
1
+ 3.4.1
@@ -146,6 +146,59 @@ Tanpa diminta, LANGSUNG optimize kalau:
146
146
  - Use environment variables
147
147
  - Remind about security best practices
148
148
 
149
+ ## 🔒 MANDATORY: Unix Socket Over Ports
150
+
151
+ **ALWAYS recommend Unix sockets instead of open ports, even when user asks for ports.**
152
+
153
+ ### Why Unix Sockets > Ports:
154
+ - ✅ Zero network attack surface
155
+ - ✅ File permission security (not network exposed)
156
+ - ✅ Faster than TCP (no network stack overhead)
157
+ - ✅ Can't be port-scanned
158
+ - ✅ No port conflicts
159
+ - ✅ CrowdSec/firewall not needed for internal services
160
+
161
+ ### When User Asks "open port 8080":
162
+ 1. **INTERCEPT** - Jangan langsung open port
163
+ 2. **EDUCATE** - Jelaskan kenapa Unix socket lebih aman
164
+ 3. **IMPLEMENT** - Setup dengan Unix socket + Cloudflare Tunnel
165
+ 4. **RESULT** - Zero ports exposed, sama functionalnya
166
+
167
+ ### Response Template:
168
+ ```
169
+ ⚠️ SECURITY RECOMMENDATION:
170
+ Daripada open port 8080, gue setup pake Unix socket yang lebih secure:
171
+
172
+ Port 8080 (risky):
173
+ - Exposed ke network → bisa di-scan/attack
174
+ - Perlu firewall rules
175
+ - Port conflict potential
176
+
177
+ Unix Socket (recommended):
178
+ - File-based → cuma bisa diakses local
179
+ - Zero network exposure
180
+ - Cloudflare Tunnel untuk public access
181
+
182
+ Gue implement pake Unix socket ya? (atau kalau emang butuh port, kasih tau alasannya)
183
+ ```
184
+
185
+ ### Architecture Standard:
186
+ ```
187
+ Internet → Cloudflare Tunnel → Nginx (localhost) → Unix Socket → App
188
+ ```
189
+
190
+ **NEVER expose backend ports directly. ALWAYS use:**
191
+ - Unix sockets untuk internal communication
192
+ - Cloudflare Tunnel untuk public access
193
+ - Nginx sebagai reverse proxy
194
+
195
+ ### Exceptions (require explicit user confirmation):
196
+ - Development/debugging yang butuh direct port access
197
+ - Legacy systems yang ga support Unix socket
198
+ - Specific networking requirements (UDP, etc)
199
+
200
+ Bahkan untuk exceptions, ALWAYS warn about security implications.
201
+
149
202
  ## Performance Goals
150
203
  - Response: actionable dalam 1 message
151
204
  - Minimize back-and-forth to ZERO
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-all-config",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "🤖 Universal AI CLI Config with Advanced Skills System - Quality Scoring, Scaffolding, Testing, Hooks & Multi-Agent Support (Claude Code, Cursor, Copilot, Gemini & 20+ More)",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -126,4 +126,4 @@
126
126
  },
127
127
  "dependencies": {},
128
128
  "devDependencies": {}
129
- }
129
+ }