@ai.ntellect/core 1.1.1 → 1.1.2

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 (2) hide show
  1. package/README.md +11 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -75,15 +75,14 @@ pnpm add @ai.ntellect/core zod
75
75
  ## Table of Contents
76
76
 
77
77
  - [Core Thesis](#core-thesis)
78
- - [Source Structure](#source-structure)
79
- - [GraphFlow — Typed Execution](#graphflow--typed-execution)
80
- - [CortexFlow — Intent Routing](#cortexflow--intent-routing)
81
- - [Agent — Cognitive Loop](#agent--cognitive-loop)
82
- - [AgentPipeline — Declarative Pipelines](#agentpipeline--declarative-pipelines)
83
- - [Persistence — Memory & Checkpoints](#persistence--memory--checkpoints)
78
+ - [GraphFlow](#graphflow)
79
+ - [CortexFlow](#cortexflow)
80
+ - [Agent](#agent)
81
+ - [Pipelines](#pipelines)
82
+ - [Persistence](#persistence)
84
83
  - [Planner & Compiler](#planner--compiler)
85
- - [CLI (Interactive REPL)](#cli-interactive-repl)
86
- - [Testing & Build](#testing--build)
84
+ - [CLI](#cli)
85
+ - [GraphController](#graphcontroller)
87
86
 
88
87
  ---
89
88
 
@@ -264,7 +263,7 @@ import {
264
263
 
265
264
  ---
266
265
 
267
- ## AgentPipeline — Declarative Pipelines
266
+ ## Pipelines
268
267
 
269
268
  Declarative pipelines with triggers, typed stages, and human gates.
270
269
 
@@ -412,3 +411,6 @@ await controller.sequential("workflow_a", "workflow_b");
412
411
  ## License
413
412
 
414
413
  MIT
414
+ cense
415
+
416
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai.ntellect/core",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "In-process workflow engine with typed graphs, events, and LLM agent support",
5
5
  "main": "dist/index.js",
6
6
  "packageManager": "pnpm@10.33.0",