@k2works/claude-code-booster 0.16.1 → 0.16.2

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.
@@ -91,6 +91,10 @@ RUN npm install -g @openai/codex
91
91
  # すべてのインストールが完了した後、ユーザーのホームディレクトリの所有権を確保
92
92
  RUN chown -R $USERNAME:$USERNAME /home/$USERNAME
93
93
 
94
+ # Git safe.directory 設定(マウントされたボリューム対応)
95
+ RUN git config --global --add safe.directory /srv \
96
+ && git config --global --add safe.directory '*'
97
+
94
98
  # 作業ディレクトリの設定
95
99
  WORKDIR /srv
96
100
 
@@ -5,16 +5,16 @@ in
5
5
  packages.mkShell {
6
6
  inherit (baseShell) pure;
7
7
  buildInputs = baseShell.buildInputs ++ (with packages; [
8
- nodejs_22
8
+ nodejs_20
9
9
  nodePackages.npm
10
- nodePackages.yarn
11
- # AI tools
12
- nodePackages."@anthropic-ai/claude-code"
13
- # Note: gemini-cli and copilot CLI might not be in standard nixpkgs under these names
14
- # or might need specific versions. Using what's typically available.
10
+ nodePackages.typescript
11
+ nodePackages.typescript-language-server
15
12
  ]);
16
13
  shellHook = ''
17
14
  ${baseShell.shellHook}
18
- echo "Node.js development environment activated"
15
+ echo "TypeScript development environment activated"
16
+ echo " - Node.js: $(node --version)"
17
+ echo " - npm: $(npm --version)"
18
+ echo " - TypeScript: $(tsc --version)"
19
19
  '';
20
20
  }
@@ -6,6 +6,7 @@ packages.mkShell {
6
6
  inherit (baseShell) pure;
7
7
  buildInputs = baseShell.buildInputs ++ (with packages; [
8
8
  (python3.withPackages (ps: with ps; [
9
+ uv
9
10
  mkdocs
10
11
  mkdocs-material
11
12
  pymdown-extensions
@@ -12,6 +12,10 @@ packages.mkShell {
12
12
  # ホスト環境から完全に分離する
13
13
  pure = true;
14
14
  shellHook = ''
15
+ # Git safe.directory 設定(コンテナ環境対応)
16
+ git config --global --add safe.directory /srv 2>/dev/null || true
17
+ git config --global --add safe.directory "$(pwd)" 2>/dev/null || true
18
+
15
19
  echo "Welcome to the common development environment"
16
20
  '';
17
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@k2works/claude-code-booster",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
4
4
  "description": "AI Agent Development Support Tool",
5
5
  "main": "main.js",
6
6
  "bin": {