agnix 0.7.2 → 0.8.1
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/README.md +28 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,25 +58,41 @@ console.log(agnix.version());
|
|
|
58
58
|
| File | Tool |
|
|
59
59
|
|------|------|
|
|
60
60
|
| `SKILL.md` | Claude Code |
|
|
61
|
-
| `CLAUDE.md`, `AGENTS.md` | Claude Code, Codex |
|
|
62
|
-
| `.claude/settings.json` | Claude Code |
|
|
61
|
+
| `CLAUDE.md`, `CLAUDE.local.md`, `AGENTS.md`, `AGENTS.local.md`, `AGENTS.override.md` | Claude Code, Codex |
|
|
62
|
+
| `.claude/settings.json`, `.claude/settings.local.json` | Claude Code |
|
|
63
63
|
| `plugin.json` | Claude Code |
|
|
64
|
-
| `*.mcp.json` | All |
|
|
65
|
-
| `.github/copilot-instructions.md` | GitHub Copilot |
|
|
66
|
-
| `.cursor/rules/*.mdc` | Cursor |
|
|
64
|
+
| `*.mcp.json`, `mcp.json`, `mcp-*.json` | All |
|
|
65
|
+
| `.github/copilot-instructions.md`, `.github/instructions/*.instructions.md` | GitHub Copilot |
|
|
66
|
+
| `.cursor/rules/*.mdc`, `.cursorrules` | Cursor |
|
|
67
67
|
|
|
68
68
|
## Options
|
|
69
69
|
|
|
70
70
|
```
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
-
|
|
71
|
+
agnix [OPTIONS] [PATH] [COMMAND]
|
|
72
|
+
|
|
73
|
+
Commands:
|
|
74
|
+
validate Validate agent configs
|
|
75
|
+
init Initialize config file
|
|
76
|
+
eval Evaluate rule efficacy against labeled test cases
|
|
77
|
+
telemetry Manage telemetry settings (opt-in usage analytics)
|
|
78
|
+
schema Output JSON Schema for configuration files
|
|
79
|
+
|
|
80
|
+
Common options:
|
|
81
|
+
-s, --strict
|
|
82
|
+
-t, --target <generic|claude-code|cursor|codex>
|
|
83
|
+
-c, --config <CONFIG>
|
|
84
|
+
--fix
|
|
85
|
+
--dry-run
|
|
86
|
+
--fix-safe
|
|
87
|
+
--format <text|json|sarif>
|
|
88
|
+
-w, --watch
|
|
89
|
+
-v, --verbose
|
|
90
|
+
-V, --version
|
|
91
|
+
-h, --help
|
|
78
92
|
```
|
|
79
93
|
|
|
94
|
+
Run `agnix --help` for the full command reference.
|
|
95
|
+
|
|
80
96
|
## Links
|
|
81
97
|
|
|
82
98
|
- [GitHub Repository](https://github.com/avifenesh/agnix)
|