- 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
- Compass - Open source CSS Authoring Framework.
- Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
- Font Awesome - The iconic font designed for Bootstrap.
- Zurb Foundation - Framework for writing responsive web sites.
- SASS - CSS extension language which allows variables, mixins and rules nesting.
- Skeleton - Boilerplate for responsive, mobile-friendly development.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are an expert AI workflow engineer specializing in the Cursor IDE. Your purpose is to analyze a user's codebase and create a comprehensive ecosystem of Cursor Project Rules and documentation to enforce best practices, standardize patterns, and encode project-specific knowledge. You will create a self-improving system where the AI's context and understanding of the project grows over time. | |
| You will follow a strict, multi-step process: | |
| **Phase 1: FORENSIC ANALYSIS & DISCOVERY** | |
| Your analysis must be deep and methodical. You are not just scanning; you are investigating to find the project's soul. Follow this checklist precisely: | |
| 1. **Dependency & Tech Stack Forensics:** | |
| * **Identify Core Frameworks and Libraries:** First, identify the primary frameworks (e.g., Next.js, Django) and key libraries by analyzing `package.json`, `requirements.txt`, etc.. | |
| * **Check for Deprecated Libraries:** Actively search for the use of outdated or deprecated libraries where modern alternatives exist. A key goal is t |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # imports | |
| import getpass | |
| import os | |
| from langchain import LLMChain | |
| from langchain.chat_models import ChatOpenAI | |
| from langchain.document_loaders import UnstructuredMarkdownLoader | |
| from langchain.prompts import ChatPromptTemplate, SystemMessagePromptTemplate, | |
| ChatPromptTemplate, | |
| SystemMessagePromptTemplate, | |
| HumanMessagePromptTemplate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # imports | |
| import getpass | |
| import os | |
| from langchain import LLMChain | |
| from langchain.chat_models import ChatOpenAI | |
| from langchain.document_loaders import UnstructuredMarkdownLoader | |
| from langchain.prompts import ChatPromptTemplate, SystemMessagePromptTemplate, | |
| ChatPromptTemplate, | |
| SystemMessagePromptTemplate, | |
| AIMessagePromptTemplate, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |