valtorix 0.0.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.
Files changed (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +3 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # valtorix
2
+
3
+ Valt by Valtorix Studios - verification, signing, and distribution for agent capabilities. CLI coming soon; this package reserves the official runner name.
4
+
5
+ This is a defensive name registration by **Valtorix Studios** (see our
6
+ typosquat-protection policy). The official, maintained package is
7
+ [`valtorix`](https://www.npmjs.com/package/valtorix).
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log(`Valt by Valtorix Studios - the trust layer for agent capabilities.
3
+ The CLI ships here soon. Docs: https://github.com/valtorix-studios`);
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "valtorix",
3
+ "version": "0.0.1",
4
+ "description": "Valt by Valtorix Studios - verification, signing, and distribution for agent capabilities. CLI coming soon; this package reserves the official runner name.",
5
+ "bin": {
6
+ "valtorix": "./index.js"
7
+ },
8
+ "license": "UNLICENSED",
9
+ "author": "Valtorix Studios",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/valtorix-studios/platform"
13
+ },
14
+ "keywords": [
15
+ "valt",
16
+ "valtorix",
17
+ "agent-skills",
18
+ "mcp",
19
+ "verification"
20
+ ]
21
+ }