@newtype-ai/nit 0.4.2 → 0.4.3
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 +1 -1
- package/dist/{chunk-BC7OEIFR.js → chunk-CPNPQQOU.js} +1 -1
- package/dist/cli.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,7 +94,7 @@ nit auto-discovers your skills directory from all major agent frameworks:
|
|
|
94
94
|
- `.cursor/skills/` — Cursor
|
|
95
95
|
- `.windsurf/skills/` — Windsurf
|
|
96
96
|
- `.codex/skills/` — OpenAI Codex
|
|
97
|
-
- `.
|
|
97
|
+
- `.openclaw/workspace/skills/` — OpenClaw
|
|
98
98
|
|
|
99
99
|
The discovered path is stored in `.nit/config`. When `nit sign --login <domain>` creates a new branch, it auto-creates a SKILL.md template and adds a pointer to the card. The committed card always contains fully resolved, self-contained skill data.
|
|
100
100
|
|
|
@@ -324,7 +324,7 @@ var FRAMEWORK_MARKERS = [
|
|
|
324
324
|
{ marker: ".cursor", skillsPath: ".cursor/skills" },
|
|
325
325
|
{ marker: ".codex", skillsPath: ".codex/skills" },
|
|
326
326
|
{ marker: ".windsurf", skillsPath: ".windsurf/skills" },
|
|
327
|
-
{ marker: ".openclaw", skillsPath: ".
|
|
327
|
+
{ marker: ".openclaw", skillsPath: ".openclaw/workspace/skills" }
|
|
328
328
|
];
|
|
329
329
|
var GLOBAL_SKILLS_DIRS = [
|
|
330
330
|
{ marker: ".claude", skillsPath: ".claude/skills" },
|
package/dist/cli.js
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
remoteSetUrl,
|
|
16
16
|
sign,
|
|
17
17
|
status
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-CPNPQQOU.js";
|
|
19
19
|
|
|
20
20
|
// src/update-check.ts
|
|
21
21
|
import { homedir } from "os";
|
|
@@ -27,7 +27,7 @@ var FETCH_TIMEOUT_MS = 3e3;
|
|
|
27
27
|
var REGISTRY_URL = "https://registry.npmjs.org/@newtype-ai/nit/latest";
|
|
28
28
|
function getCurrentVersion() {
|
|
29
29
|
try {
|
|
30
|
-
return "0.4.
|
|
30
|
+
return "0.4.3";
|
|
31
31
|
} catch {
|
|
32
32
|
return "0.0.0";
|
|
33
33
|
}
|
package/dist/index.js
CHANGED