@keeper-security/rules 1.2.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.
package/LICENSE.md ADDED
@@ -0,0 +1,7 @@
1
+ # License
2
+
3
+ Copyright (C) Keeper Security - All Rights Reserved
4
+
5
+ This source code is protected under international copyright law. All rights reserved and protected by the copyright holders.
6
+
7
+ This project is confidential and only available to authorized individuals with the permission of the copyright holders. If you encounter this project and do not have permission, please contact the copyright holders and delete this project.
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ <div align="center">
2
+
3
+ Centralized AI assistant rules for Keeper Security.
4
+
5
+ One command to sync rules across Claude Code, Cursor, GitHub Copilot, and other AI tools.
6
+
7
+ Built on top of [rulesync](https://github.com/dyoshikawa/rulesync), inspired by [skills.sh](https://github.com/vercel-labs/skills).
8
+
9
+ </div>
10
+
11
+ ## Commands
12
+
13
+ ```bash
14
+ npx -y @keeper-security/rules sync <name> # Sync rules to project
15
+ npx -y @keeper-security/rules add-product <name> # Create new product
16
+ npx -y @keeper-security/rules list # List products
17
+
18
+ # Or install globally
19
+ npm install -g @keeper-security/rules
20
+
21
+ keeper-rules sync
22
+ keeper-rules add-product <name>
23
+ keeper-rules list
24
+ ```
25
+
26
+ > **Requirements:** Node.js >=22.0.0
Binary file
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@keeper-security/rules",
3
+ "version": "1.2.0",
4
+ "description": "Internal CLI for syncing Keeper Security AI rules",
5
+ "type": "module",
6
+ "private": false,
7
+ "keywords": [
8
+ "ai",
9
+ "coding-assistant",
10
+ "rules",
11
+ "subagents",
12
+ "commands",
13
+ "skills",
14
+ "claude",
15
+ "cursor",
16
+ "copilot",
17
+ "gemini",
18
+ "rulesync"
19
+ ],
20
+ "author": "Keeper Security",
21
+ "license": "Proprietary",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/Keeper-Security/keeper-rules.git"
25
+ },
26
+ "bin": {
27
+ "keeper-rules": "dist/keeper-rules"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "LICENSE.md",
32
+ "README.md",
33
+ "package.json"
34
+ ],
35
+ "scripts": {
36
+ "build": "bun run build:embed-examples && bun build lib/keeper-rules.js --compile --minify --outfile dist/keeper-rules",
37
+ "build:darwin-arm64": "bun run build -- --target bun-darwin-arm64",
38
+ "build:darwin": "bun run build -- --target bun-darwin-x64",
39
+ "build:embed-examples": "bun run scripts/embed-examples.js",
40
+ "build:linux-arm64": "bun run build -- --target bun-linux-arm64",
41
+ "build:linux": "bun run build -- --target bun-linux-x64",
42
+ "build:windows": "bun run build -- --target bun-windows-x64 --outfile dist/keeper-rules.exe",
43
+ "check": "bunx -y biome check --write .",
44
+ "rulesync": "bunx -y rulesync generate -c ./rulesync.jsonc",
45
+ "start": "KEEPER_RULES_EXECUTOR=bunx KEEPER_RULES_REPO_ROOT=.. bun run lib/keeper-rules.js",
46
+ "test": "bun test --coverage"
47
+ }
48
+ }