skillwiki 0.2.0-beta.23 → 0.2.0-beta.24
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 +2 -1
- package/package.json +1 -1
- package/skills/.claude-plugin/plugin.json +1 -1
- package/skills/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -791,9 +791,10 @@ import { dirname as dirname3, resolve, join as join3 } from "path";
|
|
|
791
791
|
|
|
792
792
|
// src/parsers/citations.ts
|
|
793
793
|
var FENCE2 = /```[\s\S]*?```/g;
|
|
794
|
+
var INLINE_CODE = /`[^`\n]+`/g;
|
|
794
795
|
var MARKER_RE = /\^\[(raw\/[^\]]+)\]/g;
|
|
795
796
|
function stripFences(body) {
|
|
796
|
-
return body.replace(FENCE2, "");
|
|
797
|
+
return body.replace(FENCE2, "").replace(INLINE_CODE, "");
|
|
797
798
|
}
|
|
798
799
|
function extractCitationMarkers(body) {
|
|
799
800
|
const stripped = stripFences(body);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.24",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 11 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI (8 subcommands, JSON-by-default).",
|
|
6
6
|
"author": {
|