Skip to content

Commit b7cc90f

Browse files
committed
Update documentation to enhance consistency in branding by replacing "AI agent skills" with "skills" and clarifying references to Skiller across multiple files. Adjust descriptions in package.json, README, and DESIGN.md for improved clarity and coherence.
1 parent db43733 commit b7cc90f

10 files changed

Lines changed: 12 additions & 9 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Skiller — agent guidance
22

3-
Skiller is a **cross-platform desktop app** (Electrobun) for installing, syncing, and editing **AI agent skills** across many agents (Claude Code, Cursor, Copilot CLI, etc.). Bundle ID: `com.beautyfree.skiller`.
3+
Skiller is a **cross-platform desktop app** (Electrobun) for installing, syncing, and editing **skills** (`SKILL.md`) across many agents (Claude Code, Cursor, Copilot CLI, etc.). Bundle ID: `com.beautyfree.skiller`.
44

55
## Stack
66

DESIGN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This document is the **visual source of truth** for Skiller. It is adapted from a Linear-inspired reference. **Implementation** lives in `src/mainview/index.css` (tokens, Inter + features), `src/mainview/index.html` (font loading), and `src/mainview/components/Layout.tsx` (shell). Marketing or landing pages can reuse the same tokens; the desktop app prioritizes **dark** surfaces (`#08090a` canvas → `#0f1011` panel → `#191a1b` elevated).
44

5-
**Product:** desktop workspace for managing AI agent skills across editors and CLIs. **Audience:** developers, marketers, managers, and other LLM/tooling users.
5+
**Product:** Skiller — desktop workspace for managing skills across editors and CLIs. **Audience:** developers, marketers, managers, and other LLM/tooling users.
66

77
---
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Skiller Hero Banner](docs/images/screenshots/hero.png)
44

5-
Install, sync, and manage AI agent skills across your coding agents from one desktop app.
5+
Install, sync, and manage skills with Skiller across your coding agents from one desktop app.
66

77
## Why Skiller
88

docs/apple-touch-icon.png

24.2 KB
Loading

docs/favicon-16x16.png

1.05 KB
Loading

docs/favicon-32x32.png

2.09 KB
Loading

docs/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<meta
77
name="description"
8-
content="Skiller — desktop app to install and sync AI agent skills (SKILL.md) across Claude Code, Cursor, and more. Download for macOS, Windows, or Linux from GitHub Releases."
8+
content="Skiller — desktop app to install and sync skills (SKILL.md) across Claude Code, Cursor, and more. Download for macOS, Windows, or Linux from GitHub Releases."
99
/>
1010
<meta property="og:title" content="Skiller" />
1111
<meta
@@ -31,6 +31,9 @@
3131
content="https://raw.githubusercontent.com/beautyfree/skiller-skills-desktop-manager/main/docs/images/og-skiller.png"
3232
/>
3333
<title>Skiller — download</title>
34+
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
35+
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
36+
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
3437
<link rel="preconnect" href="https://fonts.googleapis.com" />
3538
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
3639
<link

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "skiller",
33
"version": "0.1.0",
4-
"description": "A desktop app for managing AI agent skills across Claude Code, Cursor, Copilot, Gemini CLI, and more",
4+
"description": "Skiller — manage skills across Claude Code, Cursor, Copilot, Gemini CLI, and more from one desktop app",
55
"license": "MIT",
66
"author": "Skiller Contributors",
77
"repository": {

src/main/shared-skills.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { join } from "node:path";
22
import { homedir } from "node:os";
33

4-
/** Canonical shared skills directory per Agent Skills spec (~/.agents/skills). */
4+
/** Canonical shared skills directory for Skiller (~/.agents/skills). */
55
export function sharedSkillsDir(): string {
66
return join(homedir(), ".agents", "skills");
77
}

src/mainview/i18n/en.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ const en = {
237237
windowBlurOn: "On",
238238
windowBlurOff: "Off",
239239
windowBlurLockedByEnv:
240-
"Blur is off because AGENTSKILLS_DISABLE_WINDOW_BLUR is set. Your choice is still saved for next launch without it.",
240+
"Blur is off because window blur was disabled via environment variable. Your choice is still saved for next launch without it.",
241241
// Language
242242
language: "Language",
243243
// App Updates
@@ -260,8 +260,8 @@ const en = {
260260
cacheDescription: "Marketplace results are cached locally for 5 minutes. Clear the cache to force a fresh fetch.",
261261
clearCache: "Clear Cache",
262262
cleared: "Cleared",
263-
// Agent Paths
264-
agentSkillPaths: "Agent Skill Paths",
263+
// Per-agent skill paths (Skiller)
264+
skillerPaths: "Skiller Paths",
265265
agentPathsDescription: "Default skill directories for each agent.",
266266
revealInFinder: "Reveal in Finder",
267267
about: "About",

0 commit comments

Comments
 (0)