skillwiki 0.2.1-beta.6 → 0.2.1-beta.7
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/dist/cli.js +1 -0
- package/package.json +1 -1
- package/skills/.claude-plugin/plugin.json +1 -1
- package/skills/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2272,6 +2272,7 @@ async function runDrift(input) {
|
|
|
2272
2272
|
if (!sourceUrlMatch || !storedHashMatch) continue;
|
|
2273
2273
|
const sourceUrl = sourceUrlMatch[1].trim();
|
|
2274
2274
|
const storedHash = storedHashMatch[1];
|
|
2275
|
+
if (!sourceUrl.startsWith("http://") && !sourceUrl.startsWith("https://")) continue;
|
|
2275
2276
|
const resp = await doFetch(sourceUrl, FETCH_OPTS);
|
|
2276
2277
|
if (!resp.ok) {
|
|
2277
2278
|
results.push({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.2.1-beta.
|
|
3
|
+
"version": "0.2.1-beta.7",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 15 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI.",
|
|
6
6
|
"author": {
|