firehose> #llmops

Agentic Distribution

The problem of keeping private agentics — prompts, agents, and skills — synced and un-duplicated across many codebases, devices, team members, and agent fleets. Below a couple of repos it is a non-problem; at 10+ codebases with agents on multiple devices it becomes acute: you copy a skill, it drifts, and there is no shared access. The solution is a meta skill plus a single reference manifest — a YAML "library" file that behaves like a package.json / pyproject for your agentics. Crucially the manifest stores pointers (private GitHub repos or local file paths) to where each artifact actually lives, never copies. A small, package-manager-shaped command surface operates over it: add (catalog a new artifact as a reference), use (install an artifact by reference into a target namespace), push (write a local edit back to the source repo), list / search, and sync (pull the latest source, not just the catalog). Because there is one source of truth and everything is a reference, any device, agent, or teammate that clones the manifest + skill is bootstrapped with the same, latest agentics. The public reference library (just the YAML + skill) is kept distinct from the private artifact repos it points at, so the pointer file can be shared while the valuable, specialized agentics stay private. The distribution tool itself is a Pure Agent Application — a SKILL.md + library.yaml, no executable code.

Claims


Linked from