@k2works/claude-code-booster 0.6.1 → 0.7.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.
@@ -5,16 +5,23 @@ on:
5
5
  branches:
6
6
  - main
7
7
 
8
+ permissions:
9
+ contents: read
10
+ pages: write
11
+ id-token: write
12
+
8
13
  jobs:
9
14
  deploy:
10
15
  runs-on: ubuntu-latest
16
+ permissions:
17
+ contents: write
11
18
 
12
19
  steps:
13
20
  - name: Checkout the repository
14
- uses: actions/checkout@v3
21
+ uses: actions/checkout@v4
15
22
 
16
23
  - name: Use Node.js latest
17
- uses: actions/setup-node@v3
24
+ uses: actions/setup-node@v4
18
25
  with:
19
26
  node-version: latest
20
27
  cache: 'npm'
@@ -22,11 +29,11 @@ jobs:
22
29
  - name: Install dependencies
23
30
  run: npm install
24
31
 
25
- - name: Deploy HTML files
32
+ - name: Build documentation
26
33
  run: npm run docs:build
27
34
 
28
- - name: mkdocs deploy
29
- uses: peaceiris/actions-gh-pages@v3
35
+ - name: Deploy to GitHub Pages
36
+ uses: peaceiris/actions-gh-pages@v4
30
37
  with:
31
- deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
38
+ github_token: ${{ secrets.GITHUB_TOKEN }}
32
39
  publish_dir: ./site
@@ -38,6 +38,23 @@ claude mcp add github npx -y @modelcontextprotocol/server-github -s project
38
38
 
39
39
  ### 配置
40
40
 
41
+ #### GitHub Pages セットアップ
42
+
43
+ 1. **GitHub リポジトリの Settings を開く**
44
+ - リポジトリページで `Settings` タブをクリック
45
+
46
+ 2. **Pages 設定を開く**
47
+ - 左サイドバーの `Pages` をクリック
48
+
49
+ 3. **Source を設定**
50
+ - `Source` で `Deploy from a branch` を選択
51
+ - `Branch` で `gh-pages` を選択し、フォルダは `/ (root)` を選択
52
+ - `Save` をクリック
53
+
54
+ 4. **初回デプロイ**
55
+ - main ブランチにプッシュすると GitHub Actions が自動実行
56
+ - Actions タブでデプロイ状況を確認
57
+
41
58
  **[⬆ back to top](#構成)**
42
59
 
43
60
  ### 運用
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k2works/claude-code-booster",
3
- "version": "0.6.1",
3
+ "version": "0.7.0",
4
4
  "description": "AI Agent Development Support Tool",
5
5
  "main": "main.js",
6
6
  "bin": {