@giwonn/claude-daily-review 0.3.7 → 0.3.8

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.
@@ -13,7 +13,7 @@
13
13
  "source": {
14
14
  "source": "url",
15
15
  "url": "https://github.com/giwonn/claude-daily-review.git",
16
- "ref": "v0.3.7"
16
+ "ref": "v0.3.8"
17
17
  },
18
18
  "description": "Auto-capture conversations for daily review and career documentation",
19
19
  "author": {
@@ -80,12 +80,20 @@ Ask using AskUserQuestion:
80
80
 
81
81
  **1c. Check for shared config in repo:**
82
82
 
83
- After repo is selected/created, try to read the shared config:
83
+ After repo is selected/created, **save a minimal config first** so `storage-cli.mjs` can connect to the repo:
84
+ ```bash
85
+ cat > "${CLAUDE_PLUGIN_DATA}/config.json" << 'TMPEOF'
86
+ {"storage":{"type":"github","github":{"owner":"<owner>","repo":"<repo>","token":"<access_token>","basePath":"daily-review"}}}
87
+ TMPEOF
88
+ ```
89
+ (Replace `<owner>`, `<repo>`, `<access_token>` with actual values.)
90
+
91
+ Then try to read the shared config:
84
92
  ```bash
85
93
  node "${CLAUDE_PLUGIN_ROOT}/lib/storage-cli.mjs" read .config.json
86
94
  ```
87
95
 
88
- If `.config.json` exists in the repo, parse it and **skip Steps 1-3** (Profile and Periods). Use the values from the shared config. Tell the user:
96
+ If `.config.json` exists in the repo, parse it and **skip Steps 2-3** (Profile and Periods). Use the values from the shared config. Tell the user:
89
97
  > "이전에 저장된 설정을 찾았습니다! 프로필과 주기 설정을 자동으로 복원합니다."
90
98
 
91
99
  If `.config.json` does not exist, proceed to Step 2 (Profile).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giwonn/claude-daily-review",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "type": "module",
5
5
  "description": "Claude Code plugin that auto-captures conversations for daily review and career documentation",
6
6
  "repository": {