Browse sections
Quickstart Guide
Installation
1.1 via NPM
Note: -g is required to install taito globally
npm install -g @taito-project-eu/taito1.2 Or just via precompiled binaries / packages (deb, rpm, apk)
Just check the latest release for the precompiled binaries and packages.
Quickstart Guide
- Installation: Install
taitousing one of the methods described above.
2.1 Run taito setup command to set up taito for the first time
taito setupSelect the tools you use and taito will automatically set up the configuration for you. You can always run taito setup again to change the configuration.
2.2 Install Skills from Github
taito install github.com/anthropics/skillsUse space to select the skills you want to install and enter to confirm.
2.3 List installed skills
taito list2.4 Update installed skills
taito updateThis will check for updates for all installed skills and update them if there are new versions available.
2.5 Uninstall a skill
taito uninstall <skill-id-from-taito-list>2.6 Packaging your own skills and agents as OCI artifacts
To start with packaging your own skills and agents, we start with creating a taito.spec file. This can be done manually or by using the taito init command, which will guide you through the process of creating a taito.spec file.
This can be one skill or agent, but it can also be a bundle of skills and agents.
Please check the example taito.spec file in the taito.spec/examples/ directory for reference.
taito initAfter creating the taito.spec file, you can use the taito package command to package your skills and agents into OCI artifacts.
taito package your.oci.registry/your-namespace/your-artifact:tag --spec taito.specThis can then be used for installing and publishing your oci artifact using the login, push, and install commands. Check out our command documentation for more information on how to use these commands.