|
| 1 | +# Open Autonomy CLI Overview |
| 2 | + |
| 3 | +This page provides a quick reference to commonly used CLI commands in the Open Autonomy framework. Each command has a brief description and basic usage example, with links to more detailed documentation. |
| 4 | + |
| 5 | +## Core Commands |
| 6 | + |
| 7 | +### autonomy analyse |
| 8 | +Analyse an agent service, including ABCI app specifications, docstrings, logs, and more. |
| 9 | + |
| 10 | +[Detailed analyse documentation](./advanced_reference/commands/autonomy_analyse.md) |
| 11 | + |
| 12 | +### autonomy deploy |
| 13 | +Deploy an agent service using various deployment backends (Docker, Kubernetes, or localhost). |
| 14 | + |
| 15 | +[Detailed deploy documentation](./advanced_reference/commands/autonomy_deploy.md) |
| 16 | + |
| 17 | +### autonomy develop |
| 18 | +Development tools for agent services. |
| 19 | + |
| 20 | +[Detailed develop documentation](./advanced_reference/commands/autonomy_develop.md) |
| 21 | + |
| 22 | +### autonomy fetch |
| 23 | +Fetch an agent or service from a registry. |
| 24 | + |
| 25 | +[Detailed fetch documentation](./advanced_reference/commands/autonomy_fetch.md) |
| 26 | + |
| 27 | +### autonomy mint |
| 28 | +Mint components and services on-chain. |
| 29 | + |
| 30 | +[Detailed mint documentation](./advanced_reference/commands/autonomy_mint.md) |
| 31 | + |
| 32 | +### autonomy push-all |
| 33 | +Push all available packages to a registry. |
| 34 | + |
| 35 | +[Detailed push-all documentation](./advanced_reference/commands/autonomy_push_all.md) |
| 36 | + |
| 37 | +### autonomy replay |
| 38 | +Replay tools for agent services. |
| 39 | + |
| 40 | +[Detailed replay documentation](./advanced_reference/commands/autonomy_replay.md) |
| 41 | + |
| 42 | +### autonomy service |
| 43 | +Manage on-chain services. |
| 44 | + |
| 45 | +[Detailed service documentation](./advanced_reference/commands/autonomy_service.md) |
| 46 | + |
| 47 | +## Additional Information |
| 48 | + |
| 49 | +- Most commands support the `--help` flag for detailed usage information |
| 50 | +- Commands that interact with blockchains typically require a key file |
| 51 | +- Many commands have additional options for customization and configuration |
| 52 | +- See the [detailed command reference](./advanced_reference/commands/autonomy_analyse.md) for complete documentation of each command |
| 53 | + |
| 54 | +## Common Options |
| 55 | + |
| 56 | +Many commands share common options: |
| 57 | + |
| 58 | +- `--registry`: Specify the registry to use (default: remote) |
| 59 | +- `--chain`: Select blockchain network (e.g., ethereum, polygon) |
| 60 | +- `--key`: Path to key file for blockchain transactions |
| 61 | +- `--password`: Password for encrypted key files |
| 62 | +- `--help`: Show help message and exit |
0 commit comments