An ai agent that understands natural language instructions for sending ALGO and creating NFTs on the Algorand TestNet, there are not many features for now it's still under developement. I have hard code most of the stuff right now, will be adding AI for intent parsing as the development move forward.
- Natural Language Processing: Send transactions using plain English commands
- Secure Wallet Management: Create and connect wallets with password protection
- NFT Creation: Mint NFTs with customizable properties using natural language
- Permission-Based Security: Explicit transaction approval with password verification
- TestNet Support: Built for Algorand TestNet development and testing
- Clone the repository:
git clone https://github.com/yourusername/alog-intent.git
cd algo-intent
- Install dependencies:
pip install -r requirements.txt
Create a new wallet:
python app.py create-wallet
Connect an existing wallet:
python app.py connect-wallet
List saved wallets:
python app.py list-wallets
Disconnect current wallet:
python app.py disconnect-wallet
Send ALGO using natural language instructions:
NOTE: I have given a default address in this readme so you don't have to worry about finding an address.
python app.py send-intent "Send five algos to K54ZTTHNDB567Q5J5T73CEJCT3Z3MB6VL35PJBIX57KGRWNGZZLH3BK7S4"
The wallet supports various ways to express the same intent:
python app.py send-intent "Transfer 10 algorand tokens to K54ZTTHNDB567Q5J5T73CEJCT3Z3MB6VL35PJBIX57KGRWNGZZLH3BK7S4"
python app.py send-intent "Send 0.5 native algo to K54ZTTHNDB567Q5J5T73CEJCT3Z3MB6VL35PJBIX57KGRWNGZZLH3BK7S4"
python app.py send-intent "Send 1 algorand cryptocurrency to K54ZTTHNDB567Q5J5T73CEJCT3Z3MB6VL35PJBIX57KGRWNGZZLH3BK7S4"
You can also use text numbers:
python app.py send-intent "Send five point five algos to K54ZTTHNDB567Q5J5T73CEJCT3Z3MB6VL35PJBIX57KGRWNGZZLH3BK7S4"
Create NFTs using natural language:
python app.py create-nft-intent "Create an NFT named BlueDragon"
You can specify additional properties:
python app.py create-nft-intent "Create an NFT called MoonCat with description Cute space cat collection"
python app.py create-nft-intent "Mint NFT named PixelArt with supply five"
- Private keys and mnemonics are encrypted with a password
- Each transaction requires explicit approval and password verification
- The application never directly handles unencrypted private keys
- Wallet data is stored in separate encrypted files
app.py
: Main CLI interface with subcommandswallet.py
: Wallet management (creation, connection, signing)intent_parser.py
: Natural language parsing for transactions and NFTstransaction_builder.py
: Builds and submits Algorand transactionsutils.py
: Utility functions for token handling, text processing, etc.
- Python 3.10+
- py-algorand-sdk
- python-dotenv
- cryptography
- Integration with AI for advanced intent parsing
- Support for ASA tokens beyond native ALGO (no support on testnet)
- Web interfaces
- MainNet support with enhanced security