polydev-ai 1.9.32 → 1.9.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/mcp/manifest.json +0 -51
  2. package/package.json +1 -1
package/mcp/manifest.json CHANGED
@@ -163,57 +163,6 @@
163
163
  "type": "string",
164
164
  "description": "Polydev user authentication token (get from dashboard)",
165
165
  "minLength": 1
166
- },
167
- "project_memory": {
168
- "type": "string",
169
- "description": "Project context level - 'none', 'light' (recent files), or 'full' (TF-IDF similarity)",
170
- "enum": ["none", "light", "full"],
171
- "default": "none"
172
- },
173
- "max_messages": {
174
- "type": "integer",
175
- "description": "Maximum number of messages to process for tool calls",
176
- "minimum": 1,
177
- "maximum": 50,
178
- "default": 10
179
- },
180
- "temperature": {
181
- "type": "number",
182
- "description": "Temperature for model responses",
183
- "minimum": 0,
184
- "maximum": 2,
185
- "default": 0.7
186
- },
187
- "max_tokens": {
188
- "type": "integer",
189
- "description": "Maximum tokens per response",
190
- "minimum": 100,
191
- "maximum": 16000,
192
- "default": 10000
193
- },
194
- "project_context": {
195
- "type": "object",
196
- "description": "Project context for memory retrieval",
197
- "properties": {
198
- "root_path": {
199
- "type": "string",
200
- "description": "Root directory path for project"
201
- },
202
- "includes": {
203
- "type": "array",
204
- "description": "File patterns to include",
205
- "items": {
206
- "type": "string"
207
- }
208
- },
209
- "excludes": {
210
- "type": "array",
211
- "description": "File patterns to exclude",
212
- "items": {
213
- "type": "string"
214
- }
215
- }
216
- }
217
166
  }
218
167
  },
219
168
  "required": ["prompt"]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polydev-ai",
3
- "version": "1.9.32",
3
+ "version": "1.9.33",
4
4
  "engines": {
5
5
  "node": ">=20.x <=22.x"
6
6
  },