-
Notifications
You must be signed in to change notification settings - Fork 12
Vision
priyam-jain-2002 edited this page Aug 18, 2026
·
2 revisions
Lineage exists to make useful agent environments distributable.
Today, a working agent workflow is often scattered across prompts, skills, helper files, notes, local trackers, provider-specific setup, and undocumented conventions. That makes it hard to share the workflow with another person without either leaking private data or forcing them to rebuild the environment by hand.
Lineage focuses on the distribution layer:
agent environment -> safe package -> receiver-owned local activation
- A creator can package a prepared agent environment.
- A receiver can inspect the package before enabling it.
- Setup can create safe local resources with permission.
- Secrets and private machine-local state are not shared.
- Provider-specific behavior stays behind clear adapter boundaries.
- The receiver runs the workflow with their own local agent tools.
Lineage is not trying to become the agent provider. It is not a marketplace, billing platform, cloud runtime, vector database, or workflow language.
The long-term value is trust: a package should be understandable, portable, and safe enough that another person can activate it without being a programmer.