claude-fsd 1.1.2 → 1.1.4
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.
|
@@ -29,7 +29,7 @@ check_dependencies() {
|
|
|
29
29
|
fi
|
|
30
30
|
|
|
31
31
|
# Check for OPENAI_API_KEY (optional for codex)
|
|
32
|
-
if [ "$check_codex" = true ] && [[ ! -v OPENAI_API_KEY ]] || [[ -z "$OPENAI_API_KEY" ]]; then
|
|
32
|
+
if [ "$check_codex" = true ] && ([[ ! -v OPENAI_API_KEY ]] || [[ -z "$OPENAI_API_KEY" ]]); then
|
|
33
33
|
warnings+=("OPENAI_API_KEY is not set. Codex features will be limited.")
|
|
34
34
|
warnings+=("Set it with: export OPENAI_API_KEY='your-key-here'")
|
|
35
35
|
fi
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-fsd",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Claude Full Stack Development tools for managing development projects",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-fsd": "./bin/claude-fsd",
|
|
7
7
|
"claudefsd": "./bin/claudefsd",
|
|
8
|
+
"claudefsd-check-dependencies": "./bin/claudefsd-check-dependencies",
|
|
8
9
|
"claudefsd-dev": "./bin/claudefsd-dev",
|
|
9
10
|
"claudefsd-plan": "./bin/claudefsd-plan",
|
|
10
11
|
"claudefsd-plan-gen": "./bin/claudefsd-plan-gen"
|