@lazyingart/agintiflow 0.20.83 → 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.
package/README.md CHANGED
@@ -256,7 +256,7 @@ Inside chat:
256
256
  /aaps dry-run workflows/main.aaps
257
257
  ```
258
258
 
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).
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).
260
260
 
261
261
  ## Local API Quick Reference
262
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.83",
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",