-
Notifications
You must be signed in to change notification settings - Fork 155
[FEATURE] Allow install to download and unpack a GitHub release automatically #514
Copy link
Copy link
Open
Labels
acceptedDeprecated: use status/accepted. Kept for issue history; will be removed in milestone 0.10.0.Deprecated: use status/accepted. Kept for issue history; will be removed in milestone 0.10.0.area/distributionInstallers (curl/PowerShell/Brew/Scoop), self-update, devcontainer, codespaces.Installers (curl/PowerShell/Brew/Scoop), self-update, devcontainer, codespaces.area/lockfileLockfile schema, per-file provenance, integrity hashes, drift detection.Lockfile schema, per-file provenance, integrity hashes, drift detection.enhancementDeprecated: use type/feature. Kept for issue history; will be removed in milestone 0.10.0.Deprecated: use type/feature. Kept for issue history; will be removed in milestone 0.10.0.marketplaceDeprecated: use area/marketplace. Kept for issue history; will be removed in milestone 0.10.0.Deprecated: use area/marketplace. Kept for issue history; will be removed in milestone 0.10.0.status/needs-designDirection approved, design discussion required before code.Direction approved, design discussion required before code.status/triagedInitial agentic triage complete; pending maintainer ratification (silence = approval).Initial agentic triage complete; pending maintainer ratification (silence = approval).theme/portabilityOne manifest, every target. Multi-target deploy, marketplace, packaging, install.One manifest, every target. Multi-target deploy, marketplace, packaging, install.type/featureNew capability, new flag, new primitive.New capability, new flag, new primitive.
Metadata
Metadata
Assignees
Labels
acceptedDeprecated: use status/accepted. Kept for issue history; will be removed in milestone 0.10.0.Deprecated: use status/accepted. Kept for issue history; will be removed in milestone 0.10.0.area/distributionInstallers (curl/PowerShell/Brew/Scoop), self-update, devcontainer, codespaces.Installers (curl/PowerShell/Brew/Scoop), self-update, devcontainer, codespaces.area/lockfileLockfile schema, per-file provenance, integrity hashes, drift detection.Lockfile schema, per-file provenance, integrity hashes, drift detection.enhancementDeprecated: use type/feature. Kept for issue history; will be removed in milestone 0.10.0.Deprecated: use type/feature. Kept for issue history; will be removed in milestone 0.10.0.marketplaceDeprecated: use area/marketplace. Kept for issue history; will be removed in milestone 0.10.0.Deprecated: use area/marketplace. Kept for issue history; will be removed in milestone 0.10.0.status/needs-designDirection approved, design discussion required before code.Direction approved, design discussion required before code.status/triagedInitial agentic triage complete; pending maintainer ratification (silence = approval).Initial agentic triage complete; pending maintainer ratification (silence = approval).theme/portabilityOne manifest, every target. Multi-target deploy, marketplace, packaging, install.One manifest, every target. Multi-target deploy, marketplace, packaging, install.type/featureNew capability, new flag, new primitive.New capability, new flag, new primitive.
Type
Projects
Status
In Progress
Is your feature request related to a problem? Please describe.
We have a mono-repo were we are curating multiple skills, instructions and agents centrally, right now we don't have a lot of good options to version the packages. We either have to use poly-repos (which isn't great if you have to keep telling people where to find the skills, ect they are looking for) or use a repo wide version using a single tag (but this would not work if someone needs to use a previous version of one skill and then forced to use a newer version because of a another skill update they need), or we could use individual tags for each skill, instructions or agent (but this causes management overhead and teams would need to find the tag they are looking for.)
Describe the solution you'd like
We would like to pack and release each package in the mono repo individually in github, we would then like to use
apm install {targeted-package-github-release}which should then download, unpack and install the agents.Describe alternatives you've considered
We could still do this but then we would have to tell teams to first download the release and then unpack it...which seems reasonable...but we are getting push back because of it.
Additional context
None.