mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-04-29 20:20:42 +00:00
redesign plugin marketplace; simplify API
- Updated the plugin installation API to fetch and augment plugin discussions from GitHub, improving the index response with discussion links. - Refactored the plugin installation UI to include better handling of plugin details, including management buttons for installed plugins. - Improved the layout and styling of the plugin browsing interface, including search and sort functionalities, and added a summary of available plugins.
This commit is contained in:
parent
870351280a
commit
eac0d3bc74
11 changed files with 1733 additions and 578 deletions
|
|
@ -7,7 +7,7 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<div x-data x-on:plugin-modal-closed.window="$store.pluginListStore.refresh()">
|
||||
<div x-data>
|
||||
<template x-if="$store.pluginListStore">
|
||||
<div x-init="$store.pluginListStore.init && $store.pluginListStore.init()">
|
||||
|
||||
|
|
@ -224,7 +224,9 @@
|
|||
|
||||
.plugins-toolbar-actions {
|
||||
margin-left: auto;
|
||||
display: flex;
|
||||
flex: 0 0 auto;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.plugins-list {
|
||||
|
|
@ -233,7 +235,7 @@
|
|||
|
||||
.plugin-card {
|
||||
border: 1px solid var(--color-border);
|
||||
border-radius: 4px;
|
||||
border-radius: 0.5rem;
|
||||
padding: 0.75rem;
|
||||
margin-top: 0.75rem;
|
||||
background: var(--color-background);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue