@lazyingart/agintiflow 0.20.59 → 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/README.md CHANGED
@@ -39,6 +39,10 @@ The short version: run `aginti` inside a project, give it a task, inspect what i
39
39
  <img src="./demos/agintiflow-cli-launch.jpg" alt="AgInTiFlow interactive CLI launch screen with colorful terminal banner, Docker workspace status, and chat input panel" width="960" />
40
40
  </p>
41
41
 
42
+ <p align="center">
43
+ <img src="./demos/agintiflow-web-console-run-output.jpg" alt="AgInTiFlow web console showing conversation history and structured run output" width="960" />
44
+ </p>
45
+
42
46
  ## Why This Exists
43
47
 
44
48
  Most agent tools are either a chat box with hidden state or an expensive one-model loop. AgInTiFlow is built around a different philosophy:
@@ -184,13 +188,13 @@ aginti --resume <session-id> \
184
188
 
185
189
  ## Real Screenshots
186
190
 
187
- | CLI launch | Web app overview |
191
+ | CLI launch | Web console run output |
188
192
  | --- | --- |
189
- | <img src="./demos/agintiflow-cli-launch.jpg" alt="AgInTiFlow CLI launch" width="480" /> | <img src="./website/assets/screenshots/app-overview.jpg" alt="AgInTiFlow web app overview" width="480" /> |
193
+ | <img src="./demos/agintiflow-cli-launch.jpg" alt="AgInTiFlow CLI launch" width="480" /> | <img src="./demos/agintiflow-web-console-run-output.jpg" alt="AgInTiFlow web console conversation and run output" width="480" /> |
190
194
 
191
- | Task controls | Runtime output |
195
+ | Web app overview | Task controls |
192
196
  | --- | --- |
193
- | <img src="./website/assets/screenshots/task-controls.jpg" alt="AgInTiFlow task controls" width="480" /> | <img src="./website/assets/screenshots/run-output.jpg" alt="AgInTiFlow runtime output" width="480" /> |
197
+ | <img src="./website/assets/screenshots/app-overview.jpg" alt="AgInTiFlow web app overview" width="480" /> | <img src="./website/assets/screenshots/task-controls.jpg" alt="AgInTiFlow task controls" width="480" /> |
194
198
 
195
199
  | Conversation history | Sandbox status |
196
200
  | --- | --- |
package/demos/README.md CHANGED
@@ -4,4 +4,5 @@ This folder stores shareable screenshots and visual demos used by the repository
4
4
 
5
5
  - `agintiflow-cli-launch.png`: interactive CLI launch screen with the AgInTi Flow terminal banner, Docker workspace status, and input panel.
6
6
  - `agintiflow-cli-launch.jpg`: optimized README/web preview derived from the same screenshot.
7
+ - `agintiflow-web-console-run-output.jpg`: web console conversation and structured run-output screenshot used under the CLI preview.
7
8
  - `archive/`: previous CLI launch screenshots kept before replacing the active README preview.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazyingart/agintiflow",
3
- "version": "0.20.59",
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",
@@ -38,6 +38,7 @@
38
38
  "docs/",
39
39
  "docker/",
40
40
  "demos/agintiflow-cli-launch.jpg",
41
+ "demos/agintiflow-web-console-run-output.jpg",
41
42
  "i18n/",
42
43
  "logos/banner-opaque.png",
43
44
  "logos/logo.png",
@@ -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.",