Skip to content

Commit dda3f1b

Browse files
committed
update
1 parent f50156c commit dda3f1b

13 files changed

Lines changed: 102 additions & 70 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ manus/
4444
# Batch files
4545
*.bat
4646
.npm-cache
47-
Skill Manager.app
47+
Skills Desktop.app
4848
*.exe
4949
*.dmg

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
# Skill Manager
1+
# Skills Desktop
22

33
[中文](./docs/README_CN.md)
44

55
A desktop application for managing Claude Code Skills, supporting browsing, installation, import, and security scanning for system-level and project-level Skills.
66

7-
![Screenshot](./src/assets/d5a32d32fda7567c59c55cecd707a5a4.jpg)
8-
97
## Quick Start
108

119
Download the latest version directly from [Releases](https://github.com/buzhangsan/skills-manager-client/releases).
1210

13-
For a smarter way to find skills, use this CLI tool: https://github.com/buzhangsan/skill-manager
11+
For a smarter way to find skills, use this CLI tool: https://github.com/Harries/skills-desktop
1412

1513
If you have any issues, please report them in [Issues](https://github.com/buzhangsan/skills-manager-client/issues).
1614

data/app.png

19.6 KB
Loading

docs/task.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
1.换成接口后,不能安装包
1+
22
2.默认本地数据,只有setting配置接口才走接口获取数据
3-
3.github地址和反馈换一下
4-
4.MySkills前面有特殊符号,去掉
3+
3.github地址和反馈换一下 https://github.com/Harries/skills-desktop和https://github.com/Harries/skills-desktop/issues
4+
4.MySkills前面有特殊符号,去掉
5+
5.安装完,在你我的skills里面看不到
6+
名字skill-manager 改成skills-desktop

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "skill-manager",
2+
"name": "skills-desktop",
33
"private": true,
44
"version": "0.0.0",
55
"type": "module",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
2-
name = "skill-manager"
2+
name = "skills-desktop"
33
version = "1.3.0"
4-
description = "Skill Manager Desktop App"
4+
description = "Skills Desktop App"
55
authors = ["you"]
66
license = ""
77
repository = ""

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2.0.0",
3-
"productName": "Skill Manager",
3+
"productName": "Skills Desktop",
44
"version": "1.3.0",
55
"identifier": "com.skillmanager.desktop",
66
"build": {
@@ -38,7 +38,7 @@
3838
"app": {
3939
"windows": [
4040
{
41-
"title": "Skill Manager",
41+
"title": "Skills Desktop",
4242
"width": 1200,
4343
"height": 800,
4444
"resizable": true,

src/components/layout/Navbar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Link, useLocation } from 'react-router-dom';
2-
import { Sun, Moon, Library, ShoppingBag, Settings } from 'lucide-react';
2+
import { Sun, Moon, Boxes, ShoppingBag, Settings } from 'lucide-react';
33
import { useEffect, useState } from 'react';
44
import { useTranslation } from 'react-i18next';
55

@@ -30,7 +30,7 @@ function Navbar() {
3030
}, [theme]);
3131

3232
const navItems = [
33-
{ path: '/my-skills', label: t('mySkills'), icon: Library },
33+
{ path: '/my-skills', label: t('mySkills'), icon: Boxes },
3434
{ path: '/marketplace', label: t('marketplace'), icon: ShoppingBag },
3535
{ path: '/settings', label: t('settings'), icon: Settings },
3636
];
@@ -62,7 +62,7 @@ function Navbar() {
6262
<div className="w-8 h-8 bg-primary rounded-lg flex items-center justify-center text-white">
6363
S
6464
</div>
65-
<span>Skill Manager</span>
65+
<span>Skills Desktop</span>
6666
</Link>
6767
</div>
6868

src/components/layout/Sidebar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { NavLink } from 'react-router-dom';
2-
import { LayoutDashboard, Library, ShoppingBag, ShieldCheck, Settings, Box } from 'lucide-react';
2+
import { LayoutDashboard, Boxes, ShoppingBag, ShieldCheck, Settings, Box } from 'lucide-react';
33
import clsx from 'clsx';
44

55
const Sidebar = () => {
66
const navItems = [
77
{ to: '/', icon: LayoutDashboard, label: 'Dashboard' },
8-
{ to: '/my-skills', icon: Library, label: 'My Skills' },
8+
{ to: '/my-skills', icon: Boxes, label: 'My Skills' },
99
{ to: '/marketplace', icon: ShoppingBag, label: 'Marketplace' },
1010
{ to: '/security', icon: ShieldCheck, label: 'Security' },
1111
{ to: '/settings', icon: Settings, label: 'Settings' },
@@ -18,7 +18,7 @@ const Sidebar = () => {
1818
<Box size={24} />
1919
</div>
2020
<div>
21-
<h1 className="font-bold text-lg">Skill Manager</h1>
21+
<h1 className="font-bold text-lg">Skills Desktop</h1>
2222
<p className="text-xs text-base-content/60">v1.0.0</p>
2323
</div>
2424
</div>

0 commit comments

Comments
 (0)