@helmoragent/agent 0.1.4

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 (3) hide show
  1. package/README.md +14 -0
  2. package/bin/helmor.js +4 -0
  3. package/package.json +38 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # @helmoragent/agent
2
+
3
+ Scoped npm alias for the HELMOR Agent CLI.
4
+
5
+ ```bash
6
+ npx @helmoragent/agent@latest install
7
+ ```
8
+
9
+ The short package name is preferred:
10
+
11
+ ```bash
12
+ npm i -g @helmoragent/helmor
13
+ helmor install
14
+ ```
package/bin/helmor.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ 'use strict';
3
+
4
+ require('@helmoragent/helmor/bin/helmor.js');
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@helmoragent/agent",
3
+ "version": "0.1.4",
4
+ "description": "Scoped npm alias for the HELMOR Agent CLI",
5
+ "license": "Apache-2.0",
6
+ "homepage": "https://github.com/helmorx/agent-os",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/helmorx/agent-os.git",
10
+ "directory": "npm/agent"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/helmorx/agent-os/issues"
14
+ },
15
+ "keywords": [
16
+ "ai",
17
+ "agent",
18
+ "cli",
19
+ "helmor"
20
+ ],
21
+ "bin": {
22
+ "helmor": "bin/helmor.js"
23
+ },
24
+ "files": [
25
+ "bin",
26
+ "README.md"
27
+ ],
28
+ "engines": {
29
+ "node": ">=18"
30
+ },
31
+ "dependencies": {
32
+ "@helmoragent/helmor": "0.1.4"
33
+ },
34
+ "scripts": {
35
+ "test": "node -c bin/helmor.js",
36
+ "pack:dry": "npm pack --dry-run --json"
37
+ }
38
+ }