corifeus-builder 2026.4.140 โ 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/package.json +1 -1
- package/src/config/index.js +1 -0
- package/src/config/mirror-exclude.js +24 -0
- package/src/replaces.js +13 -16
package/package.json
CHANGED
package/src/config/index.js
CHANGED
|
@@ -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
|
-
|
|
60
|
+
# Corifeus Network
|
|
61
61
|
|
|
62
|
-
|
|
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
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
|
|
76
|
-
|
|
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
|
|