@lazyingart/agintiflow 0.20.81 → 0.20.83

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 (3) hide show
  1. package/README.md +10 -24
  2. package/docs/aaps.md +3 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -35,13 +35,7 @@ The short version: run `aginti` inside a project, give it a task, inspect what i
35
35
  | Product positioning | [references/agintiflow-product-positioning.md](references/agintiflow-product-positioning.md) |
36
36
  | Full archived README reference | [references/notes/readme-full-reference-2026-05-05.md](references/notes/readme-full-reference-2026-05-05.md) |
37
37
 
38
- <p align="center">
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
- </p>
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>
38
+ Screenshots are kept out of the README body so the start guide stays readable. View them on the website carousel or in [demos/](demos/) and [website/assets/screenshots/](website/assets/screenshots/).
45
39
 
46
40
  ## Why This Exists
47
41
 
@@ -186,25 +180,17 @@ aginti --resume <session-id> \
186
180
  "continue with trusted host access"
187
181
  ```
188
182
 
189
- ## Real Screenshots
183
+ ## Screenshots
190
184
 
191
- | CLI launch | Web console run output |
192
- | --- | --- |
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" /> |
194
-
195
- | Web app overview | Task controls |
196
- | --- | --- |
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" /> |
185
+ The website keeps the visual walkthrough in a carousel so this README can stay focused on setup and usage:
198
186
 
199
- | Conversation history | Sandbox status |
187
+ | View | Link |
200
188
  | --- | --- |
201
- | <img src="./website/assets/screenshots/conversation-history.jpg" alt="AgInTiFlow conversation history" width="480" /> | <img src="./website/assets/screenshots/sandbox-status.jpg" alt="AgInTiFlow sandbox status" width="480" /> |
202
-
203
- | Mobile overview |
204
- | --- |
205
- | <img src="./website/assets/screenshots/mobile-overview.jpg" alt="AgInTiFlow mobile overview" width="480" /> |
206
-
207
- Older launch screenshots are kept in the source repository under [demos/archive/](https://github.com/lazyingart/AgInTiFlow/tree/main/demos/archive).
189
+ | Website carousel | [https://flow.lazying.art/#screenshots](https://flow.lazying.art/#screenshots) |
190
+ | CLI launch | [demos/agintiflow-cli-launch.jpg](demos/agintiflow-cli-launch.jpg) |
191
+ | Web console run output | [demos/agintiflow-web-console-run-output.jpg](demos/agintiflow-web-console-run-output.jpg) |
192
+ | Web app screenshots | [website/assets/screenshots/](website/assets/screenshots/) |
193
+ | Older launch screenshots | [demos/archive/](https://github.com/lazyingart/AgInTiFlow/tree/main/demos/archive) |
208
194
 
209
195
  ## Core Capabilities
210
196
 
@@ -270,7 +256,7 @@ Inside chat:
270
256
  /aaps dry-run workflows/main.aaps
271
257
  ```
272
258
 
273
- Use AAPS when the task is bigger than a single chat: app development with stages, paper/book workflows, validation gates, recovery steps, artifact production, or top-down agentic scripts. See [docs/aaps.md](docs/aaps.md) and the package [https://www.npmjs.com/package/@lazyingart/aaps](https://www.npmjs.com/package/@lazyingart/aaps).
259
+ Use AAPS when the task is bigger than a single chat: app development with stages, paper/book workflows, validation gates, recovery steps, artifact production, or top-down agentic scripts. The current adapter is intentionally lightweight: prompt-only AAPS tasks are reported as handoffs and do not automatically execute an LLM/backend agent yet, so AgInTiFlow warns when a run has no executable steps or misses a declared output. See [docs/aaps.md](docs/aaps.md) and the package [https://www.npmjs.com/package/@lazyingart/aaps](https://www.npmjs.com/package/@lazyingart/aaps).
274
260
 
275
261
  ## Local API Quick Reference
276
262
 
package/docs/aaps.md CHANGED
@@ -42,6 +42,8 @@ The adapter keeps paths project-relative and uses `execFile`, not shell interpol
42
42
 
43
43
  `compile check` and `validate` are the recommended first checks. `run` can execute commands declared by the `.aaps` workflow, so treat it like any other project execution step and run only workflows you intend to execute.
44
44
 
45
+ Current lightweight adapter boundary: prompt-only AAPS tasks are recorded as handoffs. They do not automatically call an LLM/backend agent yet. When a workflow has prompt-only steps, `aginti aaps run` and `aginti aaps dry-run` print `promptOnly=<n>` plus warnings if no executable steps ran or a declared output was not produced.
46
+
45
47
  `aginti aaps install` installs `@lazyingart/aaps` as a project dev dependency only when the current project has `package.json`. Use `aginti aaps install global` only when you intentionally want a global npm install.
46
48
 
47
49
  ## Project Shape
@@ -56,7 +58,7 @@ runs/
56
58
  artifacts/
57
59
  ```
58
60
 
59
- The starter workflow is deliberately simple: it defines a planner agent and a `draft_plan` task that writes `reports/aaps-plan.md`. Use it as a safe scaffold, then expand the workflow with blocks, validations, recovery steps, and review gates.
61
+ The starter workflow is deliberately simple: it defines a planner agent and a `draft_plan` task whose declared output is `reports/aaps-plan.md`. With the current lightweight adapter this task is prompt-only, so `run` produces durable run metadata and a handoff warning rather than writing the plan itself. Use AgInTiFlow to act on that handoff, or expand the workflow with executable actions, validations, recovery steps, and review gates.
60
62
 
61
63
  ## When To Use AAPS
62
64
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazyingart/agintiflow",
3
- "version": "0.20.81",
3
+ "version": "0.20.83",
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",