[PR #1565] [MERGED] [FEAT] Agent skills UI redesign #3711

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1565
Author: @shatfield4
Created: 5/29/2024
Status: Merged
Merged: 6/12/2024
Merged by: @timothycarambat

Base: masterHead: 1564-feat-agent-config-ui-redesign


📝 Commits (10+)

  • 4aa9d0a WIP agent settings redesign
  • dd12c2f WIP rework new agent skill UI
  • 02a7d46 WIP save bar/agent styles
  • 44cf030 WIP update settings fix
  • e593759 desktop agent config UI implementation
  • 731aa5e remove unneeded files
  • ebbf17a fix sql and web browsing plugins not starting & add default badges
  • a7904ce merge with master
  • c441f16 fix serply merge conflict
  • eb16170 review: cleanup unused files/folders/components

📊 Changes

33 files changed (+800 additions, -439 deletions)

View changed files

📝 frontend/jsconfig.json (+4 -2)
📝 frontend/src/App.jsx (+5 -0)
frontend/src/components/ContextualSaveBar/index.jsx (+32 -0)
📝 frontend/src/components/SettingsSidebar/index.jsx (+10 -0)
frontend/src/media/agents/generate-charts.png (+0 -0)
frontend/src/media/agents/generate-save-files.png (+0 -0)
frontend/src/media/agents/rag-memory.png (+0 -0)
frontend/src/media/agents/scrape-websites.png (+0 -0)
frontend/src/media/agents/sql-agent.png (+0 -0)
frontend/src/media/agents/view-summarize.png (+0 -0)
frontend/src/pages/Admin/Agents/Badges/default.jsx (+25 -0)
frontend/src/pages/Admin/Agents/DefaultSkillPanel/index.jsx (+29 -0)
📝 frontend/src/pages/Admin/Agents/GenericSkillPanel/index.jsx (+17 -7)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/DBConnection.jsx (+0 -0)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/NewConnectionModal.jsx (+2 -2)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mssql.png (+0 -0)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mysql.png (+0 -0)
📝 frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/postgresql.png (+0 -0)
frontend/src/pages/Admin/Agents/SQLConnectorSelection/index.jsx (+117 -0)
📝 frontend/src/pages/Admin/Agents/WebSearchSelection/SearchProviderItem/index.jsx (+0 -0)

...and 13 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #1564

What is in this change?

  • Implement new agent skills settings menu
  • Add link to settings menu from agent workspace 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/1565 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 5/29/2024 **Status:** ✅ Merged **Merged:** 6/12/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `1564-feat-agent-config-ui-redesign` --- ### 📝 Commits (10+) - [`4aa9d0a`](https://github.com/Mintplex-Labs/anything-llm/commit/4aa9d0a39be33f6ceb46c8b5d0f2b722b79d0805) WIP agent settings redesign - [`dd12c2f`](https://github.com/Mintplex-Labs/anything-llm/commit/dd12c2f824a3738cf8ae52fd2308dc9d75f9f82a) WIP rework new agent skill UI - [`02a7d46`](https://github.com/Mintplex-Labs/anything-llm/commit/02a7d46507bb5aae9eb10c45b0f6c25014e27a68) WIP save bar/agent styles - [`44cf030`](https://github.com/Mintplex-Labs/anything-llm/commit/44cf0309918743a68b2b405251b930e4ea959ef1) WIP update settings fix - [`e593759`](https://github.com/Mintplex-Labs/anything-llm/commit/e593759272b406607b25e97f945872602fbffc80) desktop agent config UI implementation - [`731aa5e`](https://github.com/Mintplex-Labs/anything-llm/commit/731aa5ed266af03d9e3d419d94f47bbfb5e37331) remove unneeded files - [`ebbf17a`](https://github.com/Mintplex-Labs/anything-llm/commit/ebbf17aeb512cc852de9fe14cc852254b534f8d6) fix sql and web browsing plugins not starting & add default badges - [`a7904ce`](https://github.com/Mintplex-Labs/anything-llm/commit/a7904ce117d1abfa123939056aaeeb120050ba78) merge with master - [`c441f16`](https://github.com/Mintplex-Labs/anything-llm/commit/c441f167aa1ae41e0bf4464db333a47cde5dde7d) fix serply merge conflict - [`eb16170`](https://github.com/Mintplex-Labs/anything-llm/commit/eb16170bab7ff5c1fe9b2ebe0aaebb10d1ea5ab8) review: cleanup unused files/folders/components ### 📊 Changes **33 files changed** (+800 additions, -439 deletions) <details> <summary>View changed files</summary> 📝 `frontend/jsconfig.json` (+4 -2) 📝 `frontend/src/App.jsx` (+5 -0) ➕ `frontend/src/components/ContextualSaveBar/index.jsx` (+32 -0) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+10 -0) ➕ `frontend/src/media/agents/generate-charts.png` (+0 -0) ➕ `frontend/src/media/agents/generate-save-files.png` (+0 -0) ➕ `frontend/src/media/agents/rag-memory.png` (+0 -0) ➕ `frontend/src/media/agents/scrape-websites.png` (+0 -0) ➕ `frontend/src/media/agents/sql-agent.png` (+0 -0) ➕ `frontend/src/media/agents/view-summarize.png` (+0 -0) ➕ `frontend/src/pages/Admin/Agents/Badges/default.jsx` (+25 -0) ➕ `frontend/src/pages/Admin/Agents/DefaultSkillPanel/index.jsx` (+29 -0) 📝 `frontend/src/pages/Admin/Agents/GenericSkillPanel/index.jsx` (+17 -7) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/DBConnection.jsx` (+0 -0) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/NewConnectionModal.jsx` (+2 -2) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mssql.png` (+0 -0) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/mysql.png` (+0 -0) 📝 `frontend/src/pages/Admin/Agents/SQLConnectorSelection/icons/postgresql.png` (+0 -0) ➕ `frontend/src/pages/Admin/Agents/SQLConnectorSelection/index.jsx` (+117 -0) 📝 `frontend/src/pages/Admin/Agents/WebSearchSelection/SearchProviderItem/index.jsx` (+0 -0) _...and 13 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [ ] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [x] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #1564 ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Implement new agent skills settings menu - Add link to settings menu from agent workspace 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. --> - [ ] 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 --- <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:20 -05:00
yindo closed this issue 2026-02-22 18:34:20 -05:00
yindo changed title from [PR #1565] [FEAT] Agent skills UI redesign to [PR #1565] [MERGED] [FEAT] Agent skills UI redesign 2026-06-05 15:14:51 -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#3711