coaia-visualizer 1.6.2 โ†’ 1.6.3

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.
Files changed (43) hide show
  1. package/package.json +30 -1
  2. package/.dockerignore +0 -9
  3. package/COMPLETE_IMPLEMENTATION_REPORT.md +0 -215
  4. package/Dockerfile +0 -61
  5. package/Dockerfile.app +0 -50
  6. package/QUICK_START_MCP_TESTING.md +0 -236
  7. package/STC.md +0 -24
  8. package/STCGOAL.md +0 -0
  9. package/STCISSUE.md +0 -48
  10. package/STCKIN.md +0 -0
  11. package/STCMASTERY.md +0 -0
  12. package/STUDY_REPORT.md +0 -510
  13. package/direct-test.sh +0 -180
  14. package/docker-build-push.sh +0 -20
  15. package/docker-compose.test.yml +0 -69
  16. package/docker-entrypoint.sh +0 -27
  17. package/jgwill.coaia-visualizer-8--496dca71-d476-4ac9-ba9f-376add118dd8--260208.txt +0 -2612
  18. package/mcp/test_mcp/.gemini/settings.json +0 -18
  19. package/rispecs/README.md +0 -170
  20. package/rispecs/accountability-responsibility.rispec.md +0 -110
  21. package/rispecs/api-mcp-interface.spec.md +0 -287
  22. package/rispecs/app.spec.md +0 -364
  23. package/rispecs/chart-editing-workflow.spec.md +0 -297
  24. package/rispecs/chart-visualization-hierarchy.spec.md +0 -235
  25. package/rispecs/cli-mode.spec.md +0 -224
  26. package/rispecs/github-project-runtime-memory-integration.spec.md +0 -381
  27. package/rispecs/jsonl-parsing-data-types.spec.md +0 -243
  28. package/rispecs/narrative-beats-display.spec.md +0 -189
  29. package/rispecs/pde-integration.spec.md +0 -280
  30. package/rispecs/planning-integration.spec.md +0 -329
  31. package/rispecs/relation-graph-visualization.spec.md +0 -171
  32. package/rispecs/relation-to-mcp-structural-thinking.kin.md +0 -65
  33. package/rispecs/ui-component-library.spec.md +0 -258
  34. package/test-data/test-master.jsonl +0 -11
  35. package/test-results/.last-run.json +0 -4
  36. package/test-scripts/README.md +0 -325
  37. package/test-scripts/rich-jsonl-preservation.spec.ts +0 -118
  38. package/test-scripts/run-all-tests.sh +0 -38
  39. package/test-scripts/test-01-basic-operations.sh +0 -87
  40. package/test-scripts/test-02-telescope-creation.sh +0 -91
  41. package/test-scripts/test-03-navigation.sh +0 -87
  42. package/test-scripts/test-global-cli.spec.ts +0 -220
  43. package/test-scripts/verify-global-cli.sh +0 -87
@@ -1,87 +0,0 @@
1
- #!/bin/bash
2
- # Verify global CLI installation works without file watch errors
3
-
4
- set -e
5
-
6
- PORT=3099
7
- SAMPLE_FILE="/a/src/coaia-visualizer/samples/tradingchart.jsonl"
8
- TIMEOUT=45
9
- ERROR_LOG="/tmp/cli-error-check.log"
10
-
11
- echo "๐Ÿงช Testing globally installed coaia-visualizer CLI"
12
- echo "๐Ÿ“ Sample file: $SAMPLE_FILE"
13
- echo "๐ŸŒ Port: $PORT"
14
- echo ""
15
-
16
- # Clean up any existing process on the port
17
- fuser -k ${PORT}/tcp 2>/dev/null || true
18
- sleep 2
19
-
20
- # Start CLI in background
21
- rm -f "$ERROR_LOG"
22
- cd /tmp
23
- coaia-visualizer -M "$SAMPLE_FILE" --port $PORT --no-open > "$ERROR_LOG" 2>&1 &
24
- CLI_PID=$!
25
-
26
- echo "โณ Waiting for server to start (PID: $CLI_PID)..."
27
-
28
- # Wait for server to be ready
29
- for i in $(seq 1 $TIMEOUT); do
30
- if grep -q "Ready in" "$ERROR_LOG" 2>/dev/null; then
31
- echo "โœ… Server started successfully"
32
- break
33
- fi
34
-
35
- if grep -E "(OS file watch limit|TurbopackInternalError|FATAL)" "$ERROR_LOG" 2>/dev/null; then
36
- echo "โŒ File watch error detected:"
37
- grep -E "(OS file watch limit|TurbopackInternalError|FATAL)" "$ERROR_LOG"
38
- kill $CLI_PID 2>/dev/null
39
- exit 1
40
- fi
41
-
42
- if ! kill -0 $CLI_PID 2>/dev/null; then
43
- echo "โŒ CLI process died unexpectedly"
44
- tail -20 "$ERROR_LOG"
45
- exit 1
46
- fi
47
-
48
- sleep 1
49
- done
50
-
51
- # Test server response
52
- echo "๐Ÿ” Testing HTTP response..."
53
- if curl -s -f http://localhost:$PORT > /dev/null; then
54
- echo "โœ… Server responding correctly"
55
- else
56
- echo "โŒ Server not responding"
57
- kill $CLI_PID 2>/dev/null
58
- exit 1
59
- fi
60
-
61
- # Check for file watch errors in output
62
- echo "๐Ÿ” Checking for file watch errors..."
63
- if grep -qE "(OS file watch limit|TurbopackInternalError|about \[\"/home/)" "$ERROR_LOG"; then
64
- echo "โŒ File watch errors detected:"
65
- grep -E "(OS file watch limit|TurbopackInternalError|about \[\"/home/)" "$ERROR_LOG"
66
- kill $CLI_PID 2>/dev/null
67
- exit 1
68
- else
69
- echo "โœ… No file watch errors detected"
70
- fi
71
-
72
- # Verify project directory
73
- echo "๐Ÿ” Verifying Turbopack project directory..."
74
- if grep -q "dir: '/a/src/coaia-visualizer'" "$ERROR_LOG"; then
75
- echo "โœ… Turbopack using correct project directory"
76
- else
77
- echo "โš ๏ธ Warning: Could not verify Turbopack directory"
78
- grep "Creating turbopack project" "$ERROR_LOG" || true
79
- fi
80
-
81
- # Clean up
82
- kill $CLI_PID 2>/dev/null
83
- wait $CLI_PID 2>/dev/null || true
84
-
85
- echo ""
86
- echo "โœ… All tests passed! CLI works correctly without file watch errors."
87
- echo "๐Ÿ“‹ Full output saved to: $ERROR_LOG"