corifeus-builder 2026.4.141 โ†’ 2026.4.142

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 CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
 
7
7
  ---
8
- # ๐Ÿ—๏ธ Corifeus Builder v2026.4.141
8
+ # ๐Ÿ—๏ธ Corifeus Builder v2026.4.140
9
9
 
10
10
 
11
11
 
@@ -155,7 +155,7 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
155
155
  ---
156
156
 
157
157
 
158
- [**CORIFEUS-BUILDER**](https://corifeus.com/corifeus-builder) Build v2026.4.141
158
+ [**CORIFEUS-BUILDER**](https://corifeus.com/corifeus-builder) Build v2026.4.140
159
159
 
160
160
  [![NPM](https://img.shields.io/npm/v/corifeus-builder.svg)](https://www.npmjs.com/package/corifeus-builder) [![Donate for PatrikX3 / P3X](https://img.shields.io/badge/Donate-PatrikX3-003087.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [![Contact Corifeus / P3X](https://img.shields.io/badge/Contact-P3X-ff9900.svg)](https://www.patrikx3.com/en/front/contact) [![Like Corifeus @ Facebook](https://img.shields.io/badge/LIKE-Corifeus-3b5998.svg)](https://www.facebook.com/corifeus.software)
161
161
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "corifeus-builder",
3
- "version": "2026.4.141",
3
+ "version": "2026.4.142",
4
4
  "corifeus": {
5
5
  "icon": "fas fa-gavel",
6
6
  "code": "Make",
@@ -8,3 +8,4 @@ module.exports.root = function (args) {
8
8
 
9
9
  module.exports.folder = require('./folder');
10
10
  module.exports.task = require('./task');
11
+ module.exports.mirrorExclude = require('./mirror-exclude');
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Files and directories that must NEVER ship to any public mirror
3
+ * (GitHub mirror via p3x tools, or cdn.corifeus.com rsync via
4
+ * home/server-scripts webhook). Shared so both pipelines stay in sync.
5
+ *
6
+ * `files` are removed with `find -maxdepth 1 -iname <name> -exec rm -f`.
7
+ * `dirs` are removed with `find -maxdepth 1 -iname <name> -type d -exec rm -rf`.
8
+ */
9
+
10
+ module.exports = {
11
+ files: [
12
+ 'CLAUDE.md',
13
+ 'AGENTS.md',
14
+ ],
15
+ dirs: [
16
+ '.claude',
17
+ '.codex',
18
+ '.vscode',
19
+ '.idea',
20
+ '.DS_Store',
21
+ 'agents',
22
+ 'secure',
23
+ ],
24
+ };
package/src/replaces.js CHANGED
@@ -57,23 +57,22 @@ module.exports = (options, pkg) => {
57
57
  replace: `
58
58
  ---
59
59
 
60
- ## ๐Ÿš€ Quick and Affordable Web Development Services
60
+ # Corifeus Network
61
61
 
62
- If you want to quickly and affordably develop your next digital project, visit [corifeus.eu](https://corifeus.eu) for expert solutions tailored to your needs.
62
+ AI-powered network & email toolkit โ€” free, no signup.
63
63
 
64
- ---
65
-
66
- ## ๐ŸŒ Powerful Online Networking Tool
67
-
68
- Discover the powerful and free online networking tool at [network.corifeus.com](https://network.corifeus.com).
64
+ **Web** ยท [network.corifeus.com](https://network.corifeus.com) **MCP** ยท [\`npm i -g p3x-network-mcp\`](https://www.npmjs.com/package/p3x-network-mcp)
69
65
 
70
- **๐Ÿ†“ Free**
71
- Designed for professionals and enthusiasts, this tool provides essential features for network analysis, troubleshooting, and management.
72
- Additionally, it offers tools for:
73
- - ๐Ÿ“ก Monitoring TCP, HTTP, and Ping to ensure optimal network performance and reliability.
74
- - ๐Ÿ“Š Status page management to track uptime, performance, and incidents in real time with customizable dashboards.
75
-
76
- All these features are completely free to use.
66
+ - **AI Network Assistant** โ€” ask in plain language, get a full domain health report
67
+ - **Network Audit** โ€” DNS, SSL, security headers, DNSBL, BGP, IPv6, geolocation in one call
68
+ - **Diagnostics** โ€” DNS lookup & global propagation, WHOIS, reverse DNS, HTTP check, my-IP
69
+ - **Mail Tester** โ€” live SPF/DKIM/DMARC + spam score + AI fix suggestions, results emailed (localized)
70
+ - **Monitoring** โ€” TCP / HTTP / Ping with alerts and public status pages
71
+ - **MCP server** โ€” 17 tools exposed to Claude Code, Codex, Cursor, any MCP client
72
+ - **Install** โ€” \`claude mcp add p3x-network -- npx p3x-network-mcp\`
73
+ - **Try** โ€” *"audit example.com"*, *"why do my emails land in spam? test me@example.com"*
74
+ - **Source** โ€” [patrikx3/network](https://github.com/patrikx3/network) ยท [patrikx3/network-mcp](https://github.com/patrikx3/network-mcp)
75
+ - **Contact** โ€” [patrikx3.com](https://www.patrikx3.com/en/front/contact) ยท [donate](https://paypal.me/patrikx3)
77
76
 
78
77
  ---
79
78
 
@@ -95,8 +94,6 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
95
94
 
96
95
  **๐Ÿšจ Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
97
96
 
98
- ---
99
-
100
97
 
101
98
  [**\${pkg.name.toUpperCase()}**](https://corifeus.com/\${git.repo === 'corifeus' ? 'matrix' : git.repo}) Build v\${pkg.version}
102
99