-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Fernando Koch edited this page Mar 29, 2026
·
6 revisions
This wiki is organized as a practical how-to index. Each page explains one public package concept from the perspective of someone trying to use GraphK.
- How To Create A Node
- How To Build A Pipeline
- How To Use An Emitter
- How To Use Context
- How To Use Policy
- How To Route With BranchPipe
- How To Execute Multiple Routes With MultiPipe
For GraphK, the wiki focuses on the public execution path that a new user or another agent is most likely to need first:
NodePipelineEmitter
These were selected because they map directly to the main learning path of the package:
- define executable behavior with a
Node - compose behavior with a
Pipeline - expose the package as a request/response runtime with an
Emitter
As the package grows, additional how-to pages should be added only when they represent a distinct public capability that deserves its own operational guide. Good candidates would be:
- policies and entry/exit validation
- branching with
BranchPipe - multi-branch execution with
MultiPipe - persistence with
Persistence - logging with
Logger
The wiki pages intentionally point back to runnable examples and test files when a concept already has a good executable reference.
Good starting points: