agent-worker 0.14.0 → 0.16.0

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
@@ -270,10 +270,10 @@ const agent = new AgentWorker({
270
270
  ### Programmatic Workflows
271
271
 
272
272
  ```typescript
273
- import { parseWorkflowFile, runWorkflowWithControllers } from 'agent-worker'
273
+ import { parseWorkflowFile, runWorkflowWithLoops } from 'agent-worker'
274
274
 
275
275
  const workflow = await parseWorkflowFile('review.yaml', { tag: 'pr-123' })
276
- const result = await runWorkflowWithControllers({
276
+ const result = await runWorkflowWithLoops({
277
277
  workflow,
278
278
  workflowName: 'review',
279
279
  tag: 'pr-123',
@@ -298,9 +298,12 @@ agent-worker new -m deepseek:deepseek-chat # Direct provider format
298
298
 
299
299
  ## Documentation
300
300
 
301
- - [ARCHITECTURE.md](./ARCHITECTURE.md) — System architecture
301
+ - [ARCHITECTURE.md](./ARCHITECTURE.md) — System architecture (module structure, dependency graph)
302
+ - [docs/architecture/OVERVIEW.md](./docs/architecture/OVERVIEW.md) — Design overview (why each layer exists)
302
303
  - [docs/backends.md](./docs/backends.md) — Backend comparison
303
304
  - [docs/workflow/](./docs/workflow/) — Workflow system design
305
+ - [docs/architecture/AGENT-TOP-LEVEL.md](./docs/architecture/AGENT-TOP-LEVEL.md) — Agent-as-entity proposal
306
+ - [docs/architecture/GUARD-AGENT.md](./docs/architecture/GUARD-AGENT.md) — Guard agent proposal
304
307
  - [TEST-ARCHITECTURE.md](./TEST-ARCHITECTURE.md) — Testing strategy
305
308
  - [examples/](./examples/) — Example workflows
306
309