@lazyingart/agintiflow 0.20.82 → 0.20.84

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 +15 -0
  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. 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).
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. There are two bridge directions: AgInTiFlow can inspect/validate/compile/run `.aaps` workflows with `aginti aaps ...`, and AAPS can call AgInTiFlow as the backend implementation agent with `aaps prompt "goal" --backend aginti`. 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
@@ -9,6 +9,11 @@ The integration is intentionally lightweight. AgInTiFlow does not vendor the AAP
9
9
  3. `aaps` on `PATH`.
10
10
  4. A sibling development checkout at `~/ProjectsLFS/AAPS/scripts/aaps.js` when present.
11
11
 
12
+ There are two useful bridge directions:
13
+
14
+ - `aginti aaps ...`: AgInTiFlow is the interactive runtime and calls the AAPS CLI to inspect, validate, compile, dry-run, or run project workflows.
15
+ - `aaps prompt "goal" --backend aginti`: AAPS writes a durable backend-agent handoff under `.aaps-work/prompts/` and invokes AgInTiFlow as the implementation agent for the goal.
16
+
12
17
  ## CLI
13
18
 
14
19
  ```bash
@@ -46,6 +51,16 @@ Current lightweight adapter boundary: prompt-only AAPS tasks are recorded as han
46
51
 
47
52
  `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.
48
53
 
54
+ If you want AAPS itself to hand a top-level goal to AgInTiFlow, use the AAPS CLI:
55
+
56
+ ```bash
57
+ aaps prompt "Create and validate an executable workflow that writes reports/smoke.md" --project . --backend aginti
58
+ aaps "Create a small AAPS workflow and run it" --project . --backend aginti
59
+ aaps prompt "Prepare the backend prompt only" --project . --backend print --json
60
+ ```
61
+
62
+ The generated AAPS handoff is sandbox-aware: it asks the backend to prefer installed `aaps`, use Docker-safe `npx -y @lazyingart/aaps@<version>` when package installs/network are approved, and use a source checkout only when that path is visible inside the active sandbox.
63
+
49
64
  ## Project Shape
50
65
 
51
66
  `aginti aaps init` creates a starter project without overwriting existing files:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazyingart/agintiflow",
3
- "version": "0.20.82",
3
+ "version": "0.20.84",
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",