You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When docking a manifest using nostromo dock it pulls down one or more manifests locally. Now that we have support for multiple manifests, it will be likely that users will split functionality up with more granularity. In some cases, it could be that a manifest command may depend on another that isn't in the same manifest.
To be able to build composable manifests, we can add a dependencies field that includes sources for other manifests. On sync functionality (sync, dock, undock) we can automatically ingest or delete these additional manifests.
When docking a manifest using
nostromo dock
it pulls down one or more manifests locally. Now that we have support for multiple manifests, it will be likely that users will split functionality up with more granularity. In some cases, it could be that a manifest command may depend on another that isn't in the same manifest.To be able to build composable manifests, we can add a
dependencies
field that includes sources for other manifests. On sync functionality (sync
,dock
,undock
) we can automatically ingest or delete these additional manifests.Proposed
model.Manifest
updates:Add a new command to
link
manifests together:This command, similar to
dock
, should download the manifest, parse it, store it, and add the dependency record in the target manifest.Note that care should be taken with collision detection and circular references. Need a solution to avoid problems with these scenarios.
The text was updated successfully, but these errors were encountered: