├── .cursorrules ├── .env.example ├── .eslintignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── changelog-config.yml ├── pull_request_template.md └── workflows │ └── changelog.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .windsurfrules ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── HISTORY.md ├── LICENSE ├── README.md ├── character.json ├── client ├── .env.example ├── .eslintrc.json ├── .prettierignore ├── .prettierrc ├── app │ ├── (routes) │ │ └── page.tsx │ ├── _components │ │ ├── DiscordLogin.tsx │ │ ├── GithubLogin.tsx │ │ ├── HelloWorld.tsx │ │ ├── TelegramLogin.tsx │ │ ├── TelegramUser.tsx │ │ └── TwitterLogin.tsx │ ├── claim │ │ ├── [tokenId] │ │ │ ├── page.tsx │ │ │ └── success │ │ │ │ └── page.tsx │ │ └── interstitial │ │ │ └── page.tsx │ ├── layout.tsx │ └── lib │ │ └── auth.ts ├── bin │ ├── validate-env │ ├── www-dev │ └── www-tunnel ├── components.json ├── components │ └── ui │ │ ├── alert.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ └── skeleton.tsx ├── lib │ └── utils.ts ├── next.config.ts ├── package.json ├── postcss.config.js ├── styles │ └── globals.css ├── tailwind.config.ts └── tsconfig.json ├── commands.json ├── lit-actions ├── .env.example ├── .eslintrc.json ├── .prettierignore ├── .prettierrc ├── README.md ├── bin │ ├── build-dev │ └── validate-env ├── esbuild.js ├── package.json ├── shims │ ├── buffer.shim.js │ └── gatedData.shim.js ├── src │ ├── actions │ │ ├── decrypt-action.ts │ │ ├── encrypt-action.ts │ │ └── hello-action.ts │ ├── global.d.ts │ └── index.ts └── tsconfig.json ├── package.json ├── pnpm-workspace.yaml ├── scripts ├── dev └── tunnel ├── server ├── .eslintrc.json ├── .prettierignore ├── .prettierrc ├── bin │ ├── check-x-login │ ├── validate-env │ └── www-dev ├── package.json ├── scripts │ ├── deploy-model.mjs │ └── seed.mjs ├── src │ ├── contracts │ │ ├── abis │ │ │ └── WowXYZERC20.json │ │ └── types │ │ │ ├── WowXYZERC20.ts │ │ │ ├── common.ts │ │ │ ├── factories │ │ │ ├── WowXYZERC20__factory.ts │ │ │ └── index.ts │ │ │ └── index.ts │ ├── index.ts │ ├── plugins │ │ ├── actions │ │ │ ├── collabland.action.ts │ │ │ ├── get-bot-account.action.ts │ │ │ ├── get-chain.action.ts │ │ │ ├── send-eth.action.ts │ │ │ └── send-sol.action.ts │ │ ├── collabland.plugin.ts │ │ ├── gated-storage-plugin │ │ │ ├── actions │ │ │ │ └── gate-action.ts │ │ │ ├── evaluators │ │ │ │ └── knowledge.ts │ │ │ ├── index.ts │ │ │ ├── providers │ │ │ │ └── provider.ts │ │ │ ├── services │ │ │ │ ├── orbis.service.ts │ │ │ │ └── storage.service.ts │ │ │ └── types.ts │ │ ├── providers │ │ │ ├── collabland-solana-wallet-balance.provider.ts │ │ │ └── collabland-wallet-balance.provider.ts │ │ └── types.ts │ ├── routes │ │ ├── discord.ts │ │ ├── github.ts │ │ ├── hello.ts │ │ └── twitter.ts │ ├── services │ │ ├── base.service.ts │ │ ├── cache.service.ts │ │ ├── eliza.service.ts │ │ ├── ngrok.service.ts │ │ ├── telegram.service.ts │ │ └── twitter.service.ts │ ├── types.ts │ └── utils.ts └── tsconfig.json ├── token_metadata.example.jsonc └── vaitalik.json /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.cursorrules -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .next 4 | build 5 | coverage -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/changelog-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.github/changelog-config.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm run lint 2 | git add . -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true -------------------------------------------------------------------------------- /.windsurfrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/.windsurfrules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/README.md -------------------------------------------------------------------------------- /character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/character.json -------------------------------------------------------------------------------- /client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/.env.example -------------------------------------------------------------------------------- /client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/.eslintrc.json -------------------------------------------------------------------------------- /client/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage -------------------------------------------------------------------------------- /client/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/.prettierrc -------------------------------------------------------------------------------- /client/app/(routes)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/(routes)/page.tsx -------------------------------------------------------------------------------- /client/app/_components/DiscordLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/_components/DiscordLogin.tsx -------------------------------------------------------------------------------- /client/app/_components/GithubLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/_components/GithubLogin.tsx -------------------------------------------------------------------------------- /client/app/_components/HelloWorld.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/_components/HelloWorld.tsx -------------------------------------------------------------------------------- /client/app/_components/TelegramLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/_components/TelegramLogin.tsx -------------------------------------------------------------------------------- /client/app/_components/TelegramUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/_components/TelegramUser.tsx -------------------------------------------------------------------------------- /client/app/_components/TwitterLogin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/_components/TwitterLogin.tsx -------------------------------------------------------------------------------- /client/app/claim/[tokenId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/claim/[tokenId]/page.tsx -------------------------------------------------------------------------------- /client/app/claim/[tokenId]/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/claim/[tokenId]/success/page.tsx -------------------------------------------------------------------------------- /client/app/claim/interstitial/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/claim/interstitial/page.tsx -------------------------------------------------------------------------------- /client/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/layout.tsx -------------------------------------------------------------------------------- /client/app/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/app/lib/auth.ts -------------------------------------------------------------------------------- /client/bin/validate-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/bin/validate-env -------------------------------------------------------------------------------- /client/bin/www-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/bin/www-dev -------------------------------------------------------------------------------- /client/bin/www-tunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/bin/www-tunnel -------------------------------------------------------------------------------- /client/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/components.json -------------------------------------------------------------------------------- /client/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/components/ui/alert.tsx -------------------------------------------------------------------------------- /client/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/components/ui/button.tsx -------------------------------------------------------------------------------- /client/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/components/ui/card.tsx -------------------------------------------------------------------------------- /client/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /client/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/lib/utils.ts -------------------------------------------------------------------------------- /client/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/next.config.ts -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/styles/globals.css -------------------------------------------------------------------------------- /client/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/tailwind.config.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/commands.json -------------------------------------------------------------------------------- /lit-actions/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/.env.example -------------------------------------------------------------------------------- /lit-actions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/.eslintrc.json -------------------------------------------------------------------------------- /lit-actions/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | actions/* -------------------------------------------------------------------------------- /lit-actions/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/.prettierrc -------------------------------------------------------------------------------- /lit-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/README.md -------------------------------------------------------------------------------- /lit-actions/bin/build-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/bin/build-dev -------------------------------------------------------------------------------- /lit-actions/bin/validate-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/bin/validate-env -------------------------------------------------------------------------------- /lit-actions/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/esbuild.js -------------------------------------------------------------------------------- /lit-actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/package.json -------------------------------------------------------------------------------- /lit-actions/shims/buffer.shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/shims/buffer.shim.js -------------------------------------------------------------------------------- /lit-actions/shims/gatedData.shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/shims/gatedData.shim.js -------------------------------------------------------------------------------- /lit-actions/src/actions/decrypt-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/src/actions/decrypt-action.ts -------------------------------------------------------------------------------- /lit-actions/src/actions/encrypt-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/src/actions/encrypt-action.ts -------------------------------------------------------------------------------- /lit-actions/src/actions/hello-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/src/actions/hello-action.ts -------------------------------------------------------------------------------- /lit-actions/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/src/global.d.ts -------------------------------------------------------------------------------- /lit-actions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/src/index.ts -------------------------------------------------------------------------------- /lit-actions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/lit-actions/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/scripts/dev -------------------------------------------------------------------------------- /scripts/tunnel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/scripts/tunnel -------------------------------------------------------------------------------- /server/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/.eslintrc.json -------------------------------------------------------------------------------- /server/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/bin/check-x-login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/bin/check-x-login -------------------------------------------------------------------------------- /server/bin/validate-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/bin/validate-env -------------------------------------------------------------------------------- /server/bin/www-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/bin/www-dev -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/package.json -------------------------------------------------------------------------------- /server/scripts/deploy-model.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/scripts/deploy-model.mjs -------------------------------------------------------------------------------- /server/scripts/seed.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/scripts/seed.mjs -------------------------------------------------------------------------------- /server/src/contracts/abis/WowXYZERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/contracts/abis/WowXYZERC20.json -------------------------------------------------------------------------------- /server/src/contracts/types/WowXYZERC20.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/contracts/types/WowXYZERC20.ts -------------------------------------------------------------------------------- /server/src/contracts/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/contracts/types/common.ts -------------------------------------------------------------------------------- /server/src/contracts/types/factories/WowXYZERC20__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/contracts/types/factories/WowXYZERC20__factory.ts -------------------------------------------------------------------------------- /server/src/contracts/types/factories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/contracts/types/factories/index.ts -------------------------------------------------------------------------------- /server/src/contracts/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/contracts/types/index.ts -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/src/plugins/actions/collabland.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/actions/collabland.action.ts -------------------------------------------------------------------------------- /server/src/plugins/actions/get-bot-account.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/actions/get-bot-account.action.ts -------------------------------------------------------------------------------- /server/src/plugins/actions/get-chain.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/actions/get-chain.action.ts -------------------------------------------------------------------------------- /server/src/plugins/actions/send-eth.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/actions/send-eth.action.ts -------------------------------------------------------------------------------- /server/src/plugins/actions/send-sol.action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/actions/send-sol.action.ts -------------------------------------------------------------------------------- /server/src/plugins/collabland.plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/collabland.plugin.ts -------------------------------------------------------------------------------- /server/src/plugins/gated-storage-plugin/actions/gate-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/gated-storage-plugin/actions/gate-action.ts -------------------------------------------------------------------------------- /server/src/plugins/gated-storage-plugin/evaluators/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/gated-storage-plugin/evaluators/knowledge.ts -------------------------------------------------------------------------------- /server/src/plugins/gated-storage-plugin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/gated-storage-plugin/index.ts -------------------------------------------------------------------------------- /server/src/plugins/gated-storage-plugin/providers/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/gated-storage-plugin/providers/provider.ts -------------------------------------------------------------------------------- /server/src/plugins/gated-storage-plugin/services/orbis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/gated-storage-plugin/services/orbis.service.ts -------------------------------------------------------------------------------- /server/src/plugins/gated-storage-plugin/services/storage.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/gated-storage-plugin/services/storage.service.ts -------------------------------------------------------------------------------- /server/src/plugins/gated-storage-plugin/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/gated-storage-plugin/types.ts -------------------------------------------------------------------------------- /server/src/plugins/providers/collabland-solana-wallet-balance.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/providers/collabland-solana-wallet-balance.provider.ts -------------------------------------------------------------------------------- /server/src/plugins/providers/collabland-wallet-balance.provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/providers/collabland-wallet-balance.provider.ts -------------------------------------------------------------------------------- /server/src/plugins/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/plugins/types.ts -------------------------------------------------------------------------------- /server/src/routes/discord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/routes/discord.ts -------------------------------------------------------------------------------- /server/src/routes/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/routes/github.ts -------------------------------------------------------------------------------- /server/src/routes/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/routes/hello.ts -------------------------------------------------------------------------------- /server/src/routes/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/routes/twitter.ts -------------------------------------------------------------------------------- /server/src/services/base.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/services/base.service.ts -------------------------------------------------------------------------------- /server/src/services/cache.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/services/cache.service.ts -------------------------------------------------------------------------------- /server/src/services/eliza.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/services/eliza.service.ts -------------------------------------------------------------------------------- /server/src/services/ngrok.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/services/ngrok.service.ts -------------------------------------------------------------------------------- /server/src/services/telegram.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/services/telegram.service.ts -------------------------------------------------------------------------------- /server/src/services/twitter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/services/twitter.service.ts -------------------------------------------------------------------------------- /server/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/types.ts -------------------------------------------------------------------------------- /server/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/src/utils.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /token_metadata.example.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/token_metadata.example.jsonc -------------------------------------------------------------------------------- /vaitalik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/collabland/AI-Agent-Starter-Kit/HEAD/vaitalik.json --------------------------------------------------------------------------------