You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gemini CLI uses `GEMINI.md` context files instead of `AGENTS.md`. These files are loaded hierarchically from your project root and provide instructions to the AI assistant.
**Note:** Gemini CLI automatically loads `GEMINI.md` files from your project root. The context file contains instructions that tell the AI to read the `.agents/PINECONE.md` file when needed. You can also place context files in subdirectories for more specific instructions. Use `/memory refresh` in Gemini CLI to reload context files if needed.
135
+
111
136
That's it! Your project now has the `.agents/` folder with all Pinecone documentation and your configuration file has been updated.
112
137
113
138
### Important: Allow Re-indexing
@@ -117,7 +142,9 @@ Many coding assistants need to re-index your codebase to recognize the new `.age
117
142
-**Wait a few moments** for automatic re-indexing to complete, or
118
143
-**Manually trigger a re-index** (if your assistant provides this option)
119
144
120
-
If you start using Pinecone features immediately after installation, your assistant may not yet have access to the Pinecone documentation. Once re-indexing is complete, your assistant will automatically reference the `.agents/PINECONE.md` files when you ask questions about Pinecone.
145
+
**For Gemini CLI users:** After installation, use the `/memory refresh` command to reload context files. This ensures the CLI picks up your new `GEMINI.md` file and the `.agents/` folder.
146
+
147
+
If you start using Pinecone features immediately after installation, your assistant may not yet have access to the Pinecone documentation. Once re-indexing is complete (or after running `/memory refresh` in Gemini CLI), your assistant will automatically reference the `.agents/PINECONE.md` files when you ask questions about Pinecone.
└── AGENTS.md # Your project's agent guide (with Pinecone section)
165
+
# or CLAUDE.md for Claude Code
166
+
# or GEMINI.md for Gemini CLI
138
167
139
168
```
140
169
141
170
### Customizing the Integration
142
171
143
-
The third command appends `AGENTS-pinecone-snippet.md`to your `AGENTS.md`. If you already have an `AGENTS.md` file and want more control over where the Pinecone section is placed:
172
+
The installation commands append the appropriate snippet file to your configuration file. If you already have a configuration file and want more control over where the Pinecone section is placed:
144
173
145
174
1. Extract the archive: `unzip agents.zip && rm agents.zip`
146
175
2. Open `AGENTS-pinecone-snippet.md` and copy the "Pinecone (Vector Database)" section
147
-
3. Manually add it to your `AGENTS.md` where you prefer
148
-
4. Remove the snippet file: `rm AGENTS-pinecone-snippet.md`
176
+
3. Manually add it to your configuration file (`AGENTS.md`, `CLAUDE.md`, or `GEMINI.md`) where you prefer
177
+
4. Remove the snippet file
149
178
150
179
## Updating
151
180
152
-
To update to a newer version, simply download the latest release and extract the archive. Your configuration file (`AGENTS.md` or `CLAUDE.md` if using Claude Code) typically doesn't need changes unless the structure changes.
181
+
To update to a newer version, simply download the latest release and extract the archive. Your configuration file (`AGENTS.md`, `CLAUDE.md`, or `GEMINI.md`) typically doesn't need changes unless the structure changes.
153
182
154
183
**Linux/macOS (Bash/Zsh):**
155
184
@@ -203,7 +232,7 @@ The workflow triggers automatically on tag push (`push: tags: v*`) and:
203
232
- If no release exists → creates a new release automatically
204
233
3. Packages the following files:
205
234
- All files from `.agents/` folder (8 Pinecone documentation files)
206
-
-`AGENTS-pinecone-snippet.md` file
235
+
-`AGENTS-pinecone-snippet.md` file (works for all assistants including Gemini CLI)
0 commit comments