Follow this guide to install agentregistry, create your first AI artifact, and publish it to the registry.
Install the agentregistry CLI tool using pip:
pip install agentregistryVerify the installation:
agentregistry --versionLog in to your agentregistry account:
agentregistry loginThis will prompt you for your credentials and store an authentication token locally.
Initialize a new artifact project:
agentregistry init my-first-agentThis creates a new directory with a template structure. Navigate to the directory:
cd my-first-agentThe generated structure includes configuration files and example code to get you started quickly.
Run your artifact locally to test it:
agentregistry runThis launches your artifact in a local development environment where you can test and debug before publishing.
Once you are satisfied with your artifact, publish it to the registry:
agentregistry publishYour artifact is now available in the registry for others to discover and use.
Pull an artifact from the registry:
agentregistry pull username/artifact-nameRun the pulled artifact:
agentregistry run username/artifact-nameJoin the agentregistry community and contribute to the future of AI development.