@k2works/claude-code-booster 1.11.0 → 1.13.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.
@@ -10,12 +10,14 @@ import mkdocsTasks from './ops/scripts/mkdocs.js';
10
10
  import journalTasks from './ops/scripts/journal.js';
11
11
  import vaultTasks from './ops/scripts/vault.js';
12
12
  import sshTasks from './ops/scripts/ssh.js';
13
+ import sonarLocalTasks from './ops/scripts/sonar_local.js';
13
14
 
14
15
  // Load gulp tasks from script modules
15
16
  mkdocsTasks(gulp);
16
17
  journalTasks(gulp);
17
18
  vaultTasks(gulp);
18
19
  sshTasks(gulp);
20
+ sonarLocalTasks(gulp);
19
21
 
20
22
  export const dev = gulp.series('mkdocs:serve', 'mkdocs:open');
21
23
 
@@ -63,3 +63,55 @@ exclude_docs: |
63
63
 
64
64
  nav:
65
65
  - Home: index.md
66
+ - 分析:
67
+ - 概要: analysis/index.md
68
+ - 要件:
69
+ - 概要: requirements/index.md
70
+ - 設計:
71
+ - 概要: design/index.md
72
+ - 開発:
73
+ - 概要: development/index.md
74
+ - 運用:
75
+ - 概要: operation/index.md
76
+ - リファレンス:
77
+ - 概要: reference/index.md
78
+ - よいソフトウェアとは: reference/よいソフトウェアとは.md
79
+ - 開発ガイド: reference/開発ガイド.md
80
+ - ビジネスアーキテクチャ分析ガイド: reference/ビジネスアーキテクチャ分析ガイド.md
81
+ - 要件定義ガイド: reference/要件定義ガイド.md
82
+ - ユースケース作成ガイド: reference/ユースケース作成ガイド.md
83
+ - アーキテクチャ設計ガイド: reference/アーキテクチャ設計ガイド.md
84
+ - データモデル設計ガイド: reference/データモデル設計ガイド.md
85
+ - ドメインモデル設計ガイド: reference/ドメインモデル設計ガイド.md
86
+ - UI 設計ガイド: reference/UI設計ガイド.md
87
+ - テスト戦略ガイド: reference/テスト戦略ガイド.md
88
+ - 非機能要件定義ガイド: reference/非機能要件定義ガイド.md
89
+ - 運用要件定義ガイド: reference/運用要件定義ガイド.md
90
+ - インフラ設計ガイド: reference/インフラ設計ガイド.md
91
+ - コーディングとテストガイド: reference/コーディングとテストガイド.md
92
+ - エクストリームプログラミング: reference/エクストリームプログラミング.md
93
+ - リリースガイド: reference/リリースガイド.md
94
+ - リリース・イテレーション計画ガイド: reference/リリース・イテレーション計画ガイド.md
95
+ - 環境変数管理ガイド: reference/環境変数管理ガイド.md
96
+ - 言語別開発ガイド: reference/言語別開発ガイド.md
97
+ - Java アプリケーション環境構築ガイド: reference/Javaアプリケーション環境構築ガイド.md
98
+ - TypeScript アプリケーション環境構築ガイド: reference/TypeScriptアプリケーション環境構築ガイド.md
99
+ - Codex CLI MCP アプリケーション開発フロー: reference/CodexCLIMCPアプリケーション開発フロー.md
100
+ - Codex CLI MCP サーバー設定手順: reference/CodexCLIMCPサーバー設定手順.md
101
+ - SonarQube ローカル環境セットアップ手順書: reference/SonarQubeローカル環境セットアップ手順書.md
102
+ - Vim 操作マニュアル: reference/Vim操作マニュアル.md
103
+ - ADR:
104
+ - 概要: adr/index.md
105
+ - テンプレート:
106
+ - 概要: template/index.md
107
+ - まずこれを読もうリスト: template/まずこれを読もうリスト.md
108
+ - ビジネスアーキテクチャ: template/ビジネスアーキテクチャ.md
109
+ - 要件定義: template/要件定義.md
110
+ - 完全形式のユースケース: template/完全形式のユースケース.md
111
+ - 設計: template/設計.md
112
+ - ADR: template/ADR.md
113
+ - インセプションデッキ: template/インセプションデッキ.md
114
+ - イテレーション計画: template/イテレーション計画.md
115
+ - イテレーション完了報告書: template/イテレーション完了報告書.md
116
+ - リリース計画: template/リリース計画.md
117
+ - README: template/README.md
@@ -0,0 +1,57 @@
1
+ services:
2
+ sonarqube:
3
+ image: sonarqube:community
4
+ container_name: sonarqube
5
+ restart: unless-stopped
6
+ depends_on:
7
+ sonarqube-db:
8
+ condition: service_healthy
9
+ ports:
10
+ - "9000:9000"
11
+ environment:
12
+ SONAR_JDBC_URL: jdbc:postgresql://sonarqube-db:5432/sonarqube
13
+ SONAR_JDBC_USERNAME: sonarqube
14
+ SONAR_JDBC_PASSWORD: sonarqube_password
15
+ SONAR_CE_JAVAOPTS: "-Xmx512m -Xms512m"
16
+ SONAR_WEB_JAVAOPTS: "-Xmx256m -Xms256m"
17
+ SONAR_SEARCH_JAVAOPTS: "-Xmx512m -Xms512m"
18
+ volumes:
19
+ - sonarqube_data:/opt/sonarqube/data
20
+ - sonarqube_logs:/opt/sonarqube/logs
21
+ - sonarqube_extensions:/opt/sonarqube/extensions
22
+ networks:
23
+ - sonarqube-net
24
+ healthcheck:
25
+ test: ["CMD-SHELL", "curl -f http://localhost:9000/api/system/status || exit 1"]
26
+ interval: 30s
27
+ timeout: 10s
28
+ retries: 5
29
+ start_period: 300s
30
+
31
+ sonarqube-db:
32
+ image: postgres:16-alpine
33
+ container_name: sonarqube-db
34
+ restart: unless-stopped
35
+ environment:
36
+ POSTGRES_DB: sonarqube
37
+ POSTGRES_USER: sonarqube
38
+ POSTGRES_PASSWORD: sonarqube_password
39
+ volumes:
40
+ - sonarqube_postgresql:/var/lib/postgresql/data
41
+ networks:
42
+ - sonarqube-net
43
+ healthcheck:
44
+ test: ["CMD-SHELL", "pg_isready -U sonarqube"]
45
+ interval: 10s
46
+ timeout: 5s
47
+ retries: 5
48
+
49
+ networks:
50
+ sonarqube-net:
51
+ driver: bridge
52
+
53
+ volumes:
54
+ sonarqube_data:
55
+ sonarqube_logs:
56
+ sonarqube_extensions:
57
+ sonarqube_postgresql: