chati-dev 3.0.5 → 3.0.6
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.
- package/package.json +1 -1
- package/src/installer/templates.js +45 -3
package/package.json
CHANGED
|
@@ -195,11 +195,27 @@ When the orchestrator references Claude-specific files, use these equivalents:
|
|
|
195
195
|
|
|
196
196
|
**NEVER create or reference CLAUDE.md, CLAUDE.local.md, or .claude/ directories.**
|
|
197
197
|
|
|
198
|
+
## CRITICAL — Model Name Mapping
|
|
199
|
+
|
|
200
|
+
The orchestrator and agents reference Claude model names. Replace them with Codex equivalents:
|
|
201
|
+
|
|
202
|
+
| Orchestrator says | You use instead |
|
|
203
|
+
|-------------------|-----------------|
|
|
204
|
+
| \`opus\` | \`codex\` |
|
|
205
|
+
| \`sonnet\` | \`mini\` |
|
|
206
|
+
| \`haiku\` | \`mini\` |
|
|
207
|
+
| \`/model opus\` | \`/model codex\` |
|
|
208
|
+
| \`/model sonnet\` | \`/model mini\` |
|
|
209
|
+
| \`/model haiku\` | \`/model mini\` |
|
|
210
|
+
|
|
211
|
+
When the orchestrator displays a model recommendation (e.g. "Model recommendation: haiku"),
|
|
212
|
+
translate the model name using the table above before showing it to the user.
|
|
213
|
+
|
|
198
214
|
## Load
|
|
199
215
|
|
|
200
216
|
Read and execute the full orchestrator at \`chati.dev/orchestrator/chati.md\`.
|
|
201
217
|
|
|
202
|
-
Apply the Provider Context Mapping above when following the orchestrator instructions.
|
|
218
|
+
Apply the Provider Context Mapping AND Model Name Mapping above when following the orchestrator instructions.
|
|
203
219
|
|
|
204
220
|
**Context to pass:**
|
|
205
221
|
- \`.chati/session.yaml\` (session state — includes language)
|
|
@@ -234,8 +250,18 @@ When the orchestrator references Claude-specific files, use these equivalents:
|
|
|
234
250
|
- .claude/commands/ -> .gemini/commands/
|
|
235
251
|
NEVER create or reference CLAUDE.md, CLAUDE.local.md, or .claude/ directories.
|
|
236
252
|
|
|
253
|
+
CRITICAL — Model Name Mapping:
|
|
254
|
+
The orchestrator and agents reference Claude model names. Replace them with Gemini equivalents:
|
|
255
|
+
- opus -> pro
|
|
256
|
+
- sonnet -> flash
|
|
257
|
+
- haiku -> flash
|
|
258
|
+
- /model opus -> /model pro
|
|
259
|
+
- /model sonnet -> /model flash
|
|
260
|
+
- /model haiku -> /model flash
|
|
261
|
+
When displaying model recommendations, translate names using the mapping above.
|
|
262
|
+
|
|
237
263
|
Read and execute the full orchestrator at \`chati.dev/orchestrator/chati.md\`.
|
|
238
|
-
Apply the Provider Context Mapping above when following instructions.
|
|
264
|
+
Apply the Provider Context Mapping AND Model Name Mapping above when following instructions.
|
|
239
265
|
|
|
240
266
|
Context to load:
|
|
241
267
|
- \`.chati/session.yaml\` (session state — includes language)
|
|
@@ -288,11 +314,27 @@ When the orchestrator references Claude-specific files, use these equivalents:
|
|
|
288
314
|
|
|
289
315
|
**NEVER create or reference CLAUDE.md, CLAUDE.local.md, or .claude/ directories.**
|
|
290
316
|
|
|
317
|
+
## CRITICAL — Model Name Mapping
|
|
318
|
+
|
|
319
|
+
The orchestrator and agents reference Claude model names. Replace them with Copilot equivalents:
|
|
320
|
+
|
|
321
|
+
| Orchestrator says | You use instead |
|
|
322
|
+
|-------------------|-----------------|
|
|
323
|
+
| \`opus\` | \`claude-sonnet\` |
|
|
324
|
+
| \`sonnet\` | \`claude-sonnet\` |
|
|
325
|
+
| \`haiku\` | \`gpt-5\` |
|
|
326
|
+
| \`/model opus\` | \`/model claude-sonnet\` |
|
|
327
|
+
| \`/model sonnet\` | \`/model claude-sonnet\` |
|
|
328
|
+
| \`/model haiku\` | \`/model gpt-5\` |
|
|
329
|
+
|
|
330
|
+
When the orchestrator displays a model recommendation (e.g. "Model recommendation: haiku"),
|
|
331
|
+
translate the model name using the table above before showing it to the user.
|
|
332
|
+
|
|
291
333
|
## Load
|
|
292
334
|
|
|
293
335
|
Read and execute the full orchestrator at \`chati.dev/orchestrator/chati.md\`.
|
|
294
336
|
|
|
295
|
-
Apply the Provider Context Mapping above when following the orchestrator instructions.
|
|
337
|
+
Apply the Provider Context Mapping AND Model Name Mapping above when following the orchestrator instructions.
|
|
296
338
|
|
|
297
339
|
**Context to pass:**
|
|
298
340
|
- \`.chati/session.yaml\` (session state — includes language)
|