arconia skills collection
The arconia skills collection commands are experimental and may change in future releases. They showcase the capabilities of the suggested Agent Skills OCI Artifacts Specification.
|
The arconia skills collection command manages collections of agent skills. Collections are OCI indexes that list available skills and their locations.
Commands
add
Register a collection and fetch its contents into the local cache.
arconia skills collection add --name my-collection --ref ghcr.io/org/repo/collection:1.0.0
Options
| Option | Default | Description |
|---|---|---|
|
The alias to assign to the collection. |
|
|
The OCI artifact reference for the collection index. |
|
|
|
Call the OCI registry over HTTP instead of HTTPS. |
|
|
Allow TLS connections without validating certificates. |
list
List available skills in a collection. You can query a collection by direct OCI reference, by its registered alias, or list all registered collections.
arconia skills collection list
arconia skills collection list --name my-collection
arconia skills collection list --ref ghcr.io/org/repo/collection:1.0.0
Options
| Option | Default | Description |
|---|---|---|
|
The alias of a registered collection to list. |
|
|
The OCI artifact reference for the collection to list. |
|
|
|
Call the OCI registry over HTTP instead of HTTPS. |
|
|
Allow TLS connections without validating certificates. |
update
Check for newer versions of registered collections and update them.
arconia skills collection update
arconia skills collection update --name my-collection
Options
| Option | Default | Description |
|---|---|---|
|
The alias of a specific collection to update. If omitted, updates all registered collections. |
|
|
|
Call the OCI registry over HTTP instead of HTTPS. |
|
|
Allow TLS connections without validating certificates. |
remove
Remove a collection from the local Arconia CLI configuration.
arconia skills collection remove --name my-collection
Options
| Option | Default | Description |
|---|---|---|
|
The alias of the collection to remove. |
|
|
|
Call the OCI registry over HTTP instead of HTTPS. |
|
|
Allow TLS connections without validating certificates. |
push
Build and push a skills collection as an OCI Index.
arconia skills collection push --ref ghcr.io/org/skills-collection --name arconia-io --tag 1.0.0 --skill ghcr.io/org/skills/my-skill:1.0.0
arconia skills collection push --ref ghcr.io/org/skills-collection --name arconia-io --tag 1.0.0 --from-report publish-skills-report.json
arconia skills collection push --ref ghcr.io/org/skills-collection --name arconia-io --tag 1.0.0 --skill ghcr.io/org/skills/my-skill:1.0.0 --output-report
Options
| Option | Default | Description |
|---|---|---|
|
The OCI artifact reference for the collection. |
|
|
The collection identifier. |
|
|
The semver version tag for the collection. |
|
|
Additional tags to apply to the collection. |
|
|
Path to a publish report file (from |
|
|
Explicit skill OCI references to include. |
|
|
A short description of the collection. |
|
|
Extra annotations in key=value format. |
|
|
|
Write a publish report file recording the published collection artifact including its immutable digest. Defaults to |
|
|
Call the OCI registry over HTTP instead of HTTPS. |
|
|
Allow TLS connections without validating certificates. |