@keeper-security/rules-linux-x64 1.5.3 → 1.5.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/LICENSE.md +6 -2
- package/README.md +12 -4
- package/bin/keeper-rules +0 -0
- package/package.json +1 -1
package/LICENSE.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Copyright (C) Keeper Security - All Rights Reserved
|
|
4
4
|
|
|
5
|
-
This source code is protected under international copyright law. All rights
|
|
5
|
+
This source code is protected under international copyright law. All rights
|
|
6
|
+
reserved and protected by the copyright holders.
|
|
6
7
|
|
|
7
|
-
This project is confidential and only available to authorized individuals with
|
|
8
|
+
This project is confidential and only available to authorized individuals with
|
|
9
|
+
the permission of the copyright holders. If you encounter this project and do
|
|
10
|
+
not have permission, please contact the copyright holders and delete this
|
|
11
|
+
project.
|
package/README.md
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
|
+
# keeper-rules
|
|
2
|
+
|
|
1
3
|
<div align="center">
|
|
2
4
|
|
|
3
5
|
Centralized AI assistant rules for Keeper Security.
|
|
4
6
|
|
|
5
|
-
One command to sync rules across Claude Code, Cursor, GitHub Copilot, and other
|
|
7
|
+
One command to sync rules across Claude Code, Cursor, GitHub Copilot, and other
|
|
8
|
+
AI tools.
|
|
6
9
|
|
|
7
10
|
Built on top of [rulesync](https://github.com/dyoshikawa/rulesync), inspired by [skills.sh](https://github.com/vercel-labs/skills).
|
|
8
11
|
|
|
@@ -12,7 +15,8 @@ Built on top of [rulesync](https://github.com/dyoshikawa/rulesync), inspired by
|
|
|
12
15
|
|
|
13
16
|
**Recommended:** Use `npx -y @keeper-security/rules` to run without installing.
|
|
14
17
|
|
|
15
|
-
You can also `npm install -g @keeper-security/rules` to get the `keeper-rules`
|
|
18
|
+
You can also `npm install -g @keeper-security/rules` to get the `keeper-rules`
|
|
19
|
+
binary globally.
|
|
16
20
|
|
|
17
21
|
First, clone this repository as it serves as your source of truth:
|
|
18
22
|
|
|
@@ -31,7 +35,8 @@ npx -y @keeper-security/rules add-product <name>
|
|
|
31
35
|
|
|
32
36
|
### Sync
|
|
33
37
|
|
|
34
|
-
After your changes land in `main`, run `sync` in another repo to pull rules
|
|
38
|
+
After your changes land in `main`, run `sync` in another repo to pull rules
|
|
39
|
+
down:
|
|
35
40
|
|
|
36
41
|
```bash
|
|
37
42
|
npx -y @keeper-security/rules sync <name>
|
|
@@ -48,5 +53,8 @@ npx -y @keeper-security/rules list # List products
|
|
|
48
53
|
## Docker
|
|
49
54
|
|
|
50
55
|
```bash
|
|
51
|
-
docker run -v
|
|
56
|
+
docker run -v $(pwd):/app \
|
|
57
|
+
-v ~/.ssh:/root/.ssh \
|
|
58
|
+
-v ~/.gitconfig:/root/.gitconfig \
|
|
59
|
+
keepersecurityinc/rules sync default
|
|
52
60
|
```
|
package/bin/keeper-rules
CHANGED
|
Binary file
|