Check the forum: I have checked the forum and haven’t found similar issues reported.
Description of the bug: The AI assistant incorrectly interpreted PowerShell’s output from a Docker container command as an error condition. When executing:
docker-compose exec db psql -U wellkeeper -d wellkeeper_dev -c "SELECT state_code, county_name, state_district, county_code FROM counties LIMIT 5;"
The command executed successfully and displayed the query results, but PowerShell showed some internal console buffer messages. The AI assistant mistakenly interpreted these PowerShell console messages as an error with the query execution itself, even though the query worked perfectly and displayed the correct data.
Steps to reproduce:
- Use PowerShell to execute a docker-compose command that runs a PostgreSQL query
- Command executes successfully and displays data
- PowerShell shows some internal console buffer messages
- AI assistant incorrectly interprets these PowerShell messages as a query execution problem
- AI assistant suggests unnecessary workarounds for a successful operation
Example of the interaction:
> docker-compose exec db psql -U wellkeeper -d wellkeeper_dev -c "SELECT state_code, county_name, state_district, county_code FROM counties LIMIT 5;"
[PowerShell console buffer messages appear here]
state_code | county_name | state_district | county_code
-----------+------------+----------------+------------
48 | Anderson | 06 | 001
48 | Andrews | 08 | 003
48 | Angelina | 06 | 005
48 | Aransas | 04 | 007
48 | Archer | 09 | 009
(5 rows)
Environment:
- Operating System: Windows
- Cursor Version: [Your current version]
- Shell: PowerShell
- Docker environment: Docker Desktop for Windows
Impact: This issue does not stop usage of Cursor, but it leads to confusion when the AI assistant misinterprets PowerShell’s console buffer messages as errors and tries to provide workarounds for operations that are actually working correctly.