[PR #3867] [MERGED] Implement importing of agent flows from community hub #4440

Closed
opened 2026-02-22 18:35:50 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3867
Author: @shatfield4
Created: 5/21/2025
Status: Merged
Merged: 6/5/2025
Merged by: @timothycarambat

Base: masterHead: 3866-feat-import-agent-flows-from-community-hub


📝 Commits (7)

  • 9acdfe6 implement importing of agent flows from community hub
  • 9b7e334 Merge branch 'master' into 3866-feat-import-agent-flows-from-community-hub
  • 7a46c11 auto enable flow on import
  • 9d5c20f Merge branch 'master' into 3866-feat-import-agent-flows-from-community-hub
  • 9c40d4f remove unused blocks for docker
  • 63ff3e4 dev build
  • 33dd558 Merge branch 'master' into 3866-feat-import-agent-flows-from-community-hub

📊 Changes

18 files changed (+167 additions, -130 deletions)

View changed files

📝 .github/workflows/dev-build.yaml (+1 -1)
📝 frontend/src/models/agentFlows.js (+1 -1)
📝 frontend/src/pages/Admin/AgentBuilder/index.jsx (+3 -1)
📝 frontend/src/pages/GeneralSettings/CommunityHub/Authentication/useUserItems.js (+1 -0)
📝 frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/Completed/index.jsx (+10 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/AgentFlow.jsx (+80 -0)
📝 frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/index.js (+2 -0)
📝 frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/index.jsx (+0 -1)
frontend/src/pages/GeneralSettings/CommunityHub/Trending/HubItems/HubItemCard/agentFlow.jsx (+39 -0)
📝 frontend/src/pages/GeneralSettings/CommunityHub/Trending/HubItems/HubItemCard/index.jsx (+3 -0)
📝 frontend/src/pages/GeneralSettings/CommunityHub/utils.js (+8 -2)
📝 server/endpoints/agentFlows.js (+4 -6)
📝 server/utils/agentFlows/executor.js (+0 -12)
server/utils/agentFlows/executors/code.js (+0 -12)
server/utils/agentFlows/executors/file.js (+0 -12)
server/utils/agentFlows/executors/website.js (+0 -12)
📝 server/utils/agentFlows/flowTypes.js (+0 -69)
📝 server/utils/agentFlows/index.js (+15 -1)

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #3866

What is in this change?

  • Add support for importing agent flows from the AnythingLLM Community Hub

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Mintplex-Labs/anything-llm/pull/3867 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 5/21/2025 **Status:** ✅ Merged **Merged:** 6/5/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `3866-feat-import-agent-flows-from-community-hub` --- ### 📝 Commits (7) - [`9acdfe6`](https://github.com/Mintplex-Labs/anything-llm/commit/9acdfe662777897fe3dd081b2ecb3bb74980bf6e) implement importing of agent flows from community hub - [`9b7e334`](https://github.com/Mintplex-Labs/anything-llm/commit/9b7e334d863bdc6109fa0abfc8ad35b7b2db3b41) Merge branch 'master' into 3866-feat-import-agent-flows-from-community-hub - [`7a46c11`](https://github.com/Mintplex-Labs/anything-llm/commit/7a46c112774d52085c0d2168dcc6e49d697e874c) auto enable flow on import - [`9d5c20f`](https://github.com/Mintplex-Labs/anything-llm/commit/9d5c20fc4f2c9506dc9dd0e33f3bded346b38a0d) Merge branch 'master' into 3866-feat-import-agent-flows-from-community-hub - [`9c40d4f`](https://github.com/Mintplex-Labs/anything-llm/commit/9c40d4fd287811c3f2f9541869409aa0fb162112) remove unused blocks for docker - [`63ff3e4`](https://github.com/Mintplex-Labs/anything-llm/commit/63ff3e43320d2a8b16a62aaac2904ba15ea35d24) dev build - [`33dd558`](https://github.com/Mintplex-Labs/anything-llm/commit/33dd558bed5949f888ce29dd3174e98130c50296) Merge branch 'master' into 3866-feat-import-agent-flows-from-community-hub ### 📊 Changes **18 files changed** (+167 additions, -130 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `frontend/src/models/agentFlows.js` (+1 -1) 📝 `frontend/src/pages/Admin/AgentBuilder/index.jsx` (+3 -1) 📝 `frontend/src/pages/GeneralSettings/CommunityHub/Authentication/useUserItems.js` (+1 -0) 📝 `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/Completed/index.jsx` (+10 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/AgentFlow.jsx` (+80 -0) 📝 `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/index.js` (+2 -0) 📝 `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/index.jsx` (+0 -1) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/Trending/HubItems/HubItemCard/agentFlow.jsx` (+39 -0) 📝 `frontend/src/pages/GeneralSettings/CommunityHub/Trending/HubItems/HubItemCard/index.jsx` (+3 -0) 📝 `frontend/src/pages/GeneralSettings/CommunityHub/utils.js` (+8 -2) 📝 `server/endpoints/agentFlows.js` (+4 -6) 📝 `server/utils/agentFlows/executor.js` (+0 -12) ➖ `server/utils/agentFlows/executors/code.js` (+0 -12) ➖ `server/utils/agentFlows/executors/file.js` (+0 -12) ➖ `server/utils/agentFlows/executors/website.js` (+0 -12) 📝 `server/utils/agentFlows/flowTypes.js` (+0 -69) 📝 `server/utils/agentFlows/index.js` (+15 -1) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #3866 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Add support for importing agent flows from the AnythingLLM Community Hub ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] Docker build succeeds locally --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:35:50 -05:00
yindo closed this issue 2026-02-22 18:35:50 -05:00
yindo changed title from [PR #3867] Implement importing of agent flows from community hub to [PR #3867] [MERGED] Implement importing of agent flows from community hub 2026-06-05 15:18:34 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#4440