@helpfeel/cosense-cli 1.4.5 → 1.4.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helpfeel/cosense-cli",
3
- "version": "1.4.5",
3
+ "version": "1.4.6",
4
4
  "description": "Cosense (旧Scrapbox) のページを読み・調べ・編集するAgent Skill用のCLI",
5
5
  "homepage": "https://github.com/helpfeel/cosense-cli",
6
6
  "license": "MIT",
@@ -21,8 +21,9 @@ Usage:
21
21
 
22
22
  各 Page の field:
23
23
  title string ページタイトル
24
- image string サムネイル画像URL
24
+ image string | null サムネイル画像URL
25
25
  score number 類似度スコア(高いほど近い)
26
+ linked number? 被リンク数
26
27
  exists boolean 実体のあるページなら true。false の場合は空ページ(リンク記法だけ存在)
27
28
 
28
29
  exists=true のページのみ追加で付くfield:
@@ -31,7 +32,6 @@ Usage:
31
32
  lastUpdateUser User | null 最終更新者
32
33
  users Array<User> 更新者リスト
33
34
  views number 閲覧数
34
- linked number 被リンク数
35
35
  created string 作成日時
36
36
  updated string 更新日時
37
37
  pageRank number PageRank
@@ -52,7 +52,7 @@ User の field(user / lastUpdateUser / users[] で共通):
52
52
  {
53
53
  "pages": [
54
54
  { "id": "...", "title": "vibe coding", "score": 0.833, "exists": true },
55
- { "title": "bug修正", "score": 0.811, "exists": false }
55
+ { "title": "bug修正", "score": 0.811, "linked": 3, "exists": false }
56
56
  ]
57
57
  }
58
58
  `;