@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.
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
|
|
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":"
|
|
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