claude-fsd 1.4.6 → 1.4.8

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
@@ -167,7 +167,7 @@ check_dependencies
167
167
  check_for_updates() {
168
168
  # Only check if we can reach npm registry quickly
169
169
  if timeout 2 npm view claude-fsd version >/dev/null 2>&1; then
170
- local current_version=$(npm list -g claude-fsd --depth=0 2>/dev/null | grep claude-fsd | sed 's/.*@//')
170
+ local current_version=$(npm list -g claude-fsd --depth=0 2>/dev/null | grep claude-fsd | sed 's/.*@//' | sed 's/ ->.*//')
171
171
  local latest_version=$(timeout 2 npm view claude-fsd version 2>/dev/null)
172
172
 
173
173
  if [ -n "$current_version" ] && [ -n "$latest_version" ] && [ "$current_version" != "$latest_version" ]; then
@@ -283,7 +283,7 @@ else
283
283
  shift
284
284
  exec "$(dirname "$0")/claudefsd-interview" "$@"
285
285
  ;;
286
- dev)
286
+ dev|run)
287
287
  shift
288
288
  exec "$(dirname "$0")/claudefsd-dev" "$@"
289
289
  ;;
@@ -304,7 +304,7 @@ else
304
304
  echo " interview - Interactive requirements gathering"
305
305
  echo " analyze-brief - Analyze brief and generate questions (legacy)"
306
306
  echo " create-plan - Create plan from requirements or questions"
307
- echo " dev - Run development mode"
307
+ echo " dev|run - Run development mode"
308
308
  echo
309
309
  echo "Run without arguments for interactive mode."
310
310
  exit 1
@@ -375,7 +375,7 @@ Format the output as a clean, well-structured markdown document suitable for fee
375
375
 
376
376
  # Main interview loop
377
377
  main() {
378
- echo -e "${GREEN}🎙️ Claude FSD Interactive Interview System (Fast Mode)${NC}"
378
+ echo -e "${GREEN}🎙️ Claude FSD Interactive Interview System${NC}"
379
379
  echo -e "${GREEN}======================================================${NC}"
380
380
  echo ""
381
381
 
@@ -406,6 +406,8 @@ main() {
406
406
  if [ -n "$bg_pid" ] && [ ! -f "$QUESTION_CACHE" ]; then
407
407
  if [ "$first_question" = "true" ]; then
408
408
  echo -e "${BLUE}Preparing first question...${NC}"
409
+ else
410
+ echo -e "${BLUE}[working on next question]${NC}"
409
411
  fi
410
412
  wait $bg_pid 2>/dev/null || true
411
413
  bg_pid=""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-fsd",
3
- "version": "1.4.6",
3
+ "version": "1.4.8",
4
4
  "description": "Claude Full Self Drive tools for autonomous AI-powered development",
5
5
  "bin": {
6
6
  "claude-fsd": "bin/claude-fsd",