@giwonn/claude-daily-review 0.2.3 → 0.3.0

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.
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
3
+ "name": "giwonn-plugins",
4
+ "owner": {
5
+ "name": "giwonn"
6
+ },
7
+ "metadata": {
8
+ "description": "giwonn's Claude Code plugins"
9
+ },
10
+ "plugins": [
11
+ {
12
+ "name": "claude-daily-review",
13
+ "source": {
14
+ "source": "url",
15
+ "url": "https://github.com/giwonn/claude-daily-review.git",
16
+ "sha": "8bba99dd6c2aab0ca225c8a7d6b499faadd82f5d"
17
+ },
18
+ "description": "Auto-capture conversations for daily review and career documentation",
19
+ "version": "0.3.0",
20
+ "author": {
21
+ "name": "giwonn"
22
+ },
23
+ "homepage": "https://github.com/giwonn/claude-daily-review",
24
+ "repository": "https://github.com/giwonn/claude-daily-review",
25
+ "license": "MIT",
26
+ "tags": ["daily-review", "obsidian", "github", "career"]
27
+ }
28
+ ]
29
+ }
@@ -0,0 +1,24 @@
1
+ name: Publish to npm
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ environment: npm
11
+ permissions:
12
+ contents: read
13
+ id-token: write
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: "22"
20
+ registry-url: "https://registry.npmjs.org"
21
+
22
+ - run: npm install -g npm@latest
23
+
24
+ - run: npm publish --access public --provenance
@@ -0,0 +1,28 @@
1
+ name: Update Marketplace SHA
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ update-sha:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: write
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ ref: master
16
+
17
+ - name: Update SHA in marketplace.json
18
+ run: |
19
+ SHA=$(git rev-parse HEAD)
20
+ sed -i "s/\"sha\": \"[a-f0-9]*\"/\"sha\": \"$SHA\"/" .claude-plugin/marketplace.json
21
+ cat .claude-plugin/marketplace.json
22
+
23
+ - name: Commit and push
24
+ run: |
25
+ git config user.name "github-actions[bot]"
26
+ git config user.email "github-actions[bot]@users.noreply.github.com"
27
+ git add .claude-plugin/marketplace.json
28
+ git diff --cached --quiet && echo "No changes" || (git commit -m "chore: update marketplace SHA [skip ci]" && git push)