@dot-skill/registry 0.4.2 → 0.5.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 (2) hide show
  1. package/README.md +30 -0
  2. package/package.json +19 -5
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # `@dot-skill/registry`
2
+
3
+ Optional **local transparency log** for `.skill` package digests.
4
+
5
+ Records package digests for auditability. This is not a marketplace, not a hosted registry, and not required to create or run skills. Share `.skill` files directly; use the log when you want a local digest trail.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm i @dot-skill/registry
11
+ ```
12
+
13
+ CLI:
14
+
15
+ ```bash
16
+ skill registry list
17
+ skill registry lookup <digest>
18
+ skill registry publish <file.skill>
19
+ ```
20
+
21
+ ## Related
22
+
23
+ - [`@dot-skill/core`](https://www.npmjs.com/package/@dot-skill/core) — digests and mint
24
+ - [`skillerr`](https://www.npmjs.com/package/skillerr) — `skill registry …`
25
+
26
+ Docs: [REGISTRY.md](https://github.com/dot-skill/dot-skill/blob/main/docs/REGISTRY.md)
27
+
28
+ ## License
29
+
30
+ MIT
package/package.json CHANGED
@@ -1,12 +1,20 @@
1
1
  {
2
2
  "name": "@dot-skill/registry",
3
- "version": "0.4.2",
4
- "description": "Optional local transparency log (not a marketplace)",
3
+ "version": "0.5.0",
4
+ "description": "Optional local transparency log for .skill package digests",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Bharat Dudeja",
8
8
  "url": "https://github.com/bharatdudeja13-cmd"
9
9
  },
10
+ "keywords": [
11
+ "skill",
12
+ "dot-skill",
13
+ ".skill",
14
+ "ai-agents",
15
+ "transparency-log",
16
+ "registry"
17
+ ],
10
18
  "type": "module",
11
19
  "main": "./dist/index.js",
12
20
  "types": "./dist/index.d.ts",
@@ -18,8 +26,14 @@
18
26
  "url": "https://github.com/dot-skill/dot-skill.git",
19
27
  "directory": "packages/registry"
20
28
  },
29
+ "homepage": "https://github.com/dot-skill/dot-skill#readme",
30
+ "bugs": {
31
+ "url": "https://github.com/dot-skill/dot-skill/issues"
32
+ },
21
33
  "files": [
22
- "dist"
34
+ "dist",
35
+ "README.md",
36
+ "LICENSE"
23
37
  ],
24
38
  "exports": {
25
39
  ".": {
@@ -33,8 +47,8 @@
33
47
  "clean": "rm -rf dist"
34
48
  },
35
49
  "dependencies": {
36
- "@dot-skill/core": "^0.4.2",
37
- "@dot-skill/protocol": "^0.4.2"
50
+ "@dot-skill/core": "^0.5.0",
51
+ "@dot-skill/protocol": "^0.5.0"
38
52
  },
39
53
  "devDependencies": {
40
54
  "@types/node": "^26.1.1",