@rely-ai/caliber 1.22.0-dev.1773765306 → 1.22.0-dev.1773765954
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/dist/bin.js +5 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -1265,7 +1265,7 @@ var CursorAcpProvider = class {
|
|
|
1265
1265
|
return this.connections.get(model);
|
|
1266
1266
|
}
|
|
1267
1267
|
async connect(model) {
|
|
1268
|
-
const args = ["
|
|
1268
|
+
const args = ["acp"];
|
|
1269
1269
|
if (model && model !== "auto" && model !== "default") {
|
|
1270
1270
|
args.unshift("--model", model);
|
|
1271
1271
|
}
|
|
@@ -1392,6 +1392,10 @@ var CursorAcpProvider = class {
|
|
|
1392
1392
|
const streamOpts = options;
|
|
1393
1393
|
const hasHistory = streamOpts.messages && streamOpts.messages.length > 0;
|
|
1394
1394
|
let combined = "";
|
|
1395
|
+
combined += "IMPORTANT: You are being used as a direct LLM, not as a coding agent. ";
|
|
1396
|
+
combined += "Do NOT use tools, do NOT read or write files, do NOT check the repository. ";
|
|
1397
|
+
combined += "Process the prompt below and output your response directly in your message. ";
|
|
1398
|
+
combined += "Follow the system instructions exactly.\n\n";
|
|
1395
1399
|
combined += "[[System]]\n" + options.system + "\n\n";
|
|
1396
1400
|
if (hasHistory) {
|
|
1397
1401
|
for (const msg of streamOpts.messages) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rely-ai/caliber",
|
|
3
|
-
"version": "1.22.0-dev.
|
|
3
|
+
"version": "1.22.0-dev.1773765954",
|
|
4
4
|
"description": "Analyze your codebase and generate optimized AI agent configs (CLAUDE.md, .cursorrules, skills) — no API key needed",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|