@fozikio/reflex 0.1.1 → 0.1.2

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.
Files changed (2) hide show
  1. package/README.md +5 -0
  2. package/package.json +62 -58
package/README.md CHANGED
@@ -185,11 +185,16 @@ const config: ReflexConfig = {
185
185
  };
186
186
  ```
187
187
 
188
+ ## Contributing
189
+
190
+ See the [Contributing Guide](https://github.com/Fozikio/.github/blob/main/CONTRIBUTING.md). Report security issues via [SECURITY.md](https://github.com/Fozikio/.github/blob/main/SECURITY.md).
191
+
188
192
  ## Related Projects
189
193
 
190
194
  - [cortex-engine](https://github.com/Fozikio/cortex-engine) — Cognitive memory layer for AI agents (ships with Reflex rules)
191
195
  - [sigil](https://github.com/Fozikio/sigil) — Agent control surface
192
196
  - [fozikio.com](https://www.fozikio.com) — Documentation and guides
197
+ - [r/fozikio](https://www.reddit.com/r/Fozikio/) — Community
193
198
 
194
199
  ## Background
195
200
 
package/package.json CHANGED
@@ -1,58 +1,62 @@
1
- {
2
- "name": "@fozikio/reflex",
3
- "version": "0.1.1",
4
- "description": "Portable guardrails for any agent runtime — safety rules as data, not code",
5
- "type": "module",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
- "bin": {
9
- "reflex": "dist/cli/index.js"
10
- },
11
- "scripts": {
12
- "build": "tsc",
13
- "dev": "tsc --watch",
14
- "test": "vitest run"
15
- },
16
- "engines": {
17
- "node": ">=20"
18
- },
19
- "dependencies": {
20
- "yaml": "^2.7.0"
21
- },
22
- "devDependencies": {
23
- "@types/node": "^22.10.0",
24
- "typescript": "^5.7.0",
25
- "vitest": "^3.0.0"
26
- },
27
- "files": [
28
- "dist",
29
- "rules",
30
- "LICENSE",
31
- "README.md"
32
- ],
33
- "exports": {
34
- ".": {
35
- "import": "./dist/index.js",
36
- "types": "./dist/index.d.ts"
37
- }
38
- },
39
- "keywords": [
40
- "reflex",
41
- "guardrails",
42
- "safety",
43
- "ai-agent",
44
- "hooks",
45
- "mcp"
46
- ],
47
- "license": "MIT",
48
- "author": "Fozikio <hello@fozikio.com>",
49
- "repository": {
50
- "type": "git",
51
- "url": "https://github.com/Fozikio/reflex.git"
52
- },
53
- "homepage": "https://github.com/Fozikio/reflex#readme",
54
- "funding": {
55
- "type": "github",
56
- "url": "https://github.com/sponsors/Fozikio"
57
- }
58
- }
1
+ {
2
+ "name": "@fozikio/reflex",
3
+ "version": "0.1.2",
4
+ "description": "Portable guardrails for any agent runtime — safety rules as data, not code",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "reflex": "dist/cli/index.js"
10
+ },
11
+ "scripts": {
12
+ "build": "tsc",
13
+ "dev": "tsc --watch",
14
+ "test": "vitest run"
15
+ },
16
+ "engines": {
17
+ "node": ">=20"
18
+ },
19
+ "dependencies": {
20
+ "yaml": "^2.7.0"
21
+ },
22
+ "devDependencies": {
23
+ "@types/node": "^22.10.0",
24
+ "typescript": "^5.7.0",
25
+ "vitest": "^3.0.0"
26
+ },
27
+ "files": [
28
+ "dist",
29
+ "rules",
30
+ "LICENSE",
31
+ "README.md"
32
+ ],
33
+ "exports": {
34
+ ".": {
35
+ "import": "./dist/index.js",
36
+ "types": "./dist/index.d.ts"
37
+ }
38
+ },
39
+ "keywords": [
40
+ "reflex",
41
+ "guardrails",
42
+ "safety",
43
+ "ai-agent",
44
+ "hooks",
45
+ "mcp",
46
+ "fozikio",
47
+ "rules-engine",
48
+ "agent-safety",
49
+ "yaml-rules"
50
+ ],
51
+ "license": "MIT",
52
+ "author": "Fozikio <hello@fozikio.com>",
53
+ "repository": {
54
+ "type": "git",
55
+ "url": "https://github.com/Fozikio/reflex.git"
56
+ },
57
+ "homepage": "https://github.com/Fozikio/reflex#readme",
58
+ "funding": {
59
+ "type": "github",
60
+ "url": "https://github.com/sponsors/idapixl"
61
+ }
62
+ }