Cursor Agent’s iterate on lint feature is great.
I have a question, is it possible to change the details of the lint rule? If so, please let me know how to change it!
If not, such a feature would make modifications by the cursor agent more dependable!
def calculate_user_score(user_name, user_age):
"""Calculate user score based on age and name length."""
user_score = user_age * 2 + len(user_name) * 3
return user_score
import { z } from 'zod';
import { useState } from 'react';
import { query } from './db';
function validateAndProcessAndTransformAndStoreDataInMultipleSteps(data) {
// ... 50 lines of code ...
}
Expected Output:
import { query } from './db';
import { useState } from 'react';
import { z } from 'zod';
function validateData(data) {
// ... validation logic
}
function processData(validData) {
// ... processing logic
}
function transformData(processedData) {
// ... transformation logic
}
function storeData(transformedData) {
// ... storage logic
}
I implemented cursorrules, but not as thoroughly as SoMaCoSF suggests.
Now I just have improved the output somewhat by including in the cursorrules what I wanted to be verified during implementation.
However, this is a kind of prompt engineering, so it is not as reliable as lint like pylint and eslint.
I still feel the need to customize the details of the lint rules .
This document provides a comprehensive inventory of the YOLOREN.AI project context, including file structure, linting directives, feature toggles, and development personas. It serves as a central reference for understanding the project’s architecture and development practices.
Project Overview
YOLOREN.AI is a sophisticated platform that combines React-based frontend development with powerful backend services. The project emphasizes:
Modern web development practices
Robust security measures
Performance optimization
Comprehensive documentation
Automated deployment pipelines
File Context
The project’s file structure is organized into several key categories, each serving specific purposes in the development workflow.
# Create a visualization of file type distribution
files_df %>%
count(Type) %>%
ggplot(aes(x = reorder(Type, n), y = n, fill = Type)) +
geom_bar(stat = "identity") +
coord_flip() +
theme_minimal() +
labs(
title = "Distribution of File Types",
x = "File Type",
y = "Count",
fill = "Type"
) +
scale_fill_viridis_d()
Linting Directives
Our linting system employs a sophisticated set of directives to ensure code quality and consistency across the project.
# Visualize directive distribution across contexts
directives_df %>%
count(Context) %>%
ggplot(aes(x = "", y = n, fill = Context)) +
geom_bar(stat = "identity", width = 1) +
coord_polar("y") +
theme_minimal() +
labs(
title = "Distribution of Directives Across Contexts",
fill = "Context"
) +
scale_fill_viridis_d()
Feature Toggles & Settings
The project uses a comprehensive set of feature toggles and settings to control various aspects of the system’s behavior.
The schema is designed to capture the entire context sphere of the YOLOREN.AI project, including:
File Context: Tracks all project files, their types, locations, and purposes
Linting Directives: Manages code quality rules and their contexts
Settings & Toggles: Handles configuration and feature flags
Development Personas: Maintains different development roles and their characteristics
PowerShell Utilities: Organizes automation scripts and their purposes
Context Relationships: Maps connections between different context elements
Focus Areas: Defines development priorities and their impact
Context Relationships
The relationships between different context elements are visualized below:
graph TD
subgraph "Development Context"
F[Files] --> D[Directives]
D --> S[Settings]
S --> P[Personas]
P --> U[PowerShell Utils]
end
subgraph "Focus Areas"
FA1[Development Speed]
FA2[Code Quality]
FA3[Security]
FA4[Performance]
end
subgraph "Relationships"
R[Context Relationships]
R --> F
R --> D
R --> S
R --> P
R --> U
R --> FA1
R --> FA2
R --> FA3
R --> FA4
end
style Development fill:#f9f,stroke:#333,stroke-width:2px
style "Focus Areas" fill:#bbf,stroke:#333,stroke-width:2px
style Relationships fill:#bfb,stroke:#333,stroke-width:2px
Conclusion
This context inventory provides a comprehensive overview of the YOLOREN.AI project’s structure, development practices, and organizational patterns. By following these guidelines and leveraging the provided tools and personas, we can maintain high-quality development practices while ensuring efficient project progression.
I think prompt engineering for this is the wrong approach. Prompt engineering is hard enough as is and code linters/formatters have been working well for many years already.
What seems to be the issue right now is that the linting configuration Cursor uses for the “Iterate on lints” feature is not configurable. Ideally it would intelligently check the current repository for files like
.commitlintrc
.pyproject.toml
.gitlint
etc. (there are many possibilities here depending on the programming language/framework you’re working with)
and then surface those linting/formatting violations to Composer (normal and agent). This would do wonders to improve model output and drastically reduce time spent fixing errors downstream.
In addition, Cursor should probably check for any linting/formatting configuration on user/workspace/default settings level of the editor itself like some language server extensions allow.
I realize this feature is still in beta due to not being trivial to implement… but the current implementation (as of Cursor 0.44.8) is already so great I wish it were fully implemented already because it’s so ■■■■ useful.
Thanks for the more concrete suggestions. @ichoosetoaccept
I agree with it. The addition of guardrails by the existing lint tool would make the cursor agent work more reliably.