intentkit 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of intentkit might be problematic. Click here for more details.
- intentkit-0.5.0/.gitignore +181 -0
- intentkit-0.5.0/LICENSE +21 -0
- intentkit-0.5.0/PKG-INFO +203 -0
- intentkit-0.5.0/README.md +88 -0
- intentkit-0.5.0/pyproject.toml +125 -0
- intentkit-0.5.0/skills/aixbt/README.md +71 -0
- intentkit-0.5.0/skills/carv/README.md +95 -0
- intentkit-0.5.0/skills/chainlist/README.md +38 -0
- intentkit-0.5.0/skills/cookiefun/README.md +121 -0
- intentkit-0.5.0/skills/dapplooker/README.md +92 -0
- intentkit-0.5.0/skills/elfa/README.md +100 -0
- intentkit-0.5.0/skills/enso/README.md +75 -0
- intentkit-0.5.0/skills/github/README.md +63 -0
- intentkit-0.5.0/skills/lifi/README.md +294 -0
- intentkit-0.5.0/skills/moralis/README.md +490 -0
- intentkit-0.5.0/skills/portfolio/README.md +55 -0
- intentkit-0.5.0/skills/tavily/README.md +86 -0
- intentkit-0.5.0/skills/token/README.md +89 -0
- intentkit-0.5.0/skills/venice_image/README.md +119 -0
- intentkit-0.5.0/skills/venice_image/image_enhance/README.md +119 -0
- intentkit-0.5.0/skills/venice_image/image_generation/README.md +144 -0
- intentkit-0.5.0/skills/venice_image/image_upscale/README.md +111 -0
- intentkit-0.5.0/skills/venice_image/image_vision/README.md +112 -0
- intentkit-0.5.0/skills/web_scraper/README.md +82 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# MacOS
|
|
7
|
+
.DS_Store
|
|
8
|
+
|
|
9
|
+
# C extensions
|
|
10
|
+
*.so
|
|
11
|
+
|
|
12
|
+
# Distribution / packaging
|
|
13
|
+
.Python
|
|
14
|
+
build/
|
|
15
|
+
develop-eggs/
|
|
16
|
+
dist/
|
|
17
|
+
downloads/
|
|
18
|
+
eggs/
|
|
19
|
+
.eggs/
|
|
20
|
+
lib/
|
|
21
|
+
lib64/
|
|
22
|
+
parts/
|
|
23
|
+
sdist/
|
|
24
|
+
var/
|
|
25
|
+
wheels/
|
|
26
|
+
share/python-wheels/
|
|
27
|
+
*.egg-info/
|
|
28
|
+
.installed.cfg
|
|
29
|
+
*.egg
|
|
30
|
+
|
|
31
|
+
# PyInstaller
|
|
32
|
+
# Usually these files are written by a python script from a template
|
|
33
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
34
|
+
*.manifest
|
|
35
|
+
*.spec
|
|
36
|
+
|
|
37
|
+
# Installer logs
|
|
38
|
+
pip-log.txt
|
|
39
|
+
pip-delete-this-directory.txt
|
|
40
|
+
|
|
41
|
+
# Unit test / coverage reports
|
|
42
|
+
htmlcov/
|
|
43
|
+
.tox/
|
|
44
|
+
.nox/
|
|
45
|
+
.coverage
|
|
46
|
+
.coverage.*
|
|
47
|
+
.cache
|
|
48
|
+
nosetests.xml
|
|
49
|
+
coverage.xml
|
|
50
|
+
*.cover
|
|
51
|
+
*.py,cover
|
|
52
|
+
.hypothesis/
|
|
53
|
+
.pytest_cache/
|
|
54
|
+
cover/
|
|
55
|
+
|
|
56
|
+
# Translations
|
|
57
|
+
*.mo
|
|
58
|
+
*.pot
|
|
59
|
+
|
|
60
|
+
# Django stuff:
|
|
61
|
+
*.log
|
|
62
|
+
local_settings.py
|
|
63
|
+
db.sqlite3
|
|
64
|
+
db.sqlite3-journal
|
|
65
|
+
|
|
66
|
+
# Flask stuff:
|
|
67
|
+
instance/
|
|
68
|
+
.webassets-cache
|
|
69
|
+
|
|
70
|
+
# Scrapy stuff:
|
|
71
|
+
.scrapy
|
|
72
|
+
|
|
73
|
+
# Sphinx documentation
|
|
74
|
+
docs/_build/
|
|
75
|
+
|
|
76
|
+
# PyBuilder
|
|
77
|
+
.pybuilder/
|
|
78
|
+
target/
|
|
79
|
+
|
|
80
|
+
# Jupyter Notebook
|
|
81
|
+
.ipynb_checkpoints
|
|
82
|
+
|
|
83
|
+
# IPython
|
|
84
|
+
profile_default/
|
|
85
|
+
ipython_config.py
|
|
86
|
+
|
|
87
|
+
# pyenv
|
|
88
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
89
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
90
|
+
# .python-version
|
|
91
|
+
|
|
92
|
+
# pipenv
|
|
93
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
94
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
95
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
96
|
+
# install all needed dependencies.
|
|
97
|
+
#Pipfile.lock
|
|
98
|
+
|
|
99
|
+
# poetry
|
|
100
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
101
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
102
|
+
# commonly ignored for libraries.
|
|
103
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
104
|
+
#poetry.lock
|
|
105
|
+
|
|
106
|
+
# pdm
|
|
107
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
108
|
+
#pdm.lock
|
|
109
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
110
|
+
# in version control.
|
|
111
|
+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
|
112
|
+
.pdm.toml
|
|
113
|
+
.pdm-python
|
|
114
|
+
.pdm-build/
|
|
115
|
+
|
|
116
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
117
|
+
__pypackages__/
|
|
118
|
+
|
|
119
|
+
# Celery stuff
|
|
120
|
+
celerybeat-schedule
|
|
121
|
+
celerybeat.pid
|
|
122
|
+
|
|
123
|
+
# SageMath parsed files
|
|
124
|
+
*.sage.py
|
|
125
|
+
|
|
126
|
+
# Environments
|
|
127
|
+
*.env
|
|
128
|
+
.env
|
|
129
|
+
!example.env
|
|
130
|
+
.venv
|
|
131
|
+
env/
|
|
132
|
+
venv/
|
|
133
|
+
ENV/
|
|
134
|
+
env.bak/
|
|
135
|
+
venv.bak/
|
|
136
|
+
|
|
137
|
+
# Spyder project settings
|
|
138
|
+
.spyderproject
|
|
139
|
+
.spyproject
|
|
140
|
+
|
|
141
|
+
# Rope project settings
|
|
142
|
+
.ropeproject
|
|
143
|
+
|
|
144
|
+
# mkdocs documentation
|
|
145
|
+
/site
|
|
146
|
+
|
|
147
|
+
# mypy
|
|
148
|
+
.mypy_cache/
|
|
149
|
+
.dmypy.json
|
|
150
|
+
dmypy.json
|
|
151
|
+
|
|
152
|
+
# Pyre type checker
|
|
153
|
+
.pyre/
|
|
154
|
+
|
|
155
|
+
# pytype static type analyzer
|
|
156
|
+
.pytype/
|
|
157
|
+
|
|
158
|
+
# Cython debug symbols
|
|
159
|
+
cython_debug/
|
|
160
|
+
|
|
161
|
+
# PyCharm
|
|
162
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
163
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
164
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
165
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
166
|
+
#.idea/
|
|
167
|
+
|
|
168
|
+
# IDE
|
|
169
|
+
.idea
|
|
170
|
+
.vscode
|
|
171
|
+
.trae
|
|
172
|
+
.cursor
|
|
173
|
+
.windsurfrules
|
|
174
|
+
|
|
175
|
+
# web3
|
|
176
|
+
wallet_data.txt
|
|
177
|
+
|
|
178
|
+
# export/import data
|
|
179
|
+
*.response
|
|
180
|
+
scripts/*.yaml
|
|
181
|
+
skills.csv
|
intentkit-0.5.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Crestal Network
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
intentkit-0.5.0/PKG-INFO
ADDED
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: intentkit
|
|
3
|
+
Version: 0.5.0
|
|
4
|
+
Summary: Intent-based AI Agent Platform - Core Package
|
|
5
|
+
Project-URL: Homepage, https://github.com/crestal-network/intentkit
|
|
6
|
+
Project-URL: Repository, https://github.com/crestal-network/intentkit
|
|
7
|
+
Project-URL: Documentation, https://github.com/crestal-network/intentkit/tree/main/docs
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/crestal-network/intentkit/issues
|
|
9
|
+
Author-email: hyacinthus <hyacinthus@gmail.com>
|
|
10
|
+
License: MIT License
|
|
11
|
+
|
|
12
|
+
Copyright (c) 2024 Crestal Network
|
|
13
|
+
|
|
14
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
15
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
16
|
+
in the Software without restriction, including without limitation the rights
|
|
17
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
18
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
19
|
+
furnished to do so, subject to the following conditions:
|
|
20
|
+
|
|
21
|
+
The above copyright notice and this permission notice shall be included in all
|
|
22
|
+
copies or substantial portions of the Software.
|
|
23
|
+
|
|
24
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
25
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
26
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
27
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
28
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
29
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
30
|
+
SOFTWARE.
|
|
31
|
+
License-File: LICENSE
|
|
32
|
+
Keywords: agent,ai,blockchain,crypto,intent
|
|
33
|
+
Classifier: Development Status :: 4 - Beta
|
|
34
|
+
Classifier: Intended Audience :: Developers
|
|
35
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
36
|
+
Classifier: Programming Language :: Python :: 3
|
|
37
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
38
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
39
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
40
|
+
Requires-Python: >=3.12
|
|
41
|
+
Requires-Dist: aiogram>=3.17.0
|
|
42
|
+
Requires-Dist: aiosqlite>=0.21.0
|
|
43
|
+
Requires-Dist: alembic>=1.14.0
|
|
44
|
+
Requires-Dist: anyio>=4.8.0
|
|
45
|
+
Requires-Dist: apscheduler>=3.11.0
|
|
46
|
+
Requires-Dist: asyncpg>=0.30.0
|
|
47
|
+
Requires-Dist: aws-secretsmanager-caching>=1.1.3
|
|
48
|
+
Requires-Dist: beautifulsoup4>=4.13.4
|
|
49
|
+
Requires-Dist: boto3<2.0.0,>=1.37.23
|
|
50
|
+
Requires-Dist: botocore>=1.35.97
|
|
51
|
+
Requires-Dist: coinbase-agentkit-langchain==0.3.0
|
|
52
|
+
Requires-Dist: coinbase-agentkit==0.4.0
|
|
53
|
+
Requires-Dist: cron-validator<2.0.0,>=1.0.8
|
|
54
|
+
Requires-Dist: epyxid>=0.3.3
|
|
55
|
+
Requires-Dist: faiss-cpu>=1.11.0
|
|
56
|
+
Requires-Dist: fastapi>=0.115.8
|
|
57
|
+
Requires-Dist: filetype<2.0.0,>=1.2.0
|
|
58
|
+
Requires-Dist: goat-sdk-adapter-langchain
|
|
59
|
+
Requires-Dist: goat-sdk-plugin-1inch
|
|
60
|
+
Requires-Dist: goat-sdk-plugin-allora
|
|
61
|
+
Requires-Dist: goat-sdk-plugin-coingecko
|
|
62
|
+
Requires-Dist: goat-sdk-plugin-dexscreener
|
|
63
|
+
Requires-Dist: goat-sdk-plugin-erc20
|
|
64
|
+
Requires-Dist: goat-sdk-plugin-farcaster
|
|
65
|
+
Requires-Dist: goat-sdk-plugin-jsonrpc
|
|
66
|
+
Requires-Dist: goat-sdk-plugin-jupiter
|
|
67
|
+
Requires-Dist: goat-sdk-plugin-nansen
|
|
68
|
+
Requires-Dist: goat-sdk-plugin-opensea
|
|
69
|
+
Requires-Dist: goat-sdk-plugin-rugcheck
|
|
70
|
+
Requires-Dist: goat-sdk-plugin-spl-token
|
|
71
|
+
Requires-Dist: goat-sdk-plugin-superfluid
|
|
72
|
+
Requires-Dist: goat-sdk-plugin-uniswap
|
|
73
|
+
Requires-Dist: goat-sdk-wallet-crossmint
|
|
74
|
+
Requires-Dist: goat-sdk-wallet-evm
|
|
75
|
+
Requires-Dist: goat-sdk-wallet-solana
|
|
76
|
+
Requires-Dist: goat-sdk-wallet-web3
|
|
77
|
+
Requires-Dist: goat-sdk>=0.1.4
|
|
78
|
+
Requires-Dist: gunicorn>=23.0.0
|
|
79
|
+
Requires-Dist: jsonref>=1.1.0
|
|
80
|
+
Requires-Dist: langchain-community>=0.3.19
|
|
81
|
+
Requires-Dist: langchain-core>=0.3.43
|
|
82
|
+
Requires-Dist: langchain-mcp-adapters>=0.0.11
|
|
83
|
+
Requires-Dist: langchain-openai>=0.3.8
|
|
84
|
+
Requires-Dist: langchain-postgres>=0.0.13
|
|
85
|
+
Requires-Dist: langchain-text-splitters>=0.3.8
|
|
86
|
+
Requires-Dist: langchain-xai>=0.2.1
|
|
87
|
+
Requires-Dist: langchain<0.4.0,>=0.3.25
|
|
88
|
+
Requires-Dist: langgraph-checkpoint-postgres>=2.0.16
|
|
89
|
+
Requires-Dist: langgraph-checkpoint>=2.0.18
|
|
90
|
+
Requires-Dist: langgraph-prebuilt>=0.5.1
|
|
91
|
+
Requires-Dist: langgraph>=0.4.3
|
|
92
|
+
Requires-Dist: langmem>=0.0.27
|
|
93
|
+
Requires-Dist: mypy-boto3-s3<2.0.0,>=1.37.24
|
|
94
|
+
Requires-Dist: openai>=1.59.6
|
|
95
|
+
Requires-Dist: pgvector>=0.3.6
|
|
96
|
+
Requires-Dist: pillow<12.0.0,>=11.1.0
|
|
97
|
+
Requires-Dist: psycopg-pool>=3.2.4
|
|
98
|
+
Requires-Dist: psycopg2-binary<3.0.0,>=2.9.10
|
|
99
|
+
Requires-Dist: psycopg>=3.2.3
|
|
100
|
+
Requires-Dist: pydantic-settings>=2.8.1
|
|
101
|
+
Requires-Dist: pydantic>=2.10.6
|
|
102
|
+
Requires-Dist: python-dotenv>=1.0.1
|
|
103
|
+
Requires-Dist: python-multipart>=0.0.20
|
|
104
|
+
Requires-Dist: pytz>=2025.1
|
|
105
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
106
|
+
Requires-Dist: redis<7.0.0,>=5.2.1
|
|
107
|
+
Requires-Dist: requests>=2.32.3
|
|
108
|
+
Requires-Dist: sentry-sdk[fastapi]>=2.20.0
|
|
109
|
+
Requires-Dist: slack-sdk>=3.34.0
|
|
110
|
+
Requires-Dist: sqlalchemy[asyncio]>=2.0.37
|
|
111
|
+
Requires-Dist: telegramify-markdown<0.6.0,>=0.5.0
|
|
112
|
+
Requires-Dist: tweepy[async]>=4.15.0
|
|
113
|
+
Requires-Dist: uvicorn<1.0.0,>=0.34.0
|
|
114
|
+
Description-Content-Type: text/markdown
|
|
115
|
+
|
|
116
|
+
# IntentKit
|
|
117
|
+
|
|
118
|
+
IntentKit is a powerful intent-based AI agent platform that enables developers to build sophisticated AI agents with blockchain and cryptocurrency capabilities.
|
|
119
|
+
|
|
120
|
+
## Features
|
|
121
|
+
|
|
122
|
+
- **Intent-based Architecture**: Build agents that understand and execute user intents
|
|
123
|
+
- **Blockchain Integration**: Native support for multiple blockchain networks
|
|
124
|
+
- **Cryptocurrency Operations**: Built-in tools for DeFi, trading, and token operations
|
|
125
|
+
- **Extensible Skills System**: Modular skill system with 30+ pre-built skills
|
|
126
|
+
- **Multi-platform Support**: Telegram, Twitter, Slack, and API integrations
|
|
127
|
+
- **Advanced AI Capabilities**: Powered by LangChain and LangGraph
|
|
128
|
+
|
|
129
|
+
## Installation
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
pip install intentkit
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## Development
|
|
136
|
+
|
|
137
|
+
To build the package locally:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# Build both source and wheel distributions
|
|
141
|
+
uv build
|
|
142
|
+
|
|
143
|
+
# Build only wheel
|
|
144
|
+
uv build --wheel
|
|
145
|
+
|
|
146
|
+
# Build only source distribution
|
|
147
|
+
uv build --sdist
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
To publish to PyPI:
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
# Build and publish to PyPI
|
|
154
|
+
uv build
|
|
155
|
+
uv publish
|
|
156
|
+
|
|
157
|
+
# Publish to Test PyPI
|
|
158
|
+
uv publish --publish-url https://test.pypi.org/legacy/
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
> **Note**: This package uses `hatchling` as the build backend with `uv` for dependency management and publishing.
|
|
162
|
+
|
|
163
|
+
## Quick Start
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
from intentkit.core.agent import Agent
|
|
167
|
+
from intentkit.config.config import Config
|
|
168
|
+
|
|
169
|
+
# Initialize configuration
|
|
170
|
+
config = Config()
|
|
171
|
+
|
|
172
|
+
# Create an agent
|
|
173
|
+
agent = Agent(config=config)
|
|
174
|
+
|
|
175
|
+
# Your agent is ready to use!
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
## Skills
|
|
179
|
+
|
|
180
|
+
IntentKit comes with 30+ pre-built skills including:
|
|
181
|
+
|
|
182
|
+
- **DeFi**: Uniswap, 1inch, Enso, LiFi
|
|
183
|
+
- **Data**: DexScreener, CoinGecko, DefiLlama, CryptoCompare
|
|
184
|
+
- **Social**: Twitter, Telegram, Slack
|
|
185
|
+
- **Blockchain**: CDP, Moralis, various wallet integrations
|
|
186
|
+
- **AI**: OpenAI, Heurist, Venice AI
|
|
187
|
+
- **And many more...**
|
|
188
|
+
|
|
189
|
+
## Documentation
|
|
190
|
+
|
|
191
|
+
For detailed documentation, examples, and guides, visit our [documentation](https://github.com/crestal-network/intentkit/tree/main/docs).
|
|
192
|
+
|
|
193
|
+
## Contributing
|
|
194
|
+
|
|
195
|
+
We welcome contributions! Please see our [Contributing Guide](https://github.com/crestal-network/intentkit/blob/main/CONTRIBUTING.md) for details.
|
|
196
|
+
|
|
197
|
+
## License
|
|
198
|
+
|
|
199
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
200
|
+
|
|
201
|
+
## Support
|
|
202
|
+
|
|
203
|
+
For support, please open an issue on our [GitHub repository](https://github.com/crestal-network/intentkit/issues).
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# IntentKit
|
|
2
|
+
|
|
3
|
+
IntentKit is a powerful intent-based AI agent platform that enables developers to build sophisticated AI agents with blockchain and cryptocurrency capabilities.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **Intent-based Architecture**: Build agents that understand and execute user intents
|
|
8
|
+
- **Blockchain Integration**: Native support for multiple blockchain networks
|
|
9
|
+
- **Cryptocurrency Operations**: Built-in tools for DeFi, trading, and token operations
|
|
10
|
+
- **Extensible Skills System**: Modular skill system with 30+ pre-built skills
|
|
11
|
+
- **Multi-platform Support**: Telegram, Twitter, Slack, and API integrations
|
|
12
|
+
- **Advanced AI Capabilities**: Powered by LangChain and LangGraph
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install intentkit
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Development
|
|
21
|
+
|
|
22
|
+
To build the package locally:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Build both source and wheel distributions
|
|
26
|
+
uv build
|
|
27
|
+
|
|
28
|
+
# Build only wheel
|
|
29
|
+
uv build --wheel
|
|
30
|
+
|
|
31
|
+
# Build only source distribution
|
|
32
|
+
uv build --sdist
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
To publish to PyPI:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
# Build and publish to PyPI
|
|
39
|
+
uv build
|
|
40
|
+
uv publish
|
|
41
|
+
|
|
42
|
+
# Publish to Test PyPI
|
|
43
|
+
uv publish --publish-url https://test.pypi.org/legacy/
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
> **Note**: This package uses `hatchling` as the build backend with `uv` for dependency management and publishing.
|
|
47
|
+
|
|
48
|
+
## Quick Start
|
|
49
|
+
|
|
50
|
+
```python
|
|
51
|
+
from intentkit.core.agent import Agent
|
|
52
|
+
from intentkit.config.config import Config
|
|
53
|
+
|
|
54
|
+
# Initialize configuration
|
|
55
|
+
config = Config()
|
|
56
|
+
|
|
57
|
+
# Create an agent
|
|
58
|
+
agent = Agent(config=config)
|
|
59
|
+
|
|
60
|
+
# Your agent is ready to use!
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Skills
|
|
64
|
+
|
|
65
|
+
IntentKit comes with 30+ pre-built skills including:
|
|
66
|
+
|
|
67
|
+
- **DeFi**: Uniswap, 1inch, Enso, LiFi
|
|
68
|
+
- **Data**: DexScreener, CoinGecko, DefiLlama, CryptoCompare
|
|
69
|
+
- **Social**: Twitter, Telegram, Slack
|
|
70
|
+
- **Blockchain**: CDP, Moralis, various wallet integrations
|
|
71
|
+
- **AI**: OpenAI, Heurist, Venice AI
|
|
72
|
+
- **And many more...**
|
|
73
|
+
|
|
74
|
+
## Documentation
|
|
75
|
+
|
|
76
|
+
For detailed documentation, examples, and guides, visit our [documentation](https://github.com/crestal-network/intentkit/tree/main/docs).
|
|
77
|
+
|
|
78
|
+
## Contributing
|
|
79
|
+
|
|
80
|
+
We welcome contributions! Please see our [Contributing Guide](https://github.com/crestal-network/intentkit/blob/main/CONTRIBUTING.md) for details.
|
|
81
|
+
|
|
82
|
+
## License
|
|
83
|
+
|
|
84
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
85
|
+
|
|
86
|
+
## Support
|
|
87
|
+
|
|
88
|
+
For support, please open an issue on our [GitHub repository](https://github.com/crestal-network/intentkit/issues).
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "intentkit"
|
|
3
|
+
version = "0.5.0"
|
|
4
|
+
description = "Intent-based AI Agent Platform - Core Package"
|
|
5
|
+
authors = [{ name = "hyacinthus", email = "hyacinthus@gmail.com" }]
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
license = { file = "LICENSE" }
|
|
9
|
+
keywords = ["ai", "agent", "intent", "blockchain", "crypto"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 4 - Beta",
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"Programming Language :: Python :: 3.12",
|
|
16
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
17
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
18
|
+
]
|
|
19
|
+
dependencies = [
|
|
20
|
+
"aiogram>=3.17.0",
|
|
21
|
+
"aiosqlite>=0.21.0",
|
|
22
|
+
"alembic>=1.14.0",
|
|
23
|
+
"anyio>=4.8.0",
|
|
24
|
+
"APScheduler>=3.11.0",
|
|
25
|
+
"asyncpg>=0.30.0",
|
|
26
|
+
"aws-secretsmanager-caching>=1.1.3",
|
|
27
|
+
"beautifulsoup4>=4.13.4",
|
|
28
|
+
"boto3>=1.37.23,<2.0.0",
|
|
29
|
+
"botocore>=1.35.97",
|
|
30
|
+
"coinbase-agentkit==0.4.0",
|
|
31
|
+
"coinbase-agentkit-langchain==0.3.0",
|
|
32
|
+
"cron-validator>=1.0.8,<2.0.0",
|
|
33
|
+
"epyxid>=0.3.3",
|
|
34
|
+
"faiss-cpu>=1.11.0",
|
|
35
|
+
"fastapi>=0.115.8",
|
|
36
|
+
"filetype>=1.2.0,<2.0.0",
|
|
37
|
+
"goat-sdk>=0.1.4",
|
|
38
|
+
"goat-sdk-adapter-langchain",
|
|
39
|
+
"goat-sdk-plugin-1inch",
|
|
40
|
+
"goat-sdk-plugin-allora",
|
|
41
|
+
"goat-sdk-plugin-coingecko",
|
|
42
|
+
"goat-sdk-plugin-dexscreener",
|
|
43
|
+
"goat-sdk-plugin-erc20",
|
|
44
|
+
"goat-sdk-plugin-farcaster",
|
|
45
|
+
"goat-sdk-plugin-jsonrpc",
|
|
46
|
+
"goat-sdk-plugin-jupiter",
|
|
47
|
+
"goat-sdk-plugin-nansen",
|
|
48
|
+
"goat-sdk-plugin-opensea",
|
|
49
|
+
"goat-sdk-plugin-rugcheck",
|
|
50
|
+
"goat-sdk-plugin-spl-token",
|
|
51
|
+
"goat-sdk-plugin-superfluid",
|
|
52
|
+
"goat-sdk-plugin-uniswap",
|
|
53
|
+
"goat-sdk-wallet-crossmint",
|
|
54
|
+
"goat-sdk-wallet-evm",
|
|
55
|
+
"goat-sdk-wallet-solana",
|
|
56
|
+
"goat-sdk-wallet-web3",
|
|
57
|
+
"gunicorn>=23.0.0",
|
|
58
|
+
"jsonref>=1.1.0",
|
|
59
|
+
"langchain>=0.3.25,<0.4.0",
|
|
60
|
+
"langchain-community>=0.3.19",
|
|
61
|
+
"langchain-core>=0.3.43",
|
|
62
|
+
"langchain-mcp-adapters>=0.0.11",
|
|
63
|
+
"langchain-openai>=0.3.8",
|
|
64
|
+
"langchain-postgres>=0.0.13",
|
|
65
|
+
"langchain-text-splitters>=0.3.8",
|
|
66
|
+
"langchain-xai>=0.2.1",
|
|
67
|
+
"langgraph>=0.4.3",
|
|
68
|
+
"langgraph-checkpoint>=2.0.18",
|
|
69
|
+
"langgraph-checkpoint-postgres>=2.0.16",
|
|
70
|
+
"langgraph-prebuilt>=0.5.1",
|
|
71
|
+
"langmem>=0.0.27",
|
|
72
|
+
"mypy-boto3-s3>=1.37.24,<2.0.0",
|
|
73
|
+
"openai>=1.59.6",
|
|
74
|
+
"pgvector>=0.3.6",
|
|
75
|
+
"pillow>=11.1.0,<12.0.0",
|
|
76
|
+
"psycopg>=3.2.3",
|
|
77
|
+
"psycopg-pool>=3.2.4",
|
|
78
|
+
"psycopg2-binary>=2.9.10,<3.0.0",
|
|
79
|
+
"pydantic>=2.10.6",
|
|
80
|
+
"pydantic-settings>=2.8.1",
|
|
81
|
+
"python-dotenv>=1.0.1",
|
|
82
|
+
"python-multipart>=0.0.20",
|
|
83
|
+
"pytz>=2025.1",
|
|
84
|
+
"pyyaml>=6.0.2",
|
|
85
|
+
"redis>=5.2.1,<7.0.0",
|
|
86
|
+
"requests>=2.32.3",
|
|
87
|
+
"sentry-sdk[fastapi]>=2.20.0",
|
|
88
|
+
"slack-sdk>=3.34.0",
|
|
89
|
+
"sqlalchemy[asyncio]>=2.0.37",
|
|
90
|
+
"telegramify-markdown>=0.5.0,<0.6.0",
|
|
91
|
+
"tweepy[async]>=4.15.0",
|
|
92
|
+
"uvicorn>=0.34.0,<1.0.0",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[project.urls]
|
|
96
|
+
Homepage = "https://github.com/crestal-network/intentkit"
|
|
97
|
+
Repository = "https://github.com/crestal-network/intentkit"
|
|
98
|
+
Documentation = "https://github.com/crestal-network/intentkit/tree/main/docs"
|
|
99
|
+
"Bug Tracker" = "https://github.com/crestal-network/intentkit/issues"
|
|
100
|
+
|
|
101
|
+
[dependency-groups]
|
|
102
|
+
dev = [
|
|
103
|
+
"ruff>=0.11.9,<0.12",
|
|
104
|
+
"jsonschema>=4.21.1,<5",
|
|
105
|
+
"pytest>=7.0.0",
|
|
106
|
+
"pytest-asyncio>=0.21.0",
|
|
107
|
+
]
|
|
108
|
+
|
|
109
|
+
[build-system]
|
|
110
|
+
requires = ["hatchling"]
|
|
111
|
+
build-backend = "hatchling.build"
|
|
112
|
+
|
|
113
|
+
[tool.hatch.build.targets.wheel]
|
|
114
|
+
packages = ["intentkit"]
|
|
115
|
+
|
|
116
|
+
[tool.hatch.build.targets.sdist]
|
|
117
|
+
include = [
|
|
118
|
+
"intentkit/",
|
|
119
|
+
"README.md",
|
|
120
|
+
"LICENSE",
|
|
121
|
+
"pyproject.toml"
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[tool.ruff.lint]
|
|
125
|
+
extend-select = ["I"]
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# AIXBT Skill
|
|
2
|
+
|
|
3
|
+
This skill provides access to cryptocurrency project data and analytics through the AIXBT API.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Search for cryptocurrency projects by name, ticker, or blockchain
|
|
8
|
+
- Get detailed analysis and information about crypto projects
|
|
9
|
+
- Filter projects by minimum score
|
|
10
|
+
- View recent project updates and developments
|
|
11
|
+
- Access project contact information and social media handles
|
|
12
|
+
- Special "alpha" trigger for direct access to crypto research
|
|
13
|
+
|
|
14
|
+
## Available Skills
|
|
15
|
+
|
|
16
|
+
### aixbt_projects
|
|
17
|
+
|
|
18
|
+
Searches for cryptocurrency projects and retrieves detailed information about them.
|
|
19
|
+
|
|
20
|
+
#### Special Trigger
|
|
21
|
+
|
|
22
|
+
This skill has a special trigger word: **"alpha"**
|
|
23
|
+
|
|
24
|
+
When a user mentions the word "alpha" anywhere in their message, the AIXBT skill will be automatically triggered. This works with phrases like:
|
|
25
|
+
- "Show me some alpha"
|
|
26
|
+
- "What's the latest alpha on crypto?"
|
|
27
|
+
- "Give me alpha on Bitcoin"
|
|
28
|
+
- "I'm looking for alpha in DeFi projects"
|
|
29
|
+
- Any other message containing the word "alpha"
|
|
30
|
+
|
|
31
|
+
This gives users a convenient way to access crypto research data just by mentioning "alpha" in their questions or requests.
|
|
32
|
+
|
|
33
|
+
#### Parameters
|
|
34
|
+
|
|
35
|
+
| Name | Type | Description | Required | Default |
|
|
36
|
+
|------|------|-------------|----------|---------|
|
|
37
|
+
| limit | integer | Number of projects to return (max 50) | No | 10 |
|
|
38
|
+
| name | string | Filter projects by name (case-insensitive regex match) | No | null |
|
|
39
|
+
| ticker | string | Filter projects by ticker symbol (case-insensitive match) | No | null |
|
|
40
|
+
| xHandle | string | Filter projects by X/Twitter handle | No | null |
|
|
41
|
+
| minScore | number | Minimum score threshold | No | null |
|
|
42
|
+
| chain | string | Filter projects by blockchain | No | null |
|
|
43
|
+
|
|
44
|
+
## Example Usage
|
|
45
|
+
|
|
46
|
+
### "Alpha" Trigger Examples
|
|
47
|
+
|
|
48
|
+
**User:** "Show me some alpha"
|
|
49
|
+
|
|
50
|
+
**Agent:** *Uses the aixbt_projects skill to search for trending cryptocurrency projects and provides comprehensive information about them.*
|
|
51
|
+
|
|
52
|
+
**User:** "What's the latest alpha on Bitcoin?"
|
|
53
|
+
|
|
54
|
+
**Agent:** *Uses the aixbt_projects skill to search specifically for Bitcoin and provides detailed information.*
|
|
55
|
+
|
|
56
|
+
### Standard Query
|
|
57
|
+
|
|
58
|
+
When a user asks about a cryptocurrency project:
|
|
59
|
+
|
|
60
|
+
**User:** "Tell me about the Bitcoin project"
|
|
61
|
+
|
|
62
|
+
**Agent:** *Uses the aixbt_projects skill to search for "bitcoin" and provides information including:*
|
|
63
|
+
- Project score and analysis
|
|
64
|
+
- Recent project updates
|
|
65
|
+
- Social media information
|
|
66
|
+
- Blockchain and token details
|
|
67
|
+
|
|
68
|
+
## Links
|
|
69
|
+
|
|
70
|
+
- [AIXBT Website](https://aixbt.tech/)
|
|
71
|
+
- [API Documentation](https://api.aixbt.tech/v1/docs/)
|