Compare commits

..

2 Commits

Author SHA1 Message Date
Drew Bednar 704590272b Not bad 2 months ago
Drew Bednar b63c43b3f6 Update Gemini rules 2 months ago

@ -10,6 +10,29 @@ This project utilizes a `components/` directory at its root, which contains a co
**The files within the `components/` directory are intended as a library of examples and building blocks.** They should **never be directly modified or edited** by the Gemini CLI.
### Development Sandbox
- **All file modifications must be confined to the `./playground/src/` directory**. This is the designated area for all development and coding work. The Gemini CLI must not, under any circumstances, attempt to create, modify, or delete files outside of the `./playground/src/`.
- Gemini does not need to setup the `./playground` directory structure. The user will have done that before running Gemini.
- Only modifiy the `./playground/src/css/input.css` and `./playground/src/index.html`. All other files will be created and maintained by the user.
- The `./playground/src/index.html` has a valid structure for the project layout. When the user asks Gemini to make changes to it, Gemini should consider the prompt to be made in the context of changing the index.html body unless explicitly called out in the user's input prompt.
- The `./playground/src/main.css` will be generated by the user before viewing the changes made by the agent. No tailwindcss cli command needs to be run by Gemini.
Reference file structure for a new ./playground project.
```
./playground/
├── README.md
└── src
├── css
│   └── input.css
├── index.html
└── vendor
└── js
└── tailwindcss-elements.1.0.0.js
5 directories, 4 files
```
---
## Component Utilization Strategy

Loading…
Cancel
Save