@giwonn/claude-daily-review 0.3.12 → 0.3.13

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.12"
16
+ "ref": "v0.3.13"
17
17
  },
18
18
  "description": "Auto-capture conversations for daily review and career documentation",
19
19
  "author": {
package/CLAUDE.md CHANGED
@@ -4,4 +4,5 @@
4
4
 
5
5
  1. `package.json`과 `.claude-plugin/marketplace.json`의 버전을 올린다
6
6
  2. `marketplace.json`의 `ref` 필드는 `v{버전}` 형식 (예: `v0.3.12`)
7
- 3. 커밋 후 `git push`하면 배포 완료 (GitHub Actions가 자동으로 npm publish 및 태그 생성)
7
+ 3. 커밋 후 `git push`
8
+ 4. `git tag v{버전} && git push origin v{버전}` — 태그 push 시 GitHub Actions가 Release 생성 + npm publish 수행
@@ -83,7 +83,7 @@ Ask using AskUserQuestion:
83
83
  After repo is selected/created, **save a minimal config first** so `storage-cli.mjs` can connect to the repo:
84
84
  ```bash
85
85
  cat > "${CLAUDE_PLUGIN_DATA}/config.json" << 'TMPEOF'
86
- {"storage":{"type":"github","github":{"owner":"<owner>","repo":"<repo>","token":"<access_token>","basePath":"daily-review"}}}
86
+ {"storage":{"type":"github","github":{"owner":"<owner>","repo":"<repo>","token":"<access_token>","basePath":""}}}
87
87
  TMPEOF
88
88
  ```
89
89
  (Replace `<owner>`, `<repo>`, `<access_token>` with actual values.)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@giwonn/claude-daily-review",
3
- "version": "0.3.12",
3
+ "version": "0.3.13",
4
4
  "type": "module",
5
5
  "description": "Claude Code plugin that auto-captures conversations for daily review and career documentation",
6
6
  "repository": {