@lazyingart/agintiflow 0.20.60 → 0.20.61
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/scripts/smoke-cli-chat.js +2 -0
- package/src/i18n.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lazyingart/agintiflow",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.61",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Low-cost, project-aware Web and CLI agents with DeepSeek/Venice/OpenAI routing, visible tool calls, durable sessions, scouts, AAPS, SCS, and guarded local execution.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -294,6 +294,8 @@ try {
|
|
|
294
294
|
!helpResult.stdout.includes("/auxiliary") ||
|
|
295
295
|
!helpResult.stdout.includes("/review") ||
|
|
296
296
|
!helpResult.stdout.includes("/scs") ||
|
|
297
|
+
helpResult.stdout.includes("helpReview") ||
|
|
298
|
+
helpResult.stdout.includes("helpRename") ||
|
|
297
299
|
helpResult.stdout.includes("/enable" + "ss") ||
|
|
298
300
|
helpResult.stdout.includes(misspelledAuxiliary)
|
|
299
301
|
) {
|
package/src/i18n.js
CHANGED
|
@@ -133,6 +133,8 @@ const TRANSLATIONS = {
|
|
|
133
133
|
helpAaps: "Manage AAPS workflows through the optional @lazyingart/aaps adapter.",
|
|
134
134
|
helpNew: "Start a fresh session on the next message.",
|
|
135
135
|
helpResume: "Continue a saved session.",
|
|
136
|
+
helpReview: "Run a bounded repo/diff review with controlled context gathering.",
|
|
137
|
+
helpRename: "Rename the current session.",
|
|
136
138
|
helpSessions: "List recent sessions in this project.",
|
|
137
139
|
helpSkills: "List Markdown skills selected for a topic.",
|
|
138
140
|
helpSkillMesh: "Manage strict reviewed skill sharing.",
|