@laststance/claude-plugin-dashboard 0.2.3 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/dist/app.d.ts +7 -1
- package/dist/app.js +544 -262
- package/dist/cli.js +60 -67
- package/dist/components/ComponentBadges.d.ts +0 -9
- package/dist/components/ComponentBadges.js +0 -33
- package/dist/components/ComponentDetail.d.ts +32 -0
- package/dist/components/ComponentDetail.js +106 -0
- package/dist/components/ComponentList.d.ts +87 -0
- package/dist/components/ComponentList.js +287 -0
- package/dist/components/HelpOverlay.js +1 -0
- package/dist/components/KeyHints.d.ts +1 -0
- package/dist/components/KeyHints.js +33 -29
- package/dist/components/MarketplaceActionMenu.d.ts +41 -0
- package/dist/components/MarketplaceActionMenu.js +68 -0
- package/dist/components/MarketplaceDetail.d.ts +10 -3
- package/dist/components/MarketplaceDetail.js +10 -4
- package/dist/components/PluginDetail.d.ts +19 -3
- package/dist/components/PluginDetail.js +56 -6
- package/dist/components/PluginList.js +19 -7
- package/dist/services/componentService.d.ts +10 -31
- package/dist/services/componentService.js +19 -174
- package/dist/services/components/hookService.d.ts +17 -0
- package/dist/services/components/hookService.js +45 -0
- package/dist/services/components/index.d.ts +41 -0
- package/dist/services/components/index.js +126 -0
- package/dist/services/components/markdownService.d.ts +39 -0
- package/dist/services/components/markdownService.js +147 -0
- package/dist/services/components/serverService.d.ts +28 -0
- package/dist/services/components/serverService.js +69 -0
- package/dist/services/components/skillService.d.ts +48 -0
- package/dist/services/components/skillService.js +164 -0
- package/dist/services/components/utils.d.ts +23 -0
- package/dist/services/components/utils.js +42 -0
- package/dist/services/marketplaceActionsService.d.ts +17 -0
- package/dist/services/marketplaceActionsService.js +18 -0
- package/dist/services/pluginActionsService.d.ts +31 -2
- package/dist/services/pluginActionsService.js +65 -6
- package/dist/services/pluginService.js +78 -2
- package/dist/store/index.d.ts +46 -0
- package/dist/store/index.js +47 -0
- package/dist/store/slices/marketplaceSlice.d.ts +344 -0
- package/dist/store/slices/marketplaceSlice.js +152 -0
- package/dist/store/slices/pluginSlice.d.ts +1544 -0
- package/dist/store/slices/pluginSlice.js +191 -0
- package/dist/store/slices/uiSlice.d.ts +147 -0
- package/dist/store/slices/uiSlice.js +126 -0
- package/dist/tabs/DiscoverTab.d.ts +8 -2
- package/dist/tabs/DiscoverTab.js +2 -2
- package/dist/tabs/EnabledTab.d.ts +8 -2
- package/dist/tabs/EnabledTab.js +3 -3
- package/dist/tabs/ErrorsTab.js +1 -1
- package/dist/tabs/InstalledTab.d.ts +8 -2
- package/dist/tabs/InstalledTab.js +3 -3
- package/dist/tabs/MarketplacesTab.d.ts +15 -2
- package/dist/tabs/MarketplacesTab.js +13 -4
- package/dist/types/index.d.ts +157 -5
- package/package.json +10 -3
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# Claude Code Plugin Dashboard
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@laststance/claude-plugin-dashboard)
|
|
4
|
+
[](https://www.npmjs.com/package/@laststance/claude-plugin-dashboard)
|
|
4
5
|
[](https://github.com/laststance/claude-plugin-dashboard/actions/workflows/ci.yml)
|
|
5
6
|
[](https://codecov.io/gh/laststance/claude-plugin-dashboard)
|
|
6
7
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -32,7 +33,12 @@ Built with [Ink](https://github.com/vadimdemedes/ink) (React for CLI).
|
|
|
32
33
|
## Installation
|
|
33
34
|
|
|
34
35
|
```bash
|
|
35
|
-
|
|
36
|
+
npx @laststance/claude-plugin-dashboard@latest
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
npm install -g @laststance/claude-plugin-dashboard@latest
|
|
36
42
|
```
|
|
37
43
|
|
|
38
44
|
## Usage
|
package/dist/app.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Main App component for Claude Code Plugin Dashboard
|
|
3
3
|
* Interactive TUI to browse and manage Claude Code plugins
|
|
4
4
|
*/
|
|
5
|
-
import type { AppState, Action, Plugin, FocusZone } from './types/index.js';
|
|
5
|
+
import type { AppState, Action, Plugin, Marketplace, FocusZone } from './types/index.js';
|
|
6
6
|
/**
|
|
7
7
|
* Initial application state
|
|
8
8
|
*/
|
|
@@ -31,6 +31,12 @@ export declare function getItemsForTab(state: AppState): unknown[];
|
|
|
31
31
|
* Get filtered and sorted plugins for discover tab
|
|
32
32
|
*/
|
|
33
33
|
export declare function getFilteredPlugins(state: AppState): Plugin[];
|
|
34
|
+
/**
|
|
35
|
+
* Get filtered marketplaces based on search query
|
|
36
|
+
* @param state - Current app state
|
|
37
|
+
* @returns Filtered array of marketplaces
|
|
38
|
+
*/
|
|
39
|
+
export declare function getFilteredMarketplaces(state: AppState): Marketplace[];
|
|
34
40
|
/**
|
|
35
41
|
* Main App component
|
|
36
42
|
*/
|