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.
- package/package.json +30 -1
- package/.dockerignore +0 -9
- package/COMPLETE_IMPLEMENTATION_REPORT.md +0 -215
- package/Dockerfile +0 -61
- package/Dockerfile.app +0 -50
- package/QUICK_START_MCP_TESTING.md +0 -236
- package/STC.md +0 -24
- package/STCGOAL.md +0 -0
- package/STCISSUE.md +0 -48
- package/STCKIN.md +0 -0
- package/STCMASTERY.md +0 -0
- package/STUDY_REPORT.md +0 -510
- package/direct-test.sh +0 -180
- package/docker-build-push.sh +0 -20
- package/docker-compose.test.yml +0 -69
- package/docker-entrypoint.sh +0 -27
- package/jgwill.coaia-visualizer-8--496dca71-d476-4ac9-ba9f-376add118dd8--260208.txt +0 -2612
- package/mcp/test_mcp/.gemini/settings.json +0 -18
- package/rispecs/README.md +0 -170
- package/rispecs/accountability-responsibility.rispec.md +0 -110
- package/rispecs/api-mcp-interface.spec.md +0 -287
- package/rispecs/app.spec.md +0 -364
- package/rispecs/chart-editing-workflow.spec.md +0 -297
- package/rispecs/chart-visualization-hierarchy.spec.md +0 -235
- package/rispecs/cli-mode.spec.md +0 -224
- package/rispecs/github-project-runtime-memory-integration.spec.md +0 -381
- package/rispecs/jsonl-parsing-data-types.spec.md +0 -243
- package/rispecs/narrative-beats-display.spec.md +0 -189
- package/rispecs/pde-integration.spec.md +0 -280
- package/rispecs/planning-integration.spec.md +0 -329
- package/rispecs/relation-graph-visualization.spec.md +0 -171
- package/rispecs/relation-to-mcp-structural-thinking.kin.md +0 -65
- package/rispecs/ui-component-library.spec.md +0 -258
- package/test-data/test-master.jsonl +0 -11
- package/test-results/.last-run.json +0 -4
- package/test-scripts/README.md +0 -325
- package/test-scripts/rich-jsonl-preservation.spec.ts +0 -118
- package/test-scripts/run-all-tests.sh +0 -38
- package/test-scripts/test-01-basic-operations.sh +0 -87
- package/test-scripts/test-02-telescope-creation.sh +0 -91
- package/test-scripts/test-03-navigation.sh +0 -87
- package/test-scripts/test-global-cli.spec.ts +0 -220
- 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"
|