aguard 2.7.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.
Files changed (4) hide show
  1. package/README.md +15 -0
  2. package/bin.js +3 -0
  3. package/index.js +1 -0
  4. package/package.json +31 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # aguard
2
+
3
+ **Agent Guard** — Run AI agents without fear.
4
+
5
+ This is a convenience package that installs [`@red-codes/agentguard`](https://www.npmjs.com/package/@red-codes/agentguard).
6
+
7
+ ```bash
8
+ npx aguard claude-init
9
+ npx aguard guard
10
+ npx aguard status
11
+ ```
12
+
13
+ Both `npx aguard` and `npx @red-codes/agentguard` work identically.
14
+
15
+ For full documentation, see the [AgentGuard repository](https://github.com/AgentGuardHQ/agentguard).
package/bin.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ // aguard — Agent Guard. Delegates to @red-codes/agentguard CLI.
3
+ import '@red-codes/agentguard/dist/bin.js';
package/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from '@red-codes/agentguard';
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "aguard",
3
+ "version": "2.7.0",
4
+ "description": "Agent Guard — run AI agents without fear. Installs @red-codes/agentguard.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "bin": {
8
+ "aguard": "./bin.js"
9
+ },
10
+ "files": [
11
+ "bin.js",
12
+ "index.js",
13
+ "README.md"
14
+ ],
15
+ "dependencies": {
16
+ "@red-codes/agentguard": "^2.7.0"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/AgentGuardHQ/agentguard"
21
+ },
22
+ "keywords": [
23
+ "aguard",
24
+ "agentguard",
25
+ "ai-governance",
26
+ "agent-safety",
27
+ "claude-code",
28
+ "copilot",
29
+ "guardrails"
30
+ ]
31
+ }