@open1s/ezbos 1.0.3 → 1.0.5
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 +6 -3
- package/skills/code-review/SKILL.md +0 -18
package/package.json
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open1s/ezbos",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Simple BrainOS - Easy wrapper for @open1s/jsbos",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"files": [
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"src"
|
|
12
|
+
],
|
|
10
13
|
"exports": {
|
|
11
14
|
".": {
|
|
12
15
|
"import": "./dist/index.js",
|
|
@@ -35,7 +38,7 @@
|
|
|
35
38
|
],
|
|
36
39
|
"license": "MIT",
|
|
37
40
|
"dependencies": {
|
|
38
|
-
"@open1s/jsbos": "^2.2.
|
|
41
|
+
"@open1s/jsbos": "^2.2.4"
|
|
39
42
|
},
|
|
40
43
|
"devDependencies": {
|
|
41
44
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: code-review
|
|
3
|
-
description: Expert code review for potential bugs, security, and performance
|
|
4
|
-
category: development
|
|
5
|
-
version: 1.0.0
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Code Review Skill
|
|
9
|
-
|
|
10
|
-
You are an expert code reviewer. When reviewing code:
|
|
11
|
-
|
|
12
|
-
1. Check for potential bugs and edge cases
|
|
13
|
-
2. Identify security vulnerabilities
|
|
14
|
-
3. Suggest performance improvements
|
|
15
|
-
4. Review for readability and maintainability
|
|
16
|
-
5. Provide concrete examples of improvements
|
|
17
|
-
|
|
18
|
-
Always format your response with clear sections and code examples.
|