claude-fsd 1.5.3 → 1.5.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.
package/bin/claudefsd CHANGED
@@ -233,7 +233,7 @@ if [ $# -eq 0 ]; then
233
233
  1)
234
234
  # Interactive interview
235
235
  source "$(dirname "$0")/claudefsd-find-brief"
236
- local brief_file=$(find_brief_file 2>/dev/null || echo "")
236
+ brief_file=$(find_brief_file 2>/dev/null || echo "")
237
237
  if [ -z "$brief_file" ]; then
238
238
  echo -e "${RED}No BRIEF.md found. Please create a project brief first.${NC}"
239
239
  exit 1
@@ -55,6 +55,7 @@ PROJECT CONTEXT:
55
55
  $([ -f docs/BRIEF.md ] && echo "=== PROJECT BRIEF ===" && cat docs/BRIEF.md || [ -f BRIEF.md ] && echo "=== PROJECT BRIEF ===" && cat BRIEF.md && echo "")
56
56
  $([ -f docs/PLAN.md ] && echo "=== DEVELOPMENT PLAN ===" && cat docs/PLAN.md && echo "")
57
57
  $([ -f docs/REQUIREMENTS.md ] && echo "=== REQUIREMENTS ===" && cat docs/REQUIREMENTS.md && echo "")
58
+ $([ -f docs/QUESTIONS.md ] && echo "=== QUESTIONS ===" && cat docs/QUESTIONS.md && echo "")
58
59
  $([ -f docs/CLAUDE-NOTES.md ] && echo "=== TECHNICAL NOTES ===" && cat docs/CLAUDE-NOTES.md && echo "")
59
60
  $([ -f README.md ] && echo "=== README ===" && cat README.md && echo "")
60
61
 
@@ -268,6 +268,9 @@ prepare_next_question_bg() {
268
268
  if [ -f "docs/REQUIREMENTS.md" ]; then
269
269
  existing_docs="${existing_docs}$(printf '=== EXISTING REQUIREMENTS ===\n')$(cat docs/REQUIREMENTS.md)$(printf '\n\n')"
270
270
  fi
271
+ if [ -f "docs/QUESTIONS.md" ]; then
272
+ existing_docs="${existing_docs}$(printf '=== EXISTING QUESTIONS ===\n')$(cat docs/QUESTIONS.md)$(printf '\n\n')"
273
+ fi
271
274
  if [ -f "docs/CLAUDE-NOTES.md" ]; then
272
275
  existing_docs="${existing_docs}$(printf '=== EXISTING TECHNICAL NOTES ===\n')$(cat docs/CLAUDE-NOTES.md)$(printf '\n\n')"
273
276
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-fsd",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "Claude Full Self Drive tools for autonomous AI-powered development",
5
5
  "bin": {
6
6
  "claude-fsd": "bin/claude-fsd",