Skills
Reusable expertise and capabilities.

Bundle skills, workflows, agents, and policies into one package. Anyone can inspect it, enable it, and run it through their own Claude or Codex — nothing hidden, nothing replaced.
curl -fsSL https://agenticlineage.vercel.app/install.sh | shWhat is Lineage?
A prepared agent package travels as one local environment: skills, workflows, agents, policies, references, setup material, and provider entrypoints can be bundled, inspected, enabled, and launched from the receiver's machine.
Package contents
A Lineage package is a normal folder with a lineage.yaml manifest. The receiver should be able to open it and understand what will be enabled.
Reusable expertise and capabilities.
Workers, roles, tools and permissions.
Ordered steps, checks and validations.
Rules that keep package behavior bounded.
package/
├── lineage.yaml
├── skills/
├── workflows/
├── agents/
├── policies/
├── references/
└── adapters/Current runtime flow
Lineage currently focuses on reliable local package creation, enablement, launch planning, and provider shim entry.
$ lineage init user
$ lineage init workspace my-project
$ lineage package init resume-workflow
$ lineage enable ./resume-workflow
$ lineage run claude --dry-run
$ lineage run codex --dry-run
$ lineage install-shimslineage.yamlProvider adapters
Lineage does not replace the agent provider. It sits around local commands and keeps provider-specific behavior behind clear adapter boundaries.
Read architecture ->Local provider adapter for Claude command workflows.
In repoLocal provider adapter for Codex command workflows.
In repoReal example package
The repo includes a resume-focused package example with one exported workflow and one required skill.
resume-workflow, version 0.1.0, exports resume-review.examples/PresentCommunity
Contribute focused, testable changes. Discuss package safety, adapters, and workflow distribution in public.
Why a package, not a prompt
A workflow is more than a skill. It's the order you run things in, the checkpoints, the validation gates. Lineage packages that whole process, so whoever you hand it to runs it the way you built it, not a rebuilt guess.