[PR #2555] [MERGED] Community hub integration #4031

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/2555
Author: @shatfield4
Created: 10/29/2024
Status: Merged
Merged: 11/26/2024
Merged by: @timothycarambat

Base: masterHead: 2545-feat-community-hub-integration


📝 Commits (10+)

  • 0c617a2 wip hub connection page fe + backend
  • 3481afb Merge branch 'master' into 2545-feat-community-hub-integration
  • 795c87d lint
  • de7866c implement backend for local hub items + placeholder endpoints to fetch hub app data
  • 8c56b00 Merge branch 'master' into 2545-feat-community-hub-integration
  • 1db99ca fix hebrew translations
  • a7757de Merge branch 'master' into 2545-feat-community-hub-integration
  • 77b1615 revamp community integration flow
  • 890fb29 change sidebar
  • 3f04c71 Auto import if id in URL param

📊 Changes

40 files changed (+2449 additions, -7 deletions)

View changed files

📝 .github/workflows/dev-build.yaml (+1 -1)
📝 frontend/src/App.jsx (+25 -0)
📝 frontend/src/components/SettingsSidebar/index.jsx (+25 -0)
📝 frontend/src/components/WorkspaceChat/index.jsx (+1 -1)
frontend/src/models/communityHub.js (+158 -0)
📝 frontend/src/models/experimental/agentPlugins.js (+14 -0)
📝 frontend/src/pages/Admin/Agents/Imported/ImportedSkillConfig/index.jsx (+73 -2)
frontend/src/pages/GeneralSettings/CommunityHub/Authentication/UserItems/index.jsx (+89 -0)
frontend/src/pages/GeneralSettings/CommunityHub/Authentication/index.jsx (+174 -0)
frontend/src/pages/GeneralSettings/CommunityHub/Authentication/useUserItems.js (+39 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/Completed/index.jsx (+36 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/Introduction/index.jsx (+76 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/AgentSkill.jsx (+186 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/SlashCommand.jsx (+81 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/SystemPrompt.jsx (+106 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/Unknown.jsx (+39 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/index.js (+13 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/index.jsx (+85 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/index.jsx (+77 -0)
frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/index.jsx (+106 -0)

...and 20 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #2545

What is in this change?

  • Adds support for connecting AnythingLLM to AnythingLLM hub
  • Adds Authentication, Trending, and ImportItem pages in system settings

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/2555 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 10/29/2024 **Status:** ✅ Merged **Merged:** 11/26/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `2545-feat-community-hub-integration` --- ### 📝 Commits (10+) - [`0c617a2`](https://github.com/Mintplex-Labs/anything-llm/commit/0c617a2cd3d9fe8232bb2f07a06251b1fff3be62) wip hub connection page fe + backend - [`3481afb`](https://github.com/Mintplex-Labs/anything-llm/commit/3481afbc29270b4a376fdfbbb573489c73f44cb5) Merge branch 'master' into 2545-feat-community-hub-integration - [`795c87d`](https://github.com/Mintplex-Labs/anything-llm/commit/795c87d839fd37730434641c2437a05f611f11c9) lint - [`de7866c`](https://github.com/Mintplex-Labs/anything-llm/commit/de7866c2b33de3cb2c2c84ed6c127c38b4dabd91) implement backend for local hub items + placeholder endpoints to fetch hub app data - [`8c56b00`](https://github.com/Mintplex-Labs/anything-llm/commit/8c56b001d10c48647fae9b11c8bc498c1a84745d) Merge branch 'master' into 2545-feat-community-hub-integration - [`1db99ca`](https://github.com/Mintplex-Labs/anything-llm/commit/1db99ca8af8b8ba3751feef6c465c7d27b3bbd6e) fix hebrew translations - [`a7757de`](https://github.com/Mintplex-Labs/anything-llm/commit/a7757de7a9736b3f459c4a9b8291a03440d95e82) Merge branch 'master' into 2545-feat-community-hub-integration - [`77b1615`](https://github.com/Mintplex-Labs/anything-llm/commit/77b161529bc325bc20eec904faa02c27a318cbbc) revamp community integration flow - [`890fb29`](https://github.com/Mintplex-Labs/anything-llm/commit/890fb29464d4d571f714855ef1d9725a5b2011fc) change sidebar - [`3f04c71`](https://github.com/Mintplex-Labs/anything-llm/commit/3f04c712d98e077cfceeadfb33875f33fbde6f65) Auto import if id in URL param ### 📊 Changes **40 files changed** (+2449 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `frontend/src/App.jsx` (+25 -0) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+25 -0) 📝 `frontend/src/components/WorkspaceChat/index.jsx` (+1 -1) ➕ `frontend/src/models/communityHub.js` (+158 -0) 📝 `frontend/src/models/experimental/agentPlugins.js` (+14 -0) 📝 `frontend/src/pages/Admin/Agents/Imported/ImportedSkillConfig/index.jsx` (+73 -2) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/Authentication/UserItems/index.jsx` (+89 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/Authentication/index.jsx` (+174 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/Authentication/useUserItems.js` (+39 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/Completed/index.jsx` (+36 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/Introduction/index.jsx` (+76 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/AgentSkill.jsx` (+186 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/SlashCommand.jsx` (+81 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/SystemPrompt.jsx` (+106 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/Unknown.jsx` (+39 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/HubItem/index.js` (+13 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/PullAndReview/index.jsx` (+85 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/Steps/index.jsx` (+77 -0) ➕ `frontend/src/pages/GeneralSettings/CommunityHub/ImportItem/index.jsx` (+106 -0) _...and 20 more files_ </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 #2545 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Adds support for connecting AnythingLLM to AnythingLLM hub - Adds Authentication, Trending, and ImportItem pages in system settings ### 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:34:59 -05:00
yindo closed this issue 2026-02-22 18:35:00 -05:00
yindo changed title from [PR #2555] Community hub integration to [PR #2555] [MERGED] Community hub integration 2026-06-05 15:16:28 -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#4031