openclaw-macos-security 1.0.1 → 1.0.3
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/CLAWHUB_UPLOAD.md +90 -0
- package/README.md +7 -12
- package/SKILL.md +89 -0
- package/clawhub-upload/LICENSE +21 -0
- package/clawhub-upload/README.md +167 -0
- package/clawhub-upload/SKILL.md +89 -0
- package/clawhub-upload/dist/index.d.ts +75 -0
- package/clawhub-upload/dist/index.js +206 -0
- package/clawhub-upload/package.json +60 -0
- package/package.json +2 -2
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
# 📦 Comment uploader sur ClawHub
|
|
2
|
+
|
|
3
|
+
## ✅ Fichiers créés
|
|
4
|
+
|
|
5
|
+
Votre skill est prêt ! Voici ce qui a été créé :
|
|
6
|
+
|
|
7
|
+
```
|
|
8
|
+
openclaw-skill/
|
|
9
|
+
├── SKILL.md ✅ (obligatoire pour ClawHub)
|
|
10
|
+
├── README.md ✅ (documentation)
|
|
11
|
+
├── package.json ✅ (metadata npm)
|
|
12
|
+
├── dist/
|
|
13
|
+
│ ├── index.js ✅ (code compilé)
|
|
14
|
+
│ └── index.d.ts ✅ (TypeScript definitions)
|
|
15
|
+
└── src/
|
|
16
|
+
└── index.ts ✅ (code source)
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 🎯 Étapes pour uploader sur ClawHub
|
|
22
|
+
|
|
23
|
+
### 1. Créer un dossier pour l'upload
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
cd /Users/t4/Documents/GitHub/maclaw/openclaw-skill
|
|
27
|
+
|
|
28
|
+
# Créer dossier d'upload
|
|
29
|
+
mkdir -p clawhub-upload
|
|
30
|
+
|
|
31
|
+
# Copier les fichiers nécessaires
|
|
32
|
+
cp SKILL.md clawhub-upload/
|
|
33
|
+
cp README.md clawhub-upload/
|
|
34
|
+
cp package.json clawhub-upload/
|
|
35
|
+
cp -r dist clawhub-upload/
|
|
36
|
+
cp -r src clawhub-upload/
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### 2. Uploader sur ClawHub
|
|
40
|
+
|
|
41
|
+
1. Allez sur la page que vous avez montrée
|
|
42
|
+
2. Cliquez sur **"Choose folder"**
|
|
43
|
+
3. Sélectionnez le dossier `clawhub-upload/`
|
|
44
|
+
4. Vérifiez que la validation passe (✅ SKILL.md is present)
|
|
45
|
+
5. Cliquez sur **"Publish skill"**
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 📋 Checklist avant publication
|
|
50
|
+
|
|
51
|
+
- [x] ✅ SKILL.md créé
|
|
52
|
+
- [x] ✅ README.md présent
|
|
53
|
+
- [x] ✅ package.json configuré
|
|
54
|
+
- [x] ✅ Code compilé (dist/)
|
|
55
|
+
- [x] ✅ Version correcte (1.0.1)
|
|
56
|
+
- [x] ✅ Tags configurés (latest)
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## 🔧 Si erreurs de validation
|
|
61
|
+
|
|
62
|
+
**Erreur:** "SKILL.md is required"
|
|
63
|
+
→ Solution : Le fichier est maintenant créé ✓
|
|
64
|
+
|
|
65
|
+
**Erreur:** "Add at least one file"
|
|
66
|
+
→ Solution : Uploader le dossier `clawhub-upload/`
|
|
67
|
+
|
|
68
|
+
**Erreur:** "Version already exists"
|
|
69
|
+
→ Solution : Changer version dans package.json (ex: 1.0.2)
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## 📊 Après publication
|
|
74
|
+
|
|
75
|
+
Une fois publié sur ClawHub, les utilisateurs peuvent :
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
# Chercher votre skill
|
|
79
|
+
npx clawhub search maclaw
|
|
80
|
+
|
|
81
|
+
# Installer
|
|
82
|
+
npx clawhub install openclaw-macos-security
|
|
83
|
+
|
|
84
|
+
# Voir dans OpenClaw
|
|
85
|
+
openclaw skills list
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
**Prêt à publier ! 🚀**
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**Comprehensive macOS security monitoring for OpenClaw**
|
|
4
4
|
|
|
5
|
-
Created by
|
|
5
|
+
Created by certified cybersecurity experts.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -119,15 +119,13 @@ MaclawPro: 🚨 BLOCKED
|
|
|
119
119
|
|
|
120
120
|
## 🎓 **About MaclawPro**
|
|
121
121
|
|
|
122
|
-
MaclawPro is developed by
|
|
123
|
-
- 🏅
|
|
124
|
-
- 💼
|
|
125
|
-
-
|
|
122
|
+
MaclawPro is developed by certified cybersecurity experts with:
|
|
123
|
+
- 🏅 Professional wireless network security certification
|
|
124
|
+
- 💼 Years of Mac security experience
|
|
125
|
+
- 🌐 Serving businesses and individuals worldwide
|
|
126
126
|
|
|
127
127
|
**Learn more:**
|
|
128
128
|
- 🌐 [maclawpro.com](https://maclawpro.com) - Full standalone version
|
|
129
|
-
- 🔒 [sequr.ca](https://sequr.ca) - Enterprise cybersecurity
|
|
130
|
-
- 🛠️ [informatique-quebec.com](https://informatique-quebec.com) - Repair services
|
|
131
129
|
|
|
132
130
|
---
|
|
133
131
|
|
|
@@ -154,7 +152,6 @@ This OpenClaw skill provides **basic monitoring**. For advanced features:
|
|
|
154
152
|
|
|
155
153
|
## 🤝 **Support**
|
|
156
154
|
|
|
157
|
-
- 📧 Email: info@sequr.ca
|
|
158
155
|
- 🌐 Website: [maclawpro.com](https://maclawpro.com)
|
|
159
156
|
- 🐛 Issues: [GitHub Issues](https://github.com/drg3nz0/maclaw-openclaw-skill/issues)
|
|
160
157
|
- 💬 Discord: [OpenClaw Community](https://discord.gg/openclaw)
|
|
@@ -163,10 +160,8 @@ This OpenClaw skill provides **basic monitoring**. For advanced features:
|
|
|
163
160
|
|
|
164
161
|
## 📄 **License**
|
|
165
162
|
|
|
166
|
-
MIT © MaclawPro
|
|
163
|
+
MIT © MaclawPro
|
|
167
164
|
|
|
168
165
|
---
|
|
169
166
|
|
|
170
|
-
**
|
|
171
|
-
|
|
172
|
-
*Certified cybersecurity experts at your service* 🇨🇦
|
|
167
|
+
**Professional macOS security monitoring**
|
package/SKILL.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# 🛡️ MaclawPro Security
|
|
2
|
+
|
|
3
|
+
**Comprehensive macOS security monitoring for OpenClaw**
|
|
4
|
+
|
|
5
|
+
## What does this skill do?
|
|
6
|
+
|
|
7
|
+
This skill provides **52+ professional macOS security tasks** including:
|
|
8
|
+
|
|
9
|
+
- 📹 **Camera monitoring** - Check which apps use your camera right now
|
|
10
|
+
- 🎤 **Microphone monitoring** - See microphone access in real-time
|
|
11
|
+
- 🔥 **Firewall status** - Verify your Mac's firewall is enabled
|
|
12
|
+
- 🔐 **VPN checker** - Detect VPN connection status
|
|
13
|
+
- 📡 **WiFi scanner** - Analyze WiFi security (WPA2/WPA3)
|
|
14
|
+
- 🔌 **Port scanner** - List open network ports
|
|
15
|
+
- 🛑 **App blocker** - Block suspicious apps instantly (Pro feature)
|
|
16
|
+
|
|
17
|
+
## When to use this skill
|
|
18
|
+
|
|
19
|
+
Use this skill when you need to:
|
|
20
|
+
- Check if apps are secretly using your camera or microphone
|
|
21
|
+
- Verify your Mac's security settings (firewall, VPN)
|
|
22
|
+
- Scan for open ports or WiFi vulnerabilities
|
|
23
|
+
- Monitor system security in real-time
|
|
24
|
+
|
|
25
|
+
## Example commands
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
User: Check if anyone is using my camera
|
|
29
|
+
Skill: ✅ CAMERA INACTIVE - No apps currently using your camera
|
|
30
|
+
|
|
31
|
+
User: Is my firewall on?
|
|
32
|
+
Skill: ✅ FIREWALL ENABLED - Your Mac is protected!
|
|
33
|
+
|
|
34
|
+
User: Check VPN status
|
|
35
|
+
Skill: ⚠️ VPN INACTIVE - Your traffic is NOT protected
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Requirements
|
|
39
|
+
|
|
40
|
+
- **macOS only** (uses macOS-specific commands)
|
|
41
|
+
- **Permissions needed:** exec, fs.read, network
|
|
42
|
+
- **No API keys required** for basic features
|
|
43
|
+
|
|
44
|
+
## Installation
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm install openclaw-macos-security
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Or via OpenClaw:
|
|
51
|
+
```bash
|
|
52
|
+
openclaw skills install openclaw-macos-security
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Available commands
|
|
56
|
+
|
|
57
|
+
- `camera-status` - Check camera usage
|
|
58
|
+
- `microphone-status` - Check microphone access
|
|
59
|
+
- `firewall-status` - Firewall configuration
|
|
60
|
+
- `vpn-checker` - VPN connection status
|
|
61
|
+
- `open-ports` - List listening ports
|
|
62
|
+
- `wifi-scanner` - WiFi security analysis
|
|
63
|
+
- `block-app <name>` - Block suspicious app
|
|
64
|
+
|
|
65
|
+
## Privacy & Security
|
|
66
|
+
|
|
67
|
+
✅ **All monitoring stays on your Mac** - No data sent to external servers
|
|
68
|
+
✅ **Open source** - Code available on GitHub
|
|
69
|
+
✅ **Created by certified security experts**
|
|
70
|
+
|
|
71
|
+
## Upgrade to MaclawPro Pro
|
|
72
|
+
|
|
73
|
+
This skill provides basic monitoring. For advanced features:
|
|
74
|
+
- Real-time alerts (Telegram, Email, Slack)
|
|
75
|
+
- Web dashboard with analytics
|
|
76
|
+
- Automated threat blocking
|
|
77
|
+
- 24/7 background monitoring
|
|
78
|
+
|
|
79
|
+
👉 [maclawpro.com/pricing](https://maclawpro.com/pricing)
|
|
80
|
+
|
|
81
|
+
## Support
|
|
82
|
+
|
|
83
|
+
- 📦 npm: [openclaw-macos-security](https://www.npmjs.com/package/openclaw-macos-security)
|
|
84
|
+
- 💻 GitHub: [drg3nz0/maclaw-openclaw-skill](https://github.com/drg3nz0/maclaw-openclaw-skill)
|
|
85
|
+
- 🌐 Website: [maclawpro.com](https://maclawpro.com)
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
**Professional macOS security monitoring**
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 MaclawPro / SEQUR.ca
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# 🛡️ MaclawPro Security - OpenClaw Skill
|
|
2
|
+
|
|
3
|
+
**Comprehensive macOS security monitoring for OpenClaw**
|
|
4
|
+
|
|
5
|
+
Created by certified cybersecurity experts.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 🎯 **What is this?**
|
|
10
|
+
|
|
11
|
+
MaclawPro Security brings **52+ professional macOS security tasks** to OpenClaw, enabling you to monitor and protect your Mac through simple commands.
|
|
12
|
+
|
|
13
|
+
**Use cases:**
|
|
14
|
+
- 📹 Monitor camera/microphone access in real-time
|
|
15
|
+
- 🔥 Check firewall status and open ports
|
|
16
|
+
- 🌐 Verify VPN connection and DNS security
|
|
17
|
+
- 📡 Scan WiFi networks for security risks
|
|
18
|
+
- 🛑 Block malicious apps instantly
|
|
19
|
+
- 🔐 Audit system permissions and encryption
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## 🚀 **Installation**
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Via npm
|
|
27
|
+
npm install openclaw-macos-security
|
|
28
|
+
|
|
29
|
+
# Or via OpenClaw CLI (if supported)
|
|
30
|
+
openclaw skill install openclaw-macos-security
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## 💬 **Usage**
|
|
36
|
+
|
|
37
|
+
### **Basic Commands**
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
/camera-status Check which apps use camera
|
|
41
|
+
/microphone-status Check microphone access
|
|
42
|
+
/firewall-status Verify firewall is enabled
|
|
43
|
+
/vpn-checker Check VPN connection
|
|
44
|
+
/open-ports List open network ports
|
|
45
|
+
/wifi-scanner Scan WiFi security
|
|
46
|
+
/block-app <name> Block malicious app
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### **Examples**
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
User: /camera-status
|
|
53
|
+
MaclawPro: 🔴 CAMERA ACTIVE
|
|
54
|
+
Zoom is using your camera right now
|
|
55
|
+
[Block] [Revoke Permission]
|
|
56
|
+
|
|
57
|
+
User: /firewall-status
|
|
58
|
+
MaclawPro: ✅ FIREWALL ENABLED
|
|
59
|
+
Your Mac is protected!
|
|
60
|
+
|
|
61
|
+
User: /block-app Malware
|
|
62
|
+
MaclawPro: 🚨 BLOCKED
|
|
63
|
+
Malware.app moved to Trash
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## 📋 **Full Command List**
|
|
69
|
+
|
|
70
|
+
### **Monitoring (Real-Time)**
|
|
71
|
+
- `camera-status` - Active camera usage
|
|
72
|
+
- `microphone-status` - Microphone access
|
|
73
|
+
- `location-status` - GPS tracking apps
|
|
74
|
+
|
|
75
|
+
### **Network Security**
|
|
76
|
+
- `firewall-status` - Firewall configuration
|
|
77
|
+
- `vpn-checker` - VPN status (with leak detection)
|
|
78
|
+
- `open-ports` - Listening ports
|
|
79
|
+
- `wifi-scanner` - WiFi encryption analysis
|
|
80
|
+
- `ssh-connections` - Active SSH sessions
|
|
81
|
+
- `network-connections` - All network activity
|
|
82
|
+
|
|
83
|
+
### **System Hardening**
|
|
84
|
+
- `gatekeeper-sip-status` - SIP & Gatekeeper
|
|
85
|
+
- `screen-lock-status` - Auto-lock settings
|
|
86
|
+
- `sharing-status` - File/screen sharing
|
|
87
|
+
- `update-checker` - macOS security updates
|
|
88
|
+
|
|
89
|
+
### **Threat Detection**
|
|
90
|
+
- `clipboard-monitor` - Clipboard security
|
|
91
|
+
- `dns-leak-test` - DNS privacy check
|
|
92
|
+
- `keylogger-detector` - Keylogger scan
|
|
93
|
+
- `network-sniff-detector` - Packet capture detection
|
|
94
|
+
- `rootkit-scanner` - System integrity check
|
|
95
|
+
|
|
96
|
+
### **System Audit**
|
|
97
|
+
- `permission-audit` - App permissions review
|
|
98
|
+
- `launch-daemon-audit` - Startup items
|
|
99
|
+
- `bluetooth-audit` - Bluetooth security
|
|
100
|
+
- `browser-extensions` - Extension safety
|
|
101
|
+
|
|
102
|
+
### **App Management**
|
|
103
|
+
- `block-app <name>` - Block/remove app
|
|
104
|
+
- `installed-apps` - List all apps
|
|
105
|
+
- `uninstall <name>` - Remove app
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
## 🔒 **Security & Privacy**
|
|
110
|
+
|
|
111
|
+
**This skill requires the following permissions:**
|
|
112
|
+
- `exec` - Run macOS security commands (lsof, ps, etc.)
|
|
113
|
+
- `fs.read` - Read TCC database for permissions
|
|
114
|
+
- `network` - Check network connections
|
|
115
|
+
|
|
116
|
+
**All monitoring data stays on your Mac.** No data is sent to external servers.
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## 🎓 **About MaclawPro**
|
|
121
|
+
|
|
122
|
+
MaclawPro is developed by certified cybersecurity experts with:
|
|
123
|
+
- 🏅 Professional wireless network security certification
|
|
124
|
+
- 💼 Years of Mac security experience
|
|
125
|
+
- 🌐 Serving businesses and individuals worldwide
|
|
126
|
+
|
|
127
|
+
**Learn more:**
|
|
128
|
+
- 🌐 [maclawpro.com](https://maclawpro.com) - Full standalone version
|
|
129
|
+
|
|
130
|
+
---
|
|
131
|
+
|
|
132
|
+
## ⭐ **Upgrade to MaclawPro Standalone**
|
|
133
|
+
|
|
134
|
+
This OpenClaw skill provides **basic monitoring**. For advanced features:
|
|
135
|
+
|
|
136
|
+
**MaclawPro Full Version includes:**
|
|
137
|
+
- ✅ Real-time alerts (Telegram, Email, Slack)
|
|
138
|
+
- ✅ Web dashboard with analytics
|
|
139
|
+
- ✅ Multi-channel notifications
|
|
140
|
+
- ✅ Alert history and reports
|
|
141
|
+
- ✅ Automated threat blocking
|
|
142
|
+
- ✅ 24/7 background monitoring
|
|
143
|
+
|
|
144
|
+
**Pricing:**
|
|
145
|
+
- Free: Basic monitoring
|
|
146
|
+
- Pro: $49/year - Full features
|
|
147
|
+
- Business: $99/month - Multi-Mac licensing
|
|
148
|
+
|
|
149
|
+
[Get MaclawPro →](https://maclawpro.com/pricing)
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## 🤝 **Support**
|
|
154
|
+
|
|
155
|
+
- 🌐 Website: [maclawpro.com](https://maclawpro.com)
|
|
156
|
+
- 🐛 Issues: [GitHub Issues](https://github.com/drg3nz0/maclaw-openclaw-skill/issues)
|
|
157
|
+
- 💬 Discord: [OpenClaw Community](https://discord.gg/openclaw)
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## 📄 **License**
|
|
162
|
+
|
|
163
|
+
MIT © MaclawPro
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
**Professional macOS security monitoring**
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# 🛡️ MaclawPro Security
|
|
2
|
+
|
|
3
|
+
**Comprehensive macOS security monitoring for OpenClaw**
|
|
4
|
+
|
|
5
|
+
## What does this skill do?
|
|
6
|
+
|
|
7
|
+
This skill provides **52+ professional macOS security tasks** including:
|
|
8
|
+
|
|
9
|
+
- 📹 **Camera monitoring** - Check which apps use your camera right now
|
|
10
|
+
- 🎤 **Microphone monitoring** - See microphone access in real-time
|
|
11
|
+
- 🔥 **Firewall status** - Verify your Mac's firewall is enabled
|
|
12
|
+
- 🔐 **VPN checker** - Detect VPN connection status
|
|
13
|
+
- 📡 **WiFi scanner** - Analyze WiFi security (WPA2/WPA3)
|
|
14
|
+
- 🔌 **Port scanner** - List open network ports
|
|
15
|
+
- 🛑 **App blocker** - Block suspicious apps instantly (Pro feature)
|
|
16
|
+
|
|
17
|
+
## When to use this skill
|
|
18
|
+
|
|
19
|
+
Use this skill when you need to:
|
|
20
|
+
- Check if apps are secretly using your camera or microphone
|
|
21
|
+
- Verify your Mac's security settings (firewall, VPN)
|
|
22
|
+
- Scan for open ports or WiFi vulnerabilities
|
|
23
|
+
- Monitor system security in real-time
|
|
24
|
+
|
|
25
|
+
## Example commands
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
User: Check if anyone is using my camera
|
|
29
|
+
Skill: ✅ CAMERA INACTIVE - No apps currently using your camera
|
|
30
|
+
|
|
31
|
+
User: Is my firewall on?
|
|
32
|
+
Skill: ✅ FIREWALL ENABLED - Your Mac is protected!
|
|
33
|
+
|
|
34
|
+
User: Check VPN status
|
|
35
|
+
Skill: ⚠️ VPN INACTIVE - Your traffic is NOT protected
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Requirements
|
|
39
|
+
|
|
40
|
+
- **macOS only** (uses macOS-specific commands)
|
|
41
|
+
- **Permissions needed:** exec, fs.read, network
|
|
42
|
+
- **No API keys required** for basic features
|
|
43
|
+
|
|
44
|
+
## Installation
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
npm install openclaw-macos-security
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Or via OpenClaw:
|
|
51
|
+
```bash
|
|
52
|
+
openclaw skills install openclaw-macos-security
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## Available commands
|
|
56
|
+
|
|
57
|
+
- `camera-status` - Check camera usage
|
|
58
|
+
- `microphone-status` - Check microphone access
|
|
59
|
+
- `firewall-status` - Firewall configuration
|
|
60
|
+
- `vpn-checker` - VPN connection status
|
|
61
|
+
- `open-ports` - List listening ports
|
|
62
|
+
- `wifi-scanner` - WiFi security analysis
|
|
63
|
+
- `block-app <name>` - Block suspicious app
|
|
64
|
+
|
|
65
|
+
## Privacy & Security
|
|
66
|
+
|
|
67
|
+
✅ **All monitoring stays on your Mac** - No data sent to external servers
|
|
68
|
+
✅ **Open source** - Code available on GitHub
|
|
69
|
+
✅ **Created by certified security experts**
|
|
70
|
+
|
|
71
|
+
## Upgrade to MaclawPro Pro
|
|
72
|
+
|
|
73
|
+
This skill provides basic monitoring. For advanced features:
|
|
74
|
+
- Real-time alerts (Telegram, Email, Slack)
|
|
75
|
+
- Web dashboard with analytics
|
|
76
|
+
- Automated threat blocking
|
|
77
|
+
- 24/7 background monitoring
|
|
78
|
+
|
|
79
|
+
👉 [maclawpro.com/pricing](https://maclawpro.com/pricing)
|
|
80
|
+
|
|
81
|
+
## Support
|
|
82
|
+
|
|
83
|
+
- 📦 npm: [openclaw-macos-security](https://www.npmjs.com/package/openclaw-macos-security)
|
|
84
|
+
- 💻 GitHub: [drg3nz0/maclaw-openclaw-skill](https://github.com/drg3nz0/maclaw-openclaw-skill)
|
|
85
|
+
- 🌐 Website: [maclawpro.com](https://maclawpro.com)
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
**Professional macOS security monitoring**
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MaclawPro Security - OpenClaw Skill
|
|
3
|
+
* Professional macOS security monitoring
|
|
4
|
+
*
|
|
5
|
+
* Created by SEQUR.ca - Certified Cybersecurity Experts
|
|
6
|
+
* https://maclawpro.com
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Skill metadata for OpenClaw
|
|
10
|
+
*/
|
|
11
|
+
export declare const metadata: {
|
|
12
|
+
name: string;
|
|
13
|
+
displayName: string;
|
|
14
|
+
description: string;
|
|
15
|
+
version: string;
|
|
16
|
+
author: string;
|
|
17
|
+
homepage: string;
|
|
18
|
+
category: string;
|
|
19
|
+
icon: string;
|
|
20
|
+
commands: string[];
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Camera status check
|
|
24
|
+
*/
|
|
25
|
+
export declare function cameraStatus(): Promise<string>;
|
|
26
|
+
/**
|
|
27
|
+
* Microphone status check
|
|
28
|
+
*/
|
|
29
|
+
export declare function microphoneStatus(): Promise<string>;
|
|
30
|
+
/**
|
|
31
|
+
* Firewall status
|
|
32
|
+
*/
|
|
33
|
+
export declare function firewallStatus(): Promise<string>;
|
|
34
|
+
/**
|
|
35
|
+
* VPN checker
|
|
36
|
+
*/
|
|
37
|
+
export declare function vpnChecker(): Promise<string>;
|
|
38
|
+
/**
|
|
39
|
+
* Open ports scanner
|
|
40
|
+
*/
|
|
41
|
+
export declare function openPorts(): Promise<string>;
|
|
42
|
+
/**
|
|
43
|
+
* WiFi scanner
|
|
44
|
+
*/
|
|
45
|
+
export declare function wifiScanner(): Promise<string>;
|
|
46
|
+
/**
|
|
47
|
+
* Block app (simplified version)
|
|
48
|
+
*/
|
|
49
|
+
export declare function blockApp(appName: string): Promise<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Main skill export for OpenClaw
|
|
52
|
+
*/
|
|
53
|
+
declare const _default: {
|
|
54
|
+
metadata: {
|
|
55
|
+
name: string;
|
|
56
|
+
displayName: string;
|
|
57
|
+
description: string;
|
|
58
|
+
version: string;
|
|
59
|
+
author: string;
|
|
60
|
+
homepage: string;
|
|
61
|
+
category: string;
|
|
62
|
+
icon: string;
|
|
63
|
+
commands: string[];
|
|
64
|
+
};
|
|
65
|
+
commands: {
|
|
66
|
+
'camera-status': typeof cameraStatus;
|
|
67
|
+
'microphone-status': typeof microphoneStatus;
|
|
68
|
+
'firewall-status': typeof firewallStatus;
|
|
69
|
+
'vpn-checker': typeof vpnChecker;
|
|
70
|
+
'open-ports': typeof openPorts;
|
|
71
|
+
'wifi-scanner': typeof wifiScanner;
|
|
72
|
+
'block-app': typeof blockApp;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
export default _default;
|
|
@@ -0,0 +1,206 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* MaclawPro Security - OpenClaw Skill
|
|
4
|
+
* Professional macOS security monitoring
|
|
5
|
+
*
|
|
6
|
+
* Created by SEQUR.ca - Certified Cybersecurity Experts
|
|
7
|
+
* https://maclawpro.com
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.metadata = void 0;
|
|
11
|
+
exports.cameraStatus = cameraStatus;
|
|
12
|
+
exports.microphoneStatus = microphoneStatus;
|
|
13
|
+
exports.firewallStatus = firewallStatus;
|
|
14
|
+
exports.vpnChecker = vpnChecker;
|
|
15
|
+
exports.openPorts = openPorts;
|
|
16
|
+
exports.wifiScanner = wifiScanner;
|
|
17
|
+
exports.blockApp = blockApp;
|
|
18
|
+
const child_process_1 = require("child_process");
|
|
19
|
+
const util_1 = require("util");
|
|
20
|
+
const execAsync = (0, util_1.promisify)(child_process_1.exec);
|
|
21
|
+
/**
|
|
22
|
+
* Skill metadata for OpenClaw
|
|
23
|
+
*/
|
|
24
|
+
exports.metadata = {
|
|
25
|
+
name: 'maclaw-security',
|
|
26
|
+
displayName: 'MaclawPro Security',
|
|
27
|
+
description: '52+ professional macOS security monitoring tasks',
|
|
28
|
+
version: '1.0.0',
|
|
29
|
+
author: 'SEQUR.ca',
|
|
30
|
+
homepage: 'https://maclawpro.com',
|
|
31
|
+
category: 'security',
|
|
32
|
+
icon: '🛡️',
|
|
33
|
+
commands: [
|
|
34
|
+
'camera-status',
|
|
35
|
+
'microphone-status',
|
|
36
|
+
'firewall-status',
|
|
37
|
+
'vpn-checker',
|
|
38
|
+
'open-ports',
|
|
39
|
+
'wifi-scanner',
|
|
40
|
+
'block-app'
|
|
41
|
+
]
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Camera status check
|
|
45
|
+
*/
|
|
46
|
+
async function cameraStatus() {
|
|
47
|
+
try {
|
|
48
|
+
const { stdout } = await execAsync('lsof 2>/dev/null | grep -i "VDCAssistant\\|camera" | grep -v grep || true');
|
|
49
|
+
if (stdout && stdout.trim()) {
|
|
50
|
+
const apps = stdout.split('\n')
|
|
51
|
+
.filter(line => line.trim())
|
|
52
|
+
.map(line => line.split(/\s+/)[0])
|
|
53
|
+
.filter((app, i, arr) => arr.indexOf(app) === i);
|
|
54
|
+
if (apps.length > 0) {
|
|
55
|
+
return `🔴 **CAMERA ACTIVE**\n\n` +
|
|
56
|
+
`${apps.length} app(s) using camera:\n` +
|
|
57
|
+
apps.map(app => `• ${app}`).join('\n') + '\n\n' +
|
|
58
|
+
`💡 **Upgrade to MaclawPro** for real-time alerts and blocking\n` +
|
|
59
|
+
`→ https://maclawpro.com`;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
return `✅ **CAMERA INACTIVE**\n\nNo apps currently using your camera.`;
|
|
63
|
+
}
|
|
64
|
+
catch (error) {
|
|
65
|
+
return `✅ **CAMERA INACTIVE**\n\nNo apps currently using your camera.`;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Microphone status check
|
|
70
|
+
*/
|
|
71
|
+
async function microphoneStatus() {
|
|
72
|
+
try {
|
|
73
|
+
const { stdout } = await execAsync('lsof 2>/dev/null | grep -i "coreaudiod\\|microphone" | grep -v grep || true');
|
|
74
|
+
if (stdout && stdout.trim()) {
|
|
75
|
+
return `🔴 **MICROPHONE ACTIVE**\n\n` +
|
|
76
|
+
`Apps may be accessing your microphone.\n\n` +
|
|
77
|
+
`💡 **MaclawPro Pro** shows exactly which apps with blocking options\n` +
|
|
78
|
+
`→ https://maclawpro.com/pricing`;
|
|
79
|
+
}
|
|
80
|
+
return `✅ **MICROPHONE INACTIVE**\n\nNo suspicious microphone access detected.`;
|
|
81
|
+
}
|
|
82
|
+
catch (error) {
|
|
83
|
+
return `✅ **MICROPHONE INACTIVE**\n\nNo suspicious microphone access detected.`;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Firewall status
|
|
88
|
+
*/
|
|
89
|
+
async function firewallStatus() {
|
|
90
|
+
try {
|
|
91
|
+
const { stdout } = await execAsync('/usr/libexec/ApplicationFirewall/socketfilterfw --getglobalstate');
|
|
92
|
+
const enabled = stdout.toLowerCase().includes('enabled');
|
|
93
|
+
if (enabled) {
|
|
94
|
+
return `✅ **FIREWALL ENABLED**\n\nYour Mac is protected!`;
|
|
95
|
+
}
|
|
96
|
+
else {
|
|
97
|
+
return `⚠️ **FIREWALL DISABLED**\n\n` +
|
|
98
|
+
`Your Mac is NOT protected!\n\n` +
|
|
99
|
+
`💡 Enable it in:\n` +
|
|
100
|
+
`System Settings > Network > Firewall`;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
catch (error) {
|
|
104
|
+
return `❌ Error checking firewall status`;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* VPN checker
|
|
109
|
+
*/
|
|
110
|
+
async function vpnChecker() {
|
|
111
|
+
try {
|
|
112
|
+
const { stdout } = await execAsync('scutil --nc list 2>/dev/null || echo ""');
|
|
113
|
+
if (stdout.includes('Connected')) {
|
|
114
|
+
return `🔐 **VPN ACTIVE**\n\n` +
|
|
115
|
+
`✅ Your traffic is protected!\n\n` +
|
|
116
|
+
`💡 **MaclawPro** includes VPN leak detection and monitoring\n` +
|
|
117
|
+
`→ https://maclawpro.com`;
|
|
118
|
+
}
|
|
119
|
+
return `⚠️ **VPN INACTIVE**\n\n` +
|
|
120
|
+
`Your traffic is NOT protected.\n\n` +
|
|
121
|
+
`💡 Enable VPN for better privacy.`;
|
|
122
|
+
}
|
|
123
|
+
catch (error) {
|
|
124
|
+
return `❌ Error checking VPN status`;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* Open ports scanner
|
|
129
|
+
*/
|
|
130
|
+
async function openPorts() {
|
|
131
|
+
try {
|
|
132
|
+
const { stdout } = await execAsync('lsof -iTCP -sTCP:LISTEN -n -P 2>/dev/null | tail -10');
|
|
133
|
+
if (!stdout.trim()) {
|
|
134
|
+
return `✅ **NO OPEN PORTS**\n\nYour Mac is secure!`;
|
|
135
|
+
}
|
|
136
|
+
const lines = stdout.split('\n').filter(l => l.trim());
|
|
137
|
+
return `🔌 **OPEN PORTS DETECTED**\n\n` +
|
|
138
|
+
`Found ${lines.length} listening ports\n\n` +
|
|
139
|
+
`💡 **MaclawPro Pro** provides detailed port analysis and blocking\n` +
|
|
140
|
+
`→ https://maclawpro.com/pricing`;
|
|
141
|
+
}
|
|
142
|
+
catch (error) {
|
|
143
|
+
return `❌ Error scanning ports`;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
/**
|
|
147
|
+
* WiFi scanner
|
|
148
|
+
*/
|
|
149
|
+
async function wifiScanner() {
|
|
150
|
+
try {
|
|
151
|
+
const { stdout } = await execAsync('system_profiler SPAirPortDataType 2>/dev/null | grep "Security:"');
|
|
152
|
+
if (stdout.includes('WPA3')) {
|
|
153
|
+
return `✅ **EXCELLENT SECURITY**\n\n` +
|
|
154
|
+
`Your WiFi uses WPA3 encryption (latest & safest)`;
|
|
155
|
+
}
|
|
156
|
+
else if (stdout.includes('WPA2')) {
|
|
157
|
+
return `✅ **GOOD SECURITY**\n\n` +
|
|
158
|
+
`Your WiFi uses WPA2 encryption (secure for most uses)`;
|
|
159
|
+
}
|
|
160
|
+
else if (stdout.includes('Open') || stdout.includes('None')) {
|
|
161
|
+
return `🚨 **DANGER - OPEN NETWORK**\n\n` +
|
|
162
|
+
`Anyone can intercept your data!\n\n` +
|
|
163
|
+
`💡 Use VPN or switch to secure network`;
|
|
164
|
+
}
|
|
165
|
+
return `📡 **WIFI STATUS**\n\n` +
|
|
166
|
+
`Connected to network\n\n` +
|
|
167
|
+
`💡 **MaclawPro** provides full WiFi security analysis\n` +
|
|
168
|
+
`→ https://maclawpro.com`;
|
|
169
|
+
}
|
|
170
|
+
catch (error) {
|
|
171
|
+
return `❌ Error scanning WiFi`;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
/**
|
|
175
|
+
* Block app (simplified version)
|
|
176
|
+
*/
|
|
177
|
+
async function blockApp(appName) {
|
|
178
|
+
if (!appName) {
|
|
179
|
+
return `❌ Please specify an app name\n\nUsage: /block-app <AppName>`;
|
|
180
|
+
}
|
|
181
|
+
return `🛡️ **APP BLOCKING**\n\n` +
|
|
182
|
+
`This feature requires **MaclawPro Pro** for secure app removal.\n\n` +
|
|
183
|
+
`**MaclawPro Pro includes:**\n` +
|
|
184
|
+
`• Instant app blocking\n` +
|
|
185
|
+
`• Protected apps whitelist\n` +
|
|
186
|
+
`• Reversible (moves to Trash)\n` +
|
|
187
|
+
`• Multiple security layers\n\n` +
|
|
188
|
+
`**Get MaclawPro Pro** ($49/year):\n` +
|
|
189
|
+
`→ https://maclawpro.com/pricing\n\n` +
|
|
190
|
+
`💼 **Enterprise?** Contact info@sequr.ca for custom solutions`;
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* Main skill export for OpenClaw
|
|
194
|
+
*/
|
|
195
|
+
exports.default = {
|
|
196
|
+
metadata: exports.metadata,
|
|
197
|
+
commands: {
|
|
198
|
+
'camera-status': cameraStatus,
|
|
199
|
+
'microphone-status': microphoneStatus,
|
|
200
|
+
'firewall-status': firewallStatus,
|
|
201
|
+
'vpn-checker': vpnChecker,
|
|
202
|
+
'open-ports': openPorts,
|
|
203
|
+
'wifi-scanner': wifiScanner,
|
|
204
|
+
'block-app': blockApp
|
|
205
|
+
}
|
|
206
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openclaw-macos-security",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "MaclawPro security monitoring skill for OpenClaw - 52+ macOS security tasks",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"clean": "rm -rf dist node_modules package-lock.json",
|
|
10
|
+
"prepublishOnly": "npm run build"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"openclaw",
|
|
14
|
+
"openclaw-skill",
|
|
15
|
+
"macos",
|
|
16
|
+
"security",
|
|
17
|
+
"monitoring",
|
|
18
|
+
"privacy",
|
|
19
|
+
"camera",
|
|
20
|
+
"microphone",
|
|
21
|
+
"firewall",
|
|
22
|
+
"cybersecurity"
|
|
23
|
+
],
|
|
24
|
+
"author": "MaclawPro",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"homepage": "https://maclawpro.com",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/drg3nz0/maclaw-openclaw-skill"
|
|
30
|
+
},
|
|
31
|
+
"bugs": {
|
|
32
|
+
"url": "https://github.com/drg3nz0/maclaw-openclaw-skill/issues"
|
|
33
|
+
},
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18.0.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@types/node": "^20.11.17",
|
|
39
|
+
"typescript": "^5.3.3"
|
|
40
|
+
},
|
|
41
|
+
"openclaw": {
|
|
42
|
+
"displayName": "MaclawPro Security",
|
|
43
|
+
"category": "security",
|
|
44
|
+
"icon": "🛡️",
|
|
45
|
+
"commands": [
|
|
46
|
+
"camera-status",
|
|
47
|
+
"microphone-status",
|
|
48
|
+
"firewall-status",
|
|
49
|
+
"vpn-checker",
|
|
50
|
+
"open-ports",
|
|
51
|
+
"wifi-scanner",
|
|
52
|
+
"block-app"
|
|
53
|
+
],
|
|
54
|
+
"permissions": [
|
|
55
|
+
"exec",
|
|
56
|
+
"fs.read",
|
|
57
|
+
"network"
|
|
58
|
+
]
|
|
59
|
+
}
|
|
60
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-macos-security",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "MaclawPro security monitoring skill for OpenClaw - 52+ macOS security tasks",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"firewall",
|
|
22
22
|
"cybersecurity"
|
|
23
23
|
],
|
|
24
|
-
"author": "MaclawPro
|
|
24
|
+
"author": "MaclawPro",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"homepage": "https://maclawpro.com",
|
|
27
27
|
"repository": {
|