corifeus-builder 2026.4.141 โ 2026.4.143
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 +15 -18
- 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/src/task/npm/npm.js +22 -21
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
|
-
# ๐๏ธ Corifeus Builder v2026.4.
|
|
8
|
+
# ๐๏ธ Corifeus Builder v2026.4.143
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
@@ -114,23 +114,22 @@ Until it works for await/async, removed from **JSDoc**.
|
|
|
114
114
|
|
|
115
115
|
---
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
# Corifeus Network
|
|
118
118
|
|
|
119
|
-
|
|
119
|
+
AI-powered network & email toolkit โ free, no signup.
|
|
120
120
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
## ๐ Powerful Online Networking Tool
|
|
124
|
-
|
|
125
|
-
Discover the powerful and free online networking tool at [network.corifeus.com](https://network.corifeus.com).
|
|
121
|
+
**Web** ยท [network.corifeus.com](https://network.corifeus.com) **MCP** ยท [`npm i -g p3x-network-mcp`](https://www.npmjs.com/package/p3x-network-mcp)
|
|
126
122
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
-
|
|
131
|
-
-
|
|
132
|
-
|
|
133
|
-
|
|
123
|
+
- **AI Network Assistant** โ ask in plain language, get a full domain health report
|
|
124
|
+
- **Network Audit** โ DNS, SSL, security headers, DNSBL, BGP, IPv6, geolocation in one call
|
|
125
|
+
- **Diagnostics** โ DNS lookup & global propagation, WHOIS, reverse DNS, HTTP check, my-IP
|
|
126
|
+
- **Mail Tester** โ live SPF/DKIM/DMARC + spam score + AI fix suggestions, results emailed (localized)
|
|
127
|
+
- **Monitoring** โ TCP / HTTP / Ping with alerts and public status pages
|
|
128
|
+
- **MCP server** โ 17 tools exposed to Claude Code, Codex, Cursor, any MCP client
|
|
129
|
+
- **Install** โ `claude mcp add p3x-network -- npx p3x-network-mcp`
|
|
130
|
+
- **Try** โ *"audit example.com"*, *"why do my emails land in spam? test me@example.com"*
|
|
131
|
+
- **Source** โ [patrikx3/network](https://github.com/patrikx3/network) ยท [patrikx3/network-mcp](https://github.com/patrikx3/network-mcp)
|
|
132
|
+
- **Contact** โ [patrikx3.com](https://www.patrikx3.com/en/front/contact) ยท [donate](https://paypal.me/patrikx3)
|
|
134
133
|
|
|
135
134
|
---
|
|
136
135
|
|
|
@@ -152,10 +151,8 @@ All my domains, including [patrikx3.com](https://patrikx3.com), [corifeus.eu](ht
|
|
|
152
151
|
|
|
153
152
|
**๐จ Important Changes:** Any breaking changes are prominently noted in the readme to keep you informed.
|
|
154
153
|
|
|
155
|
-
---
|
|
156
|
-
|
|
157
154
|
|
|
158
|
-
[**CORIFEUS-BUILDER**](https://corifeus.com/corifeus-builder) Build v2026.4.
|
|
155
|
+
[**CORIFEUS-BUILDER**](https://corifeus.com/corifeus-builder) Build v2026.4.143
|
|
159
156
|
|
|
160
157
|
[](https://www.npmjs.com/package/corifeus-builder) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=QZVM4V6HVZJW6) [](https://www.patrikx3.com/en/front/contact) [](https://www.facebook.com/corifeus.software)
|
|
161
158
|
|
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
|
|
package/src/task/npm/npm.js
CHANGED
|
@@ -86,29 +86,30 @@ module.exports = async (pkgFile) => {
|
|
|
86
86
|
const newPkgFile = JSON.stringify(pkg, null, 4);
|
|
87
87
|
await fs.writeFile(pkgFile, newPkgFile)
|
|
88
88
|
|
|
89
|
-
// Auto-ensure .npmignore protects sensitive
|
|
89
|
+
// Auto-ensure .npmignore protects sensitive paths (always, whether they exist or not)
|
|
90
90
|
const cwd = path.dirname(pkgFile)
|
|
91
91
|
const npmignorePath = path.join(cwd, '.npmignore')
|
|
92
|
-
const
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
92
|
+
const protected = [
|
|
93
|
+
'secure/',
|
|
94
|
+
'agents/',
|
|
95
|
+
'.claude/',
|
|
96
|
+
'.vscode/',
|
|
97
|
+
'.codex/',
|
|
98
|
+
'CLAUDE.md',
|
|
99
|
+
'AGENTS.md',
|
|
100
|
+
]
|
|
101
|
+
let npmignore = ''
|
|
102
|
+
try {
|
|
103
|
+
npmignore = await fs.readFile(npmignorePath, 'utf-8')
|
|
104
|
+
} catch (e) {}
|
|
105
|
+
const normalize = (s) => s.trim().replace(/^\//, '').replace(/\/$/, '')
|
|
106
|
+
const lines = npmignore.split('\n').map(normalize)
|
|
107
|
+
const missing = protected.filter(entry => !lines.includes(normalize(entry)))
|
|
108
|
+
if (missing.length > 0) {
|
|
109
|
+
const addition = missing.join('\n')
|
|
110
|
+
npmignore = npmignore ? npmignore.trimEnd() + '\n' + addition + '\n' : addition + '\n'
|
|
111
|
+
await fs.writeFile(npmignorePath, npmignore)
|
|
112
|
+
console.log(`Auto-added to .npmignore: ${missing.join(', ')}`)
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
return pkg;
|