├── .github └── workflows │ ├── build.yaml │ └── code-quality.yml ├── .gitignore ├── .gitmodules ├── .prettierrc ├── .yarn └── releases │ └── yarn-4.8.1.cjs ├── .yarnrc.yml ├── LICENSE ├── README.md ├── agent-contracts ├── .env.sample ├── .forgeignore ├── .github │ └── workflows │ │ └── test.yml ├── .gitignore ├── README.md ├── broadcast │ ├── AgentMemory.s.sol │ │ ├── 870 │ │ │ ├── run-1754340479.json │ │ │ └── run-latest.json │ │ └── 490000 │ │ │ ├── run-1733773289.json │ │ │ ├── run-1733773734.json │ │ │ ├── run-1734654376.json │ │ │ └── run-latest.json │ ├── AutonomysPackageRegistry.s.sol │ │ ├── 870 │ │ │ ├── run-1754340812.json │ │ │ └── run-latest.json │ │ └── 490000 │ │ │ ├── run-1742442369.json │ │ │ └── run-latest.json │ └── DeployAutonomysPackageRegistry.s.sol │ │ └── 490000 │ │ ├── run-1740880939.json │ │ ├── run-1740880997.json │ │ ├── run-1740932802.json │ │ ├── run-1742422824.json │ │ └── run-latest.json ├── foundry.toml ├── remappings.txt ├── script │ ├── AgentMemory.s.sol │ ├── AutonomysAgents.s.sol │ ├── AutonomysPackageRegistry.s.sol │ ├── deploy.sh │ └── verify.sh ├── src │ ├── AgentMemory.sol │ ├── AutonomysAgents.sol │ └── AutonomysPackageRegistry.sol └── test │ ├── AgentMemory.t.sol │ ├── AutonomysAgents.t.sol │ └── AutonomysPackageRegistry.t.sol ├── agent-memory-viewer ├── backend │ ├── .env.sample │ ├── README.md │ ├── package.json │ ├── src │ │ ├── abi │ │ │ └── memory.ts │ │ ├── config │ │ │ ├── agents.example.yaml │ │ │ ├── agents.yaml │ │ │ ├── env.validation.ts │ │ │ └── index.ts │ │ ├── db │ │ │ ├── index.ts │ │ │ ├── init.ts │ │ │ ├── migrations │ │ │ │ ├── 001_add_agent_name.sql │ │ │ │ └── 002_add_path_cache.sql │ │ │ ├── postgres │ │ │ │ └── connection.ts │ │ │ ├── repositories │ │ │ │ └── memoryRepository.ts │ │ │ ├── schema.sql │ │ │ ├── services │ │ │ │ └── pathAnalyzer.ts │ │ │ └── types │ │ │ │ └── models.ts │ │ ├── index.ts │ │ ├── middleware │ │ │ ├── errorHandler.ts │ │ │ ├── requestLogger.ts │ │ │ └── security.ts │ │ ├── routes │ │ │ ├── agents.ts │ │ │ ├── health.ts │ │ │ ├── index.ts │ │ │ └── memories.ts │ │ ├── scripts │ │ │ └── migrate.ts │ │ ├── server.ts │ │ ├── utils │ │ │ ├── agentMemoryContract.ts │ │ │ ├── backgroundProcessor.ts │ │ │ ├── dsn.ts │ │ │ ├── llm │ │ │ │ └── openai.ts │ │ │ ├── logger.ts │ │ │ ├── resurrection.ts │ │ │ └── validation │ │ │ │ ├── memory.ts │ │ │ │ └── signature.ts │ │ └── websocket.ts │ ├── tsconfig.json │ └── yarn.lock └── frontend │ ├── .env.sample │ ├── .eslintrc.json │ ├── .prettierrc │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ ├── agents │ │ ├── agreemint.jpg │ │ ├── argumint.jpg │ │ └── hindsight2157.jpg │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── autonomys-logo.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png │ ├── src │ ├── App.tsx │ ├── api │ │ └── client.ts │ ├── components │ │ ├── Analytics.tsx │ │ ├── ExperienceCard.tsx │ │ ├── Footer.tsx │ │ ├── Navbar.tsx │ │ ├── Pagination.tsx │ │ ├── SearchBar.tsx │ │ └── StatusFilter.tsx │ ├── env.d.ts │ ├── hooks │ │ └── useWebSocket.ts │ ├── main.tsx │ ├── pages │ │ ├── DSNViewer.tsx │ │ └── MemoryViewer.tsx │ ├── styles │ │ ├── components │ │ │ ├── button.ts │ │ │ ├── card.ts │ │ │ ├── label.ts │ │ │ ├── link.ts │ │ │ ├── select.ts │ │ │ └── text.ts │ │ ├── index.ts │ │ └── theme │ │ │ └── colors.ts │ ├── theme.ts │ ├── types │ │ └── enums.ts │ └── utils │ │ ├── statusColors.ts │ │ ├── timeUtils.ts │ │ └── typeUtils.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ └── yarn.lock ├── agent-package-manager ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── src │ ├── commands │ │ ├── clean.ts │ │ ├── config.ts │ │ ├── init.ts │ │ ├── install.ts │ │ ├── publish.ts │ │ ├── search.ts │ │ ├── tool.ts │ │ └── update.ts │ ├── config │ │ ├── default.ts │ │ ├── index.ts │ │ └── prompts.ts │ ├── index.ts │ ├── types │ │ └── index.ts │ └── utils │ │ ├── autoDrive │ │ ├── autoDriveClient.ts │ │ └── gatewayClient.ts │ │ ├── blockchain │ │ ├── AutonomysPackageRegistry.abi.json │ │ ├── contractClient.ts │ │ ├── errorHandler.ts │ │ ├── types.ts │ │ └── utils.ts │ │ ├── commands │ │ ├── init │ │ │ └── index.ts │ │ ├── install │ │ │ ├── toolInstall.ts │ │ │ └── utils.ts │ │ └── registry │ │ │ ├── toolInquiry.ts │ │ │ ├── toolPublish.ts │ │ │ └── updateRegistry.ts │ │ ├── credential │ │ └── index.ts │ │ ├── npm │ │ └── index.ts │ │ ├── shared │ │ └── path.ts │ │ ├── update │ │ └── index.ts │ │ ├── validation.ts │ │ └── vault │ │ └── keychain.ts ├── tsconfig.json └── yarn.lock ├── characters └── character.example │ └── config │ ├── .env.example │ ├── character.example.yaml │ └── config.example.yaml ├── core ├── .npmignore ├── CHANGELOG.md ├── README.md ├── package.json ├── rollup.config.js ├── src │ ├── agents │ │ ├── chat │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── nodes.ts │ │ │ ├── nodes │ │ │ │ ├── executor.ts │ │ │ │ ├── input.ts │ │ │ │ └── prompt.ts │ │ │ ├── state.ts │ │ │ ├── tools.ts │ │ │ ├── types.ts │ │ │ └── workflow.ts │ │ ├── index.ts │ │ ├── tools │ │ │ ├── agentExperiences │ │ │ │ └── index.ts │ │ │ ├── arxiv │ │ │ │ └── index.ts │ │ │ ├── evm │ │ │ │ └── index.ts │ │ │ ├── firecrawl │ │ │ │ └── index.ts │ │ │ ├── github │ │ │ │ ├── activity.ts │ │ │ │ ├── git.ts │ │ │ │ ├── index.ts │ │ │ │ ├── issues.ts │ │ │ │ ├── prs.ts │ │ │ │ ├── repos.ts │ │ │ │ ├── users.ts │ │ │ │ └── utils │ │ │ │ │ ├── activity.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── git.ts │ │ │ │ │ ├── issues.ts │ │ │ │ │ ├── prs.ts │ │ │ │ │ ├── reactions.ts │ │ │ │ │ ├── repos.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── users.ts │ │ │ ├── index.ts │ │ │ ├── mcp-tool │ │ │ │ └── index.ts │ │ │ ├── notion-mcp │ │ │ │ └── index.ts │ │ │ ├── notion │ │ │ │ ├── client.ts │ │ │ │ └── index.ts │ │ │ ├── scheduler │ │ │ │ └── index.ts │ │ │ ├── slack │ │ │ │ ├── bookmark.ts │ │ │ │ ├── canvas.ts │ │ │ │ ├── channel.ts │ │ │ │ ├── chat.ts │ │ │ │ ├── index.ts │ │ │ │ ├── pin.ts │ │ │ │ ├── reaction.ts │ │ │ │ ├── user.ts │ │ │ │ └── utils │ │ │ │ │ ├── bookmark.ts │ │ │ │ │ ├── canvas.ts │ │ │ │ │ ├── channel.ts │ │ │ │ │ ├── chat.ts │ │ │ │ │ ├── client.ts │ │ │ │ │ ├── pin.ts │ │ │ │ │ ├── reaction.ts │ │ │ │ │ ├── types.ts │ │ │ │ │ └── user.ts │ │ │ ├── stopWorkflow │ │ │ │ └── index.ts │ │ │ ├── taurusFaucet │ │ │ │ ├── abi │ │ │ │ │ └── faucet.ts │ │ │ │ ├── index.ts │ │ │ │ └── taurusFaucet.ts │ │ │ ├── thinking │ │ │ │ └── index.ts │ │ │ ├── time │ │ │ │ └── index.ts │ │ │ ├── twitter │ │ │ │ ├── auth.ts │ │ │ │ ├── client.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ └── utils.ts │ │ │ ├── webSearch │ │ │ │ └── index.ts │ │ │ └── webhook │ │ │ │ └── index.ts │ │ └── workflows │ │ │ ├── github │ │ │ ├── githubAgent.ts │ │ │ ├── index.ts │ │ │ ├── prompts.ts │ │ │ └── types.ts │ │ │ ├── index.ts │ │ │ ├── orchestrator │ │ │ ├── cleanMessages.ts │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── nodes.ts │ │ │ ├── nodes │ │ │ │ ├── finishWorkflowNode.ts │ │ │ │ ├── finishWorkflowPrompt.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inputNode.ts │ │ │ │ ├── inputPrompt.ts │ │ │ │ ├── messageSummaryNode.ts │ │ │ │ ├── messageSummaryPrompt.ts │ │ │ │ ├── toolExecutionNode.ts │ │ │ │ └── utils.ts │ │ │ ├── orchestratorWorkflow.ts │ │ │ ├── prompts.ts │ │ │ ├── scheduler │ │ │ │ ├── config.ts │ │ │ │ ├── db │ │ │ │ │ ├── dbController.ts │ │ │ │ │ ├── schedulerDb.ts │ │ │ │ │ └── schema.ts │ │ │ │ ├── index.ts │ │ │ │ ├── taskExecutor.ts │ │ │ │ ├── taskQueue.ts │ │ │ │ └── types.ts │ │ │ ├── state.ts │ │ │ ├── tools.ts │ │ │ └── types.ts │ │ │ ├── registration.ts │ │ │ ├── slack │ │ │ ├── index.ts │ │ │ ├── prompts.ts │ │ │ ├── slackAgent.ts │ │ │ └── types.ts │ │ │ ├── twitter │ │ │ ├── cleanMessages.ts │ │ │ ├── index.ts │ │ │ ├── prompts.ts │ │ │ ├── twitterAgent.ts │ │ │ └── types.ts │ │ │ └── utils.ts │ ├── api │ │ ├── controller │ │ │ ├── CharacterController.ts │ │ │ ├── ChatController.ts │ │ │ ├── LogsController.ts │ │ │ ├── NamespaceController.ts │ │ │ ├── StateController.ts │ │ │ ├── StatusController.ts │ │ │ ├── TaskController.ts │ │ │ ├── WebhookController.ts │ │ │ ├── WorkflowController.ts │ │ │ └── prompt │ │ │ │ └── ChatPrompts.ts │ │ ├── index.ts │ │ ├── middleware │ │ │ ├── auth.ts │ │ │ └── cors.ts │ │ ├── routes │ │ │ ├── character.ts │ │ │ ├── chat.ts │ │ │ ├── index.ts │ │ │ ├── logs.ts │ │ │ ├── namespaces.ts │ │ │ ├── status.ts │ │ │ ├── tasks.ts │ │ │ ├── webhooks.ts │ │ │ └── workflows.ts │ │ ├── server.ts │ │ └── types.ts │ ├── blockchain │ │ └── agentExperience │ │ │ ├── abi │ │ │ └── memory.ts │ │ │ ├── autoDrive.ts │ │ │ ├── cidManager.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ ├── config │ │ ├── characters.ts │ │ ├── config.ts │ │ ├── index.ts │ │ ├── schema.ts │ │ └── types.ts │ ├── index.ts │ ├── services │ │ ├── index.ts │ │ ├── llm │ │ │ ├── factory.ts │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── sqlite │ │ │ ├── SqliteDB.ts │ │ │ └── index.ts │ │ └── vectorDb │ │ │ ├── VectorDB.ts │ │ │ ├── index.ts │ │ │ ├── types │ │ │ └── vectorlite.d.ts │ │ │ └── vectorDBPool.ts │ └── utils │ │ ├── args.ts │ │ ├── index.ts │ │ ├── logger.ts │ │ ├── paths.ts │ │ ├── retry.ts │ │ └── utils.ts └── tsconfig.json ├── docker └── web-cli │ ├── .dockerignore │ ├── Dockerfile │ ├── docker-compose.yml │ └── entrypoint.sh ├── eslint.config.js ├── examples ├── githubAgent │ └── index.ts ├── index.ts ├── multiPersonality │ ├── README.md │ └── index.ts ├── notionAgent │ └── index.ts ├── package.json ├── slackAgent │ └── index.ts ├── tsconfig.json ├── twitterAgent │ ├── README.md │ └── index.ts └── web3Agent │ ├── README.md │ └── index.ts ├── jest.config.js ├── package-manager-indexer ├── .env.sample ├── README.md ├── package.json ├── src │ ├── api │ │ ├── controllers │ │ │ └── toolController.ts │ │ ├── middleware │ │ │ ├── appMiddleware.ts │ │ │ ├── errorHandler.ts │ │ │ └── rateLimiter.ts │ │ ├── routes │ │ │ ├── index.ts │ │ │ ├── systemRoutes.ts │ │ │ └── toolRoutes.ts │ │ └── server.ts │ ├── blockchain │ │ ├── abi │ │ │ └── AutonomysPackageRegistry.abi.json │ │ ├── contractService.ts │ │ ├── handlers │ │ │ ├── eventListeners.ts │ │ │ ├── historicalEvents.ts │ │ │ └── processBlock.ts │ │ ├── types │ │ │ └── events.ts │ │ └── utils │ │ │ ├── blockUtils.ts │ │ │ ├── retryUtils.ts │ │ │ ├── transactionUtils.ts │ │ │ └── versionUtils.ts │ ├── config │ │ └── index.ts │ ├── db │ │ ├── connection.ts │ │ ├── migrations │ │ │ ├── 001_initial_schema.sql │ │ │ └── migrate.ts │ │ └── repositories │ │ │ ├── apiRepository.ts │ │ │ └── toolRepository.ts │ ├── handlers │ │ └── eventHandlers.ts │ ├── index.ts │ ├── models │ │ └── Tool.ts │ ├── scripts │ │ ├── resetDatabase.ts │ │ └── resetIndexer.ts │ └── utils │ │ └── logger.ts ├── tsconfig.json └── yarn.lock ├── package.json ├── scripts ├── create-character.ts ├── dev-all.ts ├── generate-certs.ts ├── resurrect.ts ├── start.ts └── utils.ts ├── tests ├── services │ └── twitter │ │ └── client.test.ts ├── setup.js ├── utils │ └── logger.test.ts └── vecdb │ └── VectorDB.test.ts ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.test.json ├── web-cli ├── .env.sample ├── .gitignore ├── .prettierrc ├── README.md ├── eslint.config.js ├── package.json ├── public │ ├── assets │ │ └── logo.svg │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.tsx │ ├── components │ │ ├── BodyArea.tsx │ │ ├── ConnectionStatus.tsx │ │ ├── NamespaceTabs.tsx │ │ ├── chat │ │ │ ├── ChatArea.tsx │ │ │ ├── components │ │ │ │ ├── ChatButton.tsx │ │ │ │ ├── ChatHeader.tsx │ │ │ │ ├── ChatInput.tsx │ │ │ │ ├── ChatMessage.tsx │ │ │ │ ├── LoadOlderButton.tsx │ │ │ │ ├── LoadingState.tsx │ │ │ │ └── TypingIndicator.tsx │ │ │ ├── index.ts │ │ │ └── styles │ │ │ │ └── ChatStyles.ts │ │ ├── header │ │ │ ├── CharacterBox.tsx │ │ │ ├── ClockBox.tsx │ │ │ ├── HeaderArea.tsx │ │ │ └── LogoBox.tsx │ │ ├── input │ │ │ ├── InputArea.tsx │ │ │ └── styles │ │ │ │ └── InputStyles.ts │ │ ├── logs │ │ │ ├── LogMessageList.tsx │ │ │ ├── OutputLog.tsx │ │ │ ├── components │ │ │ │ ├── LogSearch.tsx │ │ │ │ ├── Metadata.tsx │ │ │ │ ├── MetadataValue.tsx │ │ │ │ ├── ObjectNode.tsx │ │ │ │ └── index.ts │ │ │ └── styles │ │ │ │ └── LogStyles.ts │ │ ├── status │ │ │ ├── StatusBox.tsx │ │ │ └── styles │ │ │ │ └── StatusStyles.ts │ │ ├── tabs │ │ │ ├── TabNavigation.tsx │ │ │ └── styles │ │ │ │ └── TabNavigationStyles.ts │ │ └── tasks │ │ │ ├── ScheduledTasksBox.tsx │ │ │ ├── TaskHeader.tsx │ │ │ ├── TasksArea.tsx │ │ │ └── styles │ │ │ ├── ScheduledTasksBoxStyles.ts │ │ │ ├── TaskHeaderStyles.ts │ │ │ └── TasksAreaStyles.ts │ ├── context │ │ ├── AppContext.tsx │ │ └── ChatContext.tsx │ ├── hooks │ │ ├── useBodyLeftSide.ts │ │ ├── useChatMessages.ts │ │ ├── useLogMessages.ts │ │ └── useNamespaces.ts │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── services │ │ ├── Api.ts │ │ ├── CharacterService.ts │ │ ├── ChatService.ts │ │ ├── LogService.ts │ │ ├── TaskStreamService.ts │ │ └── WorkflowService.ts │ ├── theme │ │ └── index.ts │ └── types │ │ ├── globals.d.ts │ │ └── types.ts └── tsconfig.json └── yarn.lock /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/.github/workflows/code-quality.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.8.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/.yarn/releases/yarn-4.8.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/README.md -------------------------------------------------------------------------------- /agent-contracts/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/.env.sample -------------------------------------------------------------------------------- /agent-contracts/.forgeignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /agent-contracts/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/.github/workflows/test.yml -------------------------------------------------------------------------------- /agent-contracts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/.gitignore -------------------------------------------------------------------------------- /agent-contracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/README.md -------------------------------------------------------------------------------- /agent-contracts/broadcast/AgentMemory.s.sol/490000/run-1733773289.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AgentMemory.s.sol/490000/run-1733773289.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AgentMemory.s.sol/490000/run-1733773734.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AgentMemory.s.sol/490000/run-1733773734.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AgentMemory.s.sol/490000/run-1734654376.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AgentMemory.s.sol/490000/run-1734654376.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AgentMemory.s.sol/490000/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AgentMemory.s.sol/490000/run-latest.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AgentMemory.s.sol/870/run-1754340479.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AgentMemory.s.sol/870/run-1754340479.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AgentMemory.s.sol/870/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AgentMemory.s.sol/870/run-latest.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/490000/run-1742442369.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/490000/run-1742442369.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/490000/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/490000/run-latest.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/870/run-1754340812.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/870/run-1754340812.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/870/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/AutonomysPackageRegistry.s.sol/870/run-latest.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1740880939.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1740880939.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1740880997.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1740880997.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1740932802.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1740932802.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1742422824.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-1742422824.json -------------------------------------------------------------------------------- /agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/broadcast/DeployAutonomysPackageRegistry.s.sol/490000/run-latest.json -------------------------------------------------------------------------------- /agent-contracts/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/foundry.toml -------------------------------------------------------------------------------- /agent-contracts/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/remappings.txt -------------------------------------------------------------------------------- /agent-contracts/script/AgentMemory.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/script/AgentMemory.s.sol -------------------------------------------------------------------------------- /agent-contracts/script/AutonomysAgents.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/script/AutonomysAgents.s.sol -------------------------------------------------------------------------------- /agent-contracts/script/AutonomysPackageRegistry.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/script/AutonomysPackageRegistry.s.sol -------------------------------------------------------------------------------- /agent-contracts/script/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/script/deploy.sh -------------------------------------------------------------------------------- /agent-contracts/script/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/script/verify.sh -------------------------------------------------------------------------------- /agent-contracts/src/AgentMemory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/src/AgentMemory.sol -------------------------------------------------------------------------------- /agent-contracts/src/AutonomysAgents.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/src/AutonomysAgents.sol -------------------------------------------------------------------------------- /agent-contracts/src/AutonomysPackageRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/src/AutonomysPackageRegistry.sol -------------------------------------------------------------------------------- /agent-contracts/test/AgentMemory.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/test/AgentMemory.t.sol -------------------------------------------------------------------------------- /agent-contracts/test/AutonomysAgents.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/test/AutonomysAgents.t.sol -------------------------------------------------------------------------------- /agent-contracts/test/AutonomysPackageRegistry.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-contracts/test/AutonomysPackageRegistry.t.sol -------------------------------------------------------------------------------- /agent-memory-viewer/backend/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/.env.sample -------------------------------------------------------------------------------- /agent-memory-viewer/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/README.md -------------------------------------------------------------------------------- /agent-memory-viewer/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/package.json -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/abi/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/abi/memory.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/config/agents.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/config/agents.example.yaml -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/config/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/config/agents.yaml -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/config/env.validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/config/env.validation.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/config/index.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/index.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/init.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/migrations/001_add_agent_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/migrations/001_add_agent_name.sql -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/migrations/002_add_path_cache.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/migrations/002_add_path_cache.sql -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/postgres/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/postgres/connection.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/repositories/memoryRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/repositories/memoryRepository.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/schema.sql -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/services/pathAnalyzer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/services/pathAnalyzer.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/db/types/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/db/types/models.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/index.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/middleware/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/middleware/errorHandler.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/middleware/requestLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/middleware/requestLogger.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/middleware/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/middleware/security.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/routes/agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/routes/agents.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/routes/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/routes/health.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/routes/index.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/routes/memories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/routes/memories.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/scripts/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/scripts/migrate.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/server.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/agentMemoryContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/agentMemoryContract.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/backgroundProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/backgroundProcessor.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/dsn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/dsn.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/llm/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/llm/openai.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/logger.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/resurrection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/resurrection.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/validation/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/validation/memory.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/utils/validation/signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/utils/validation/signature.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/src/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/src/websocket.ts -------------------------------------------------------------------------------- /agent-memory-viewer/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/tsconfig.json -------------------------------------------------------------------------------- /agent-memory-viewer/backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/backend/yarn.lock -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/.env.sample -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/.eslintrc.json -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/.prettierrc -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/README.md -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/index.html -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/package.json -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/agents/agreemint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/agents/agreemint.jpg -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/agents/argumint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/agents/argumint.jpg -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/agents/hindsight2157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/agents/hindsight2157.jpg -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/android-icon-144x144.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/android-icon-192x192.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/android-icon-36x36.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/android-icon-48x48.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/android-icon-72x72.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/android-icon-96x96.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-114x114.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-120x120.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-144x144.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-152x152.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-180x180.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-57x57.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-60x60.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-72x72.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-76x76.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon-precomposed.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/apple-icon.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/autonomys-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/autonomys-logo.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/browserconfig.xml -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/favicon-16x16.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/favicon-32x32.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/favicon-96x96.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/favicon.ico -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/manifest.json -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/ms-icon-144x144.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/ms-icon-150x150.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/ms-icon-310x310.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/public/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/public/ms-icon-70x70.png -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/App.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/api/client.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/components/Analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/components/Analytics.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/components/ExperienceCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/components/ExperienceCard.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/components/Footer.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/components/Navbar.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/components/Pagination.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/components/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/components/SearchBar.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/components/StatusFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/components/StatusFilter.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/env.d.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/hooks/useWebSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/hooks/useWebSocket.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/main.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/pages/DSNViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/pages/DSNViewer.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/pages/MemoryViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/pages/MemoryViewer.tsx -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/components/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/components/button.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/components/card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/components/card.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/components/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/components/label.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/components/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/components/link.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/components/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/components/select.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/components/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/components/text.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/index.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/styles/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/styles/theme/colors.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/theme.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/types/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/types/enums.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/utils/statusColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/utils/statusColors.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/utils/timeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/utils/timeUtils.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/src/utils/typeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/src/utils/typeUtils.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/tsconfig.json -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/vite.config.ts -------------------------------------------------------------------------------- /agent-memory-viewer/frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-memory-viewer/frontend/yarn.lock -------------------------------------------------------------------------------- /agent-package-manager/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/.npmignore -------------------------------------------------------------------------------- /agent-package-manager/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/.prettierrc -------------------------------------------------------------------------------- /agent-package-manager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/CHANGELOG.md -------------------------------------------------------------------------------- /agent-package-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/LICENSE -------------------------------------------------------------------------------- /agent-package-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/README.md -------------------------------------------------------------------------------- /agent-package-manager/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/eslint.config.js -------------------------------------------------------------------------------- /agent-package-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/package.json -------------------------------------------------------------------------------- /agent-package-manager/src/commands/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/clean.ts -------------------------------------------------------------------------------- /agent-package-manager/src/commands/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/config.ts -------------------------------------------------------------------------------- /agent-package-manager/src/commands/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/init.ts -------------------------------------------------------------------------------- /agent-package-manager/src/commands/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/install.ts -------------------------------------------------------------------------------- /agent-package-manager/src/commands/publish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/publish.ts -------------------------------------------------------------------------------- /agent-package-manager/src/commands/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/search.ts -------------------------------------------------------------------------------- /agent-package-manager/src/commands/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/tool.ts -------------------------------------------------------------------------------- /agent-package-manager/src/commands/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/commands/update.ts -------------------------------------------------------------------------------- /agent-package-manager/src/config/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/config/default.ts -------------------------------------------------------------------------------- /agent-package-manager/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/config/index.ts -------------------------------------------------------------------------------- /agent-package-manager/src/config/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/config/prompts.ts -------------------------------------------------------------------------------- /agent-package-manager/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/index.ts -------------------------------------------------------------------------------- /agent-package-manager/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/types/index.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/autoDrive/autoDriveClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/autoDrive/autoDriveClient.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/autoDrive/gatewayClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/autoDrive/gatewayClient.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/blockchain/AutonomysPackageRegistry.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/blockchain/AutonomysPackageRegistry.abi.json -------------------------------------------------------------------------------- /agent-package-manager/src/utils/blockchain/contractClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/blockchain/contractClient.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/blockchain/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/blockchain/errorHandler.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/blockchain/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/blockchain/types.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/blockchain/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/blockchain/utils.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/commands/init/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/commands/init/index.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/commands/install/toolInstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/commands/install/toolInstall.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/commands/install/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/commands/install/utils.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/commands/registry/toolInquiry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/commands/registry/toolInquiry.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/commands/registry/toolPublish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/commands/registry/toolPublish.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/commands/registry/updateRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/commands/registry/updateRegistry.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/credential/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/credential/index.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/npm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/npm/index.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/shared/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/shared/path.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/update/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/update/index.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/validation.ts -------------------------------------------------------------------------------- /agent-package-manager/src/utils/vault/keychain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/src/utils/vault/keychain.ts -------------------------------------------------------------------------------- /agent-package-manager/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/tsconfig.json -------------------------------------------------------------------------------- /agent-package-manager/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/agent-package-manager/yarn.lock -------------------------------------------------------------------------------- /characters/character.example/config/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/characters/character.example/config/.env.example -------------------------------------------------------------------------------- /characters/character.example/config/character.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/characters/character.example/config/character.example.yaml -------------------------------------------------------------------------------- /characters/character.example/config/config.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/characters/character.example/config/config.example.yaml -------------------------------------------------------------------------------- /core/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/.npmignore -------------------------------------------------------------------------------- /core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/CHANGELOG.md -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/README.md -------------------------------------------------------------------------------- /core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/package.json -------------------------------------------------------------------------------- /core/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/rollup.config.js -------------------------------------------------------------------------------- /core/src/agents/chat/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/config.ts -------------------------------------------------------------------------------- /core/src/agents/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/index.ts -------------------------------------------------------------------------------- /core/src/agents/chat/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/nodes.ts -------------------------------------------------------------------------------- /core/src/agents/chat/nodes/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/nodes/executor.ts -------------------------------------------------------------------------------- /core/src/agents/chat/nodes/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/nodes/input.ts -------------------------------------------------------------------------------- /core/src/agents/chat/nodes/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/nodes/prompt.ts -------------------------------------------------------------------------------- /core/src/agents/chat/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/state.ts -------------------------------------------------------------------------------- /core/src/agents/chat/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/tools.ts -------------------------------------------------------------------------------- /core/src/agents/chat/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/types.ts -------------------------------------------------------------------------------- /core/src/agents/chat/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/chat/workflow.ts -------------------------------------------------------------------------------- /core/src/agents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/agentExperiences/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/agentExperiences/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/arxiv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/arxiv/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/evm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/evm/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/firecrawl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/firecrawl/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/activity.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/git.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/issues.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/prs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/prs.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/repos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/repos.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/users.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/activity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/activity.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/client.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/git.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/issues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/issues.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/prs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/prs.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/reactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/reactions.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/repos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/repos.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/types.ts -------------------------------------------------------------------------------- /core/src/agents/tools/github/utils/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/github/utils/users.ts -------------------------------------------------------------------------------- /core/src/agents/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/mcp-tool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/mcp-tool/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/notion-mcp/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/notion-mcp/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/notion/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/notion/client.ts -------------------------------------------------------------------------------- /core/src/agents/tools/notion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/notion/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/scheduler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/scheduler/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/bookmark.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/canvas.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/channel.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/chat.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/pin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/pin.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/reaction.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/user.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/bookmark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/bookmark.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/canvas.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/channel.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/chat.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/client.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/pin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/pin.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/reaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/reaction.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/types.ts -------------------------------------------------------------------------------- /core/src/agents/tools/slack/utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/slack/utils/user.ts -------------------------------------------------------------------------------- /core/src/agents/tools/stopWorkflow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/stopWorkflow/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/taurusFaucet/abi/faucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/taurusFaucet/abi/faucet.ts -------------------------------------------------------------------------------- /core/src/agents/tools/taurusFaucet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/taurusFaucet/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/taurusFaucet/taurusFaucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/taurusFaucet/taurusFaucet.ts -------------------------------------------------------------------------------- /core/src/agents/tools/thinking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/thinking/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/time/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/time/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/twitter/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/twitter/auth.ts -------------------------------------------------------------------------------- /core/src/agents/tools/twitter/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/twitter/client.ts -------------------------------------------------------------------------------- /core/src/agents/tools/twitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/twitter/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/twitter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/twitter/types.ts -------------------------------------------------------------------------------- /core/src/agents/tools/twitter/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/twitter/utils/utils.ts -------------------------------------------------------------------------------- /core/src/agents/tools/webSearch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/webSearch/index.ts -------------------------------------------------------------------------------- /core/src/agents/tools/webhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/tools/webhook/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/github/githubAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/github/githubAgent.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/github/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/github/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/github/prompts.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/github/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/github/types.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/cleanMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/cleanMessages.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/config.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/finishWorkflowNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/finishWorkflowNode.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/finishWorkflowPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/finishWorkflowPrompt.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/inputNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/inputNode.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/inputPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/inputPrompt.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/messageSummaryNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/messageSummaryNode.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/messageSummaryPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/messageSummaryPrompt.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/toolExecutionNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/toolExecutionNode.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/nodes/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/nodes/utils.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/orchestratorWorkflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/orchestratorWorkflow.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/prompts.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/config.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/db/dbController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/db/dbController.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/db/schedulerDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/db/schedulerDb.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/db/schema.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/taskExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/taskExecutor.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/taskQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/taskQueue.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/scheduler/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/scheduler/types.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/state.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/tools.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/orchestrator/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/orchestrator/types.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/registration.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/slack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/slack/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/slack/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/slack/prompts.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/slack/slackAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/slack/slackAgent.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/slack/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/slack/types.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/twitter/cleanMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/twitter/cleanMessages.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/twitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/twitter/index.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/twitter/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/twitter/prompts.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/twitter/twitterAgent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/twitter/twitterAgent.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/twitter/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/twitter/types.ts -------------------------------------------------------------------------------- /core/src/agents/workflows/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/agents/workflows/utils.ts -------------------------------------------------------------------------------- /core/src/api/controller/CharacterController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/CharacterController.ts -------------------------------------------------------------------------------- /core/src/api/controller/ChatController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/ChatController.ts -------------------------------------------------------------------------------- /core/src/api/controller/LogsController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/LogsController.ts -------------------------------------------------------------------------------- /core/src/api/controller/NamespaceController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/NamespaceController.ts -------------------------------------------------------------------------------- /core/src/api/controller/StateController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/StateController.ts -------------------------------------------------------------------------------- /core/src/api/controller/StatusController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/StatusController.ts -------------------------------------------------------------------------------- /core/src/api/controller/TaskController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/TaskController.ts -------------------------------------------------------------------------------- /core/src/api/controller/WebhookController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/WebhookController.ts -------------------------------------------------------------------------------- /core/src/api/controller/WorkflowController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/WorkflowController.ts -------------------------------------------------------------------------------- /core/src/api/controller/prompt/ChatPrompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/controller/prompt/ChatPrompts.ts -------------------------------------------------------------------------------- /core/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/index.ts -------------------------------------------------------------------------------- /core/src/api/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/middleware/auth.ts -------------------------------------------------------------------------------- /core/src/api/middleware/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/middleware/cors.ts -------------------------------------------------------------------------------- /core/src/api/routes/character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/character.ts -------------------------------------------------------------------------------- /core/src/api/routes/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/chat.ts -------------------------------------------------------------------------------- /core/src/api/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/index.ts -------------------------------------------------------------------------------- /core/src/api/routes/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/logs.ts -------------------------------------------------------------------------------- /core/src/api/routes/namespaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/namespaces.ts -------------------------------------------------------------------------------- /core/src/api/routes/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/status.ts -------------------------------------------------------------------------------- /core/src/api/routes/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/tasks.ts -------------------------------------------------------------------------------- /core/src/api/routes/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/webhooks.ts -------------------------------------------------------------------------------- /core/src/api/routes/workflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/routes/workflows.ts -------------------------------------------------------------------------------- /core/src/api/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/server.ts -------------------------------------------------------------------------------- /core/src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/api/types.ts -------------------------------------------------------------------------------- /core/src/blockchain/agentExperience/abi/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/blockchain/agentExperience/abi/memory.ts -------------------------------------------------------------------------------- /core/src/blockchain/agentExperience/autoDrive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/blockchain/agentExperience/autoDrive.ts -------------------------------------------------------------------------------- /core/src/blockchain/agentExperience/cidManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/blockchain/agentExperience/cidManager.ts -------------------------------------------------------------------------------- /core/src/blockchain/agentExperience/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/blockchain/agentExperience/index.ts -------------------------------------------------------------------------------- /core/src/blockchain/agentExperience/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/blockchain/agentExperience/types.ts -------------------------------------------------------------------------------- /core/src/config/characters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/config/characters.ts -------------------------------------------------------------------------------- /core/src/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/config/config.ts -------------------------------------------------------------------------------- /core/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/config/index.ts -------------------------------------------------------------------------------- /core/src/config/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/config/schema.ts -------------------------------------------------------------------------------- /core/src/config/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/config/types.ts -------------------------------------------------------------------------------- /core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/index.ts -------------------------------------------------------------------------------- /core/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/index.ts -------------------------------------------------------------------------------- /core/src/services/llm/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/llm/factory.ts -------------------------------------------------------------------------------- /core/src/services/llm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/llm/index.ts -------------------------------------------------------------------------------- /core/src/services/llm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/llm/types.ts -------------------------------------------------------------------------------- /core/src/services/sqlite/SqliteDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/sqlite/SqliteDB.ts -------------------------------------------------------------------------------- /core/src/services/sqlite/index.ts: -------------------------------------------------------------------------------- 1 | export * from './SqliteDB.js'; 2 | -------------------------------------------------------------------------------- /core/src/services/vectorDb/VectorDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/vectorDb/VectorDB.ts -------------------------------------------------------------------------------- /core/src/services/vectorDb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/vectorDb/index.ts -------------------------------------------------------------------------------- /core/src/services/vectorDb/types/vectorlite.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/vectorDb/types/vectorlite.d.ts -------------------------------------------------------------------------------- /core/src/services/vectorDb/vectorDBPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/services/vectorDb/vectorDBPool.ts -------------------------------------------------------------------------------- /core/src/utils/args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/utils/args.ts -------------------------------------------------------------------------------- /core/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/utils/index.ts -------------------------------------------------------------------------------- /core/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/utils/logger.ts -------------------------------------------------------------------------------- /core/src/utils/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/utils/paths.ts -------------------------------------------------------------------------------- /core/src/utils/retry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/utils/retry.ts -------------------------------------------------------------------------------- /core/src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/src/utils/utils.ts -------------------------------------------------------------------------------- /core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/core/tsconfig.json -------------------------------------------------------------------------------- /docker/web-cli/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/docker/web-cli/.dockerignore -------------------------------------------------------------------------------- /docker/web-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/docker/web-cli/Dockerfile -------------------------------------------------------------------------------- /docker/web-cli/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/docker/web-cli/docker-compose.yml -------------------------------------------------------------------------------- /docker/web-cli/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/docker/web-cli/entrypoint.sh -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/eslint.config.js -------------------------------------------------------------------------------- /examples/githubAgent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/githubAgent/index.ts -------------------------------------------------------------------------------- /examples/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/index.ts -------------------------------------------------------------------------------- /examples/multiPersonality/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/multiPersonality/README.md -------------------------------------------------------------------------------- /examples/multiPersonality/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/multiPersonality/index.ts -------------------------------------------------------------------------------- /examples/notionAgent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/notionAgent/index.ts -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/slackAgent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/slackAgent/index.ts -------------------------------------------------------------------------------- /examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/tsconfig.json -------------------------------------------------------------------------------- /examples/twitterAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/twitterAgent/README.md -------------------------------------------------------------------------------- /examples/twitterAgent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/twitterAgent/index.ts -------------------------------------------------------------------------------- /examples/web3Agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/web3Agent/README.md -------------------------------------------------------------------------------- /examples/web3Agent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/examples/web3Agent/index.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/jest.config.js -------------------------------------------------------------------------------- /package-manager-indexer/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/.env.sample -------------------------------------------------------------------------------- /package-manager-indexer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/README.md -------------------------------------------------------------------------------- /package-manager-indexer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/package.json -------------------------------------------------------------------------------- /package-manager-indexer/src/api/controllers/toolController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/controllers/toolController.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/api/middleware/appMiddleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/middleware/appMiddleware.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/api/middleware/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/middleware/errorHandler.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/api/middleware/rateLimiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/middleware/rateLimiter.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/api/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/routes/index.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/api/routes/systemRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/routes/systemRoutes.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/api/routes/toolRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/routes/toolRoutes.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/api/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/api/server.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/abi/AutonomysPackageRegistry.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/abi/AutonomysPackageRegistry.abi.json -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/contractService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/contractService.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/handlers/eventListeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/handlers/eventListeners.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/handlers/historicalEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/handlers/historicalEvents.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/handlers/processBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/handlers/processBlock.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/types/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/types/events.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/utils/blockUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/utils/blockUtils.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/utils/retryUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/utils/retryUtils.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/utils/transactionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/utils/transactionUtils.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/blockchain/utils/versionUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/blockchain/utils/versionUtils.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/config/index.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/db/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/db/connection.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/db/migrations/001_initial_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/db/migrations/001_initial_schema.sql -------------------------------------------------------------------------------- /package-manager-indexer/src/db/migrations/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/db/migrations/migrate.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/db/repositories/apiRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/db/repositories/apiRepository.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/db/repositories/toolRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/db/repositories/toolRepository.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/handlers/eventHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/handlers/eventHandlers.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/index.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/models/Tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/models/Tool.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/scripts/resetDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/scripts/resetDatabase.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/scripts/resetIndexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/scripts/resetIndexer.ts -------------------------------------------------------------------------------- /package-manager-indexer/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/src/utils/logger.ts -------------------------------------------------------------------------------- /package-manager-indexer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/tsconfig.json -------------------------------------------------------------------------------- /package-manager-indexer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package-manager-indexer/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/package.json -------------------------------------------------------------------------------- /scripts/create-character.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/scripts/create-character.ts -------------------------------------------------------------------------------- /scripts/dev-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/scripts/dev-all.ts -------------------------------------------------------------------------------- /scripts/generate-certs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/scripts/generate-certs.ts -------------------------------------------------------------------------------- /scripts/resurrect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/scripts/resurrect.ts -------------------------------------------------------------------------------- /scripts/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/scripts/start.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /tests/services/twitter/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/tests/services/twitter/client.test.ts -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/tests/setup.js -------------------------------------------------------------------------------- /tests/utils/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/tests/utils/logger.test.ts -------------------------------------------------------------------------------- /tests/vecdb/VectorDB.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/tests/vecdb/VectorDB.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /web-cli/.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/.env.sample -------------------------------------------------------------------------------- /web-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/.gitignore -------------------------------------------------------------------------------- /web-cli/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/.prettierrc -------------------------------------------------------------------------------- /web-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/README.md -------------------------------------------------------------------------------- /web-cli/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/eslint.config.js -------------------------------------------------------------------------------- /web-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/package.json -------------------------------------------------------------------------------- /web-cli/public/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/public/assets/logo.svg -------------------------------------------------------------------------------- /web-cli/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/public/favicon.ico -------------------------------------------------------------------------------- /web-cli/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/public/index.html -------------------------------------------------------------------------------- /web-cli/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/public/manifest.json -------------------------------------------------------------------------------- /web-cli/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/public/robots.txt -------------------------------------------------------------------------------- /web-cli/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/App.css -------------------------------------------------------------------------------- /web-cli/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/App.tsx -------------------------------------------------------------------------------- /web-cli/src/components/BodyArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/BodyArea.tsx -------------------------------------------------------------------------------- /web-cli/src/components/ConnectionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/ConnectionStatus.tsx -------------------------------------------------------------------------------- /web-cli/src/components/NamespaceTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/NamespaceTabs.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/ChatArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/ChatArea.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/components/ChatButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/components/ChatButton.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/components/ChatHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/components/ChatHeader.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/components/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/components/ChatInput.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/components/ChatMessage.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/components/LoadOlderButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/components/LoadOlderButton.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/components/LoadingState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/components/LoadingState.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/components/TypingIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/components/TypingIndicator.tsx -------------------------------------------------------------------------------- /web-cli/src/components/chat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/index.ts -------------------------------------------------------------------------------- /web-cli/src/components/chat/styles/ChatStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/chat/styles/ChatStyles.ts -------------------------------------------------------------------------------- /web-cli/src/components/header/CharacterBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/header/CharacterBox.tsx -------------------------------------------------------------------------------- /web-cli/src/components/header/ClockBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/header/ClockBox.tsx -------------------------------------------------------------------------------- /web-cli/src/components/header/HeaderArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/header/HeaderArea.tsx -------------------------------------------------------------------------------- /web-cli/src/components/header/LogoBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/header/LogoBox.tsx -------------------------------------------------------------------------------- /web-cli/src/components/input/InputArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/input/InputArea.tsx -------------------------------------------------------------------------------- /web-cli/src/components/input/styles/InputStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/input/styles/InputStyles.ts -------------------------------------------------------------------------------- /web-cli/src/components/logs/LogMessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/LogMessageList.tsx -------------------------------------------------------------------------------- /web-cli/src/components/logs/OutputLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/OutputLog.tsx -------------------------------------------------------------------------------- /web-cli/src/components/logs/components/LogSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/components/LogSearch.tsx -------------------------------------------------------------------------------- /web-cli/src/components/logs/components/Metadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/components/Metadata.tsx -------------------------------------------------------------------------------- /web-cli/src/components/logs/components/MetadataValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/components/MetadataValue.tsx -------------------------------------------------------------------------------- /web-cli/src/components/logs/components/ObjectNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/components/ObjectNode.tsx -------------------------------------------------------------------------------- /web-cli/src/components/logs/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/components/index.ts -------------------------------------------------------------------------------- /web-cli/src/components/logs/styles/LogStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/logs/styles/LogStyles.ts -------------------------------------------------------------------------------- /web-cli/src/components/status/StatusBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/status/StatusBox.tsx -------------------------------------------------------------------------------- /web-cli/src/components/status/styles/StatusStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/status/styles/StatusStyles.ts -------------------------------------------------------------------------------- /web-cli/src/components/tabs/TabNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tabs/TabNavigation.tsx -------------------------------------------------------------------------------- /web-cli/src/components/tabs/styles/TabNavigationStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tabs/styles/TabNavigationStyles.ts -------------------------------------------------------------------------------- /web-cli/src/components/tasks/ScheduledTasksBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tasks/ScheduledTasksBox.tsx -------------------------------------------------------------------------------- /web-cli/src/components/tasks/TaskHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tasks/TaskHeader.tsx -------------------------------------------------------------------------------- /web-cli/src/components/tasks/TasksArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tasks/TasksArea.tsx -------------------------------------------------------------------------------- /web-cli/src/components/tasks/styles/ScheduledTasksBoxStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tasks/styles/ScheduledTasksBoxStyles.ts -------------------------------------------------------------------------------- /web-cli/src/components/tasks/styles/TaskHeaderStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tasks/styles/TaskHeaderStyles.ts -------------------------------------------------------------------------------- /web-cli/src/components/tasks/styles/TasksAreaStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/components/tasks/styles/TasksAreaStyles.ts -------------------------------------------------------------------------------- /web-cli/src/context/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/context/AppContext.tsx -------------------------------------------------------------------------------- /web-cli/src/context/ChatContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/context/ChatContext.tsx -------------------------------------------------------------------------------- /web-cli/src/hooks/useBodyLeftSide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/hooks/useBodyLeftSide.ts -------------------------------------------------------------------------------- /web-cli/src/hooks/useChatMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/hooks/useChatMessages.ts -------------------------------------------------------------------------------- /web-cli/src/hooks/useLogMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/hooks/useLogMessages.ts -------------------------------------------------------------------------------- /web-cli/src/hooks/useNamespaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/hooks/useNamespaces.ts -------------------------------------------------------------------------------- /web-cli/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/index.css -------------------------------------------------------------------------------- /web-cli/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/index.tsx -------------------------------------------------------------------------------- /web-cli/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/react-app-env.d.ts -------------------------------------------------------------------------------- /web-cli/src/services/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/services/Api.ts -------------------------------------------------------------------------------- /web-cli/src/services/CharacterService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/services/CharacterService.ts -------------------------------------------------------------------------------- /web-cli/src/services/ChatService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/services/ChatService.ts -------------------------------------------------------------------------------- /web-cli/src/services/LogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/services/LogService.ts -------------------------------------------------------------------------------- /web-cli/src/services/TaskStreamService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/services/TaskStreamService.ts -------------------------------------------------------------------------------- /web-cli/src/services/WorkflowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/services/WorkflowService.ts -------------------------------------------------------------------------------- /web-cli/src/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/theme/index.ts -------------------------------------------------------------------------------- /web-cli/src/types/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/types/globals.d.ts -------------------------------------------------------------------------------- /web-cli/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/src/types/types.ts -------------------------------------------------------------------------------- /web-cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/web-cli/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autonomys/autonomys-agents/HEAD/yarn.lock --------------------------------------------------------------------------------