prompt-skill-armory 0.5.4 → 0.5.6

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.en.md ADDED
@@ -0,0 +1,206 @@
1
+ # Prompt•Skill-Armory
2
+
3
+ > **A CCswitch-style prompt + skill manager for the DeepSeek Harness**
4
+ > Manage globally injected prompts, install skills from `.md`/directory/zip, and browse agent presets — one panel with enable/disable switches.
5
+
6
+ [**中文**](./README.md) · **English**
7
+
8
+ ![version](https://img.shields.io/badge/version-0.5.5-00ff9c)
9
+ ![license](https://img.shields.io/badge/license-MIT-blue)
10
+ ![platform](https://img.shields.io/badge/platform-web%20%2B%20desktop-00ff9c)
11
+
12
+ ```
13
+ ✦ Prompt•Skill-Armory [v0.5.5]
14
+ ┌────────────┬──────────────────┬──────────────┐
15
+ │ 提示词 │ 技能 │ Agent预设 │
16
+ │ (全局生效) │ (合并管理) │ (roster) │
17
+ └────────────┴──────────────────┴──────────────┘
18
+ ```
19
+
20
+ ---
21
+
22
+ ## 📑 Table of contents
23
+
24
+ - [🚀 Quick start](#-quick-start)
25
+ - [✨ Features](#-features)
26
+ - [🖥️ Platform support](#️-platform-support)
27
+ - [🧰 Using a skill in chat](#-using-a-skill-in-chat)
28
+ - [🏗️ Architecture](#️-architecture)
29
+ - [📦 Packages](#-packages)
30
+ - [🗂️ Repository layout](#️-repository-layout)
31
+ - [🛠️ Development](#️-development)
32
+ - [❓ FAQ](#-faq)
33
+ - [📚 Docs](#-docs)
34
+ - [🤝 Contributing / Upstream](#-contributing--upstream)
35
+ - [📄 License](#-license)
36
+
37
+ ---
38
+
39
+ ## 🚀 Quick start
40
+
41
+ ### Install
42
+
43
+ ```bash
44
+ npx prompt-skill-armory
45
+ ```
46
+
47
+ The installer automatically:
48
+
49
+ 1. Locates DSH home
50
+ 2. Ensures `web` + `desktop` profiles exist
51
+ 3. Installs both plugin packages (Host + Web panel)
52
+ 4. Configures the Host bundle
53
+ 5. Mounts the panel (profile `cordis.patch.yml`)
54
+ 6. Health-checks settings (prevents 4MB bloat)
55
+
56
+ ### Launch
57
+
58
+ ```bash
59
+ cd deepseek-harness
60
+ pnpm run build
61
+ pnpm dsh web
62
+ ```
63
+
64
+ (Or simply relaunch the DSH Desktop client.)
65
+
66
+ Open **Settings → Prompt•Skill-Armory** (book icon).
67
+
68
+ > **Requirement**: DeepSeek Harness runtime already installed (`dsh web` or the Desktop client). This is a plugin for DSH — it does not bundle the runtime itself.
69
+
70
+ ---
71
+
72
+ ## ✨ Features
73
+
74
+ - **Prompts (global)** — CRUD, enable/disable, set default. Enabled prompts are injected into **every agent's system prompt** via `ctx.systemPrompt.section`.
75
+ - **Skills (merged)** — one list: panel-installed (edit/toggle/uninstall) + locally scanned (managed), with invoke hint `/name`.
76
+ - **Skill install paths**
77
+ - Manual entry
78
+ - `.md` file picker
79
+ - CLI in a session: `/armory-skill-dir <dir>`, `/armory-install-zip <zip>`
80
+ - **Agent presets** — browse the roster, set default.
81
+ - **Bilingual UI** (Simplified Chinese / English).
82
+ - **Book icon** in the settings sidebar.
83
+
84
+ ## 🖥️ Platform support
85
+
86
+ | Environment | Panel | `/armory` commands |
87
+ |---|---|---|
88
+ | `dsh web` (official) | ✅ | ✅ |
89
+ | DSH Desktop client | ✅ | ✅ |
90
+
91
+ Works via profile composition (the installer mounts the panel into each profile's `cordis.patch.yml`) — no fork of the client needed.
92
+
93
+ ## 🧰 Using a skill in chat
94
+
95
+ Type `/` then the skill name:
96
+
97
+ ```
98
+ /code-review
99
+ /mission-keeper
100
+ ```
101
+
102
+ The skill body is injected; the agent follows it. Model-invocable skills are also visible to the model.
103
+
104
+ ## 🏗️ Architecture
105
+
106
+ ```
107
+ ┌──────────────────────────────────────────────────────┐
108
+ │ DSH runtime │
109
+ │ │
110
+ │ ┌─────────────┐ RPC/connection ┌─────────────┐ │
111
+ │ │ Web panel │◄──────────────────►│ Host service│ │
112
+ │ │ ui-switchblade│ api.skills.* │ switchblade │ │
113
+ │ │ (settings) │ api.settings.* │ (bundle) │ │
114
+ │ └─────────────┘ └──────┬──────┘ │
115
+ │ │ │
116
+ │ ctx.systemPrompt.section│
117
+ │ ctx.skills.register │
118
+ │ │ │
119
+ │ ┌─────────────┴──────┐ │
120
+ │ │ each agent's system │ │
121
+ │ │ prompt / skill │ │
122
+ │ │ registry / presets │ │
123
+ │ └────────────────────┘ │
124
+ └──────────────────────────────────────────────────────┘
125
+ ```
126
+
127
+ - **Host service** (`switchblade` bundle) owns prompt/skill/preset CRUD + persistence, injecting globally via `ctx.systemPrompt.section` and registering skills via `ctx.skills.register`.
128
+ - **Web panel** (`ui-switchblade`) talks to the Host over connection RPC (`api.skills.list`, `api.agentPresets.list`, `api.settings.mutate/describe`) — never touches DSH internals directly.
129
+ - **Installer** wires both into DSH via profile composition — web and desktop share the same mechanism.
130
+
131
+ ## 📦 Packages
132
+
133
+ | Package | Role |
134
+ |---|---|
135
+ | `prompt-skill-armory` | npm installer (CLI) |
136
+ | `@deepseek-ai/dsh-switchblade` | Host service (prompts/skills/commands) |
137
+ | `@deepseek-ai/dsh-client-ui-switchblade` | Web panel |
138
+
139
+ ## 🗂️ Repository layout
140
+
141
+ ```
142
+ prompt-skill-armory/
143
+ ├── cli.cjs # one-command install CLI
144
+ ├── package.json # npm installer package
145
+ ├── packages/ # shipped plugin builds (lib+src+manifest)
146
+ │ ├── switchblade/ # @deepseek-ai/dsh-switchblade (Host)
147
+ │ └── client-ui-switchblade/ # @deepseek-ai/dsh-client-ui-switchblade (Web)
148
+ ├── plugin-src/ # plugin source mirrors
149
+ ├── scripts/build-shipped.mjs # sync builds from a DSH checkout
150
+ ├── demo/demo.html # UI preview (mock data)
151
+ ├── README.md # this file (中文) · README.en.md (English)
152
+ ├── UPSTREAM.md # upstream integration guide
153
+ ├── CHANGELOG.md # version history
154
+ ├── PUBLISHING.md # publishing guide
155
+ ├── TESTING.md # testing guide
156
+ ├── LICENSE # MIT
157
+ └── .github/workflows/ci.yml # CI quality gate
158
+ ```
159
+
160
+ ## 🛠️ Development
161
+
162
+ After editing source, rebuild shipped packages:
163
+
164
+ ```bash
165
+ node scripts/build-shipped.mjs <path-to-deepseek-harness>
166
+ ```
167
+
168
+ Version bumps touch three places:
169
+
170
+ 1. `packages/*/package.json` `version`
171
+ 2. `ARMORY_VERSION` (panel constant)
172
+ 3. `CHANGELOG.md`
173
+
174
+ Then rebuild the client bundle so the badge updates.
175
+
176
+ ## ❓ FAQ
177
+
178
+ **Q: Why is my client sidebar icon a gear instead of a book?**
179
+ A: The desktop client's packaged `SettingsRoot` hardcodes the icon mapping. Via the npm installer's profile composition the panel works fine, but the book icon requires upstream integration (see [`UPSTREAM.md`](./UPSTREAM.md)).
180
+
181
+ **Q: Will this affect my existing config / sessions?**
182
+ A: No. The plugin only adds a `switchblade` settings namespace and leaves everything else untouched. The installer also health-checks settings to prevent bloat.
183
+
184
+ **Q: Does it work offline?**
185
+ A: Yes. Copy the npm tarball to the target machine and `npm install <tarball>`; or `file:`-install a local build (see [`TESTING.md`](./TESTING.md)).
186
+
187
+ **Q: Where do skills come from?**
188
+ A: Three ways: manual entry, `.md` file picker, or in-session `/armory-skill-dir` (directory) / `/armory-install-zip` (zip). All land in the merged Skills tab for management.
189
+
190
+ ## 📚 Docs
191
+
192
+ | Doc | Description |
193
+ |---|---|
194
+ | [`README.md`](./README.md) | Chinese readme |
195
+ | [`TESTING.md`](./TESTING.md) | Local functional testing (no publish needed) |
196
+ | [`PUBLISHING.md`](./PUBLISHING.md) | Publishing a new version |
197
+ | [`UPSTREAM.md`](./UPSTREAM.md) | Upstream integration (book-icon PR) |
198
+ | [`CHANGELOG.md`](./CHANGELOG.md) | Full version history |
199
+
200
+ ## 🤝 Contributing / Upstream
201
+
202
+ See [`UPSTREAM.md`](./UPSTREAM.md) — how to upstream the panel natively into `deepseek-ai/deepseek-harness` and `anywhere-labs/dsh-desktop` (book icon in the desktop sidebar).
203
+
204
+ ## 📄 License
205
+
206
+ MIT
package/README.md CHANGED
@@ -1,33 +1,59 @@
1
- # Prompt-SkillArmory
1
+ # Prompt•Skill-Armory
2
2
 
3
- CCswitch-style **prompt + skill manager** for the DeepSeek Harness web UI:
4
- globally injected prompts, skill install (manual / `.md` / directory / zip via
5
- CLI), agent-preset browsing — all in one panel with enable/disable switches.
3
+ > **DeepSeek Harness 的提示词与技能管理器(CCswitch 风格)**
4
+ > 管理全局生效的提示词、从 `.md`/目录/zip 安装技能、浏览 Agent 预设——一个面板,带启用/停用开关。
5
+
6
+ **中文** · [**English**](./README.en.md)
7
+
8
+ ![version](https://img.shields.io/badge/version-0.5.5-00ff9c)
9
+ ![license](https://img.shields.io/badge/license-MIT-blue)
10
+ ![platform](https://img.shields.io/badge/platform-web%20%2B%20desktop-00ff9c)
6
11
 
7
12
  ```
8
- ✦ Prompt-SkillArmory [v0.4.0]
9
- ┌────────────┬─────────────────┬──────────────┐
10
- │ 提示词 │ 技能 │ Agent预设 │
11
- │ (全局生效) │ (合并管理) │ (roster) │
12
- └────────────┴─────────────────┴──────────────┘
13
+ ✦ Prompt•Skill-Armory [v0.5.5]
14
+ ┌────────────┬──────────────────┬──────────────┐
15
+ │ 提示词 │ 技能 │ Agent预设 │
16
+ │ (全局生效) │ (合并管理) │ (roster) │
17
+ └────────────┴──────────────────┴──────────────┘
13
18
  ```
14
19
 
15
20
  ---
16
21
 
17
- ## One-command install
22
+ ## 📑 目录
23
+
24
+ - [🚀 快速开始](#-快速开始)
25
+ - [✨ 功能](#-功能)
26
+ - [🖥️ 平台支持](#️-平台支持)
27
+ - [🧰 在聊天中使用技能](#-在聊天中使用技能)
28
+ - [🏗️ 架构](#️-架构)
29
+ - [📦 包含的包](#-包含的包)
30
+ - [🗂️ 仓库结构](#️-仓库结构)
31
+ - [🛠️ 开发](#️-开发)
32
+ - [❓ FAQ](#-faq)
33
+ - [📚 文档](#-文档)
34
+ - [🤝 贡献 / 官方合入](#-贡献--官方合入)
35
+ - [📄 许可](#-许可)
36
+
37
+ ---
38
+
39
+ ## 🚀 快速开始
40
+
41
+ ### 安装
18
42
 
19
43
  ```bash
20
44
  npx prompt-skill-armory
21
45
  ```
22
46
 
23
- The installer:
24
- 1. locates the harness home (`~/.dsh` or `$DSH_HOME`),
25
- 2. copies the two plugin packages into
26
- `~/.dsh/profiles/web/node_modules/@deepseek-ai/`,
27
- 3. adds the Host bundle to the web profile's `dsh.profile.bundles`,
28
- 4. prints next steps.
47
+ 安装器自动完成:
48
+
49
+ 1. 定位 DSH home
50
+ 2. 确保 `web` + `desktop` profile 存在
51
+ 3. 安装两个插件包(Host + Web 面板)
52
+ 4. 配置 Host bundle
53
+ 5. 挂载面板(profile `cordis.patch.yml`)
54
+ 6. 体检 settings(防 4MB 膨胀)
29
55
 
30
- Then, in your DeepSeek Harness checkout:
56
+ ### 启动
31
57
 
32
58
  ```bash
33
59
  cd deepseek-harness
@@ -35,78 +61,145 @@ pnpm run build
35
61
  pnpm dsh web
36
62
  ```
37
63
 
38
- Open **Settings** **Prompt-SkillArmory** (book icon).
64
+ (或直接重启 DSH Desktop 客户端。)
39
65
 
40
- > **Requirement**: a working DeepSeek Harness runtime (`dsh web`). The plugin
41
- > plugs into DSH; it does not bundle the runtime.
66
+ 打开 **设置 Prompt•Skill-Armory**(书图标)。
67
+
68
+ > **要求**:已安装 DeepSeek Harness 运行时(`dsh web` 或桌面客户端)。插件是 DSH 的插件,不打包运行时本身。
42
69
 
43
70
  ---
44
71
 
45
- ## Features
72
+ ## ✨ 功能
73
+
74
+ - **提示词(全局生效)** — 增删改查、启用/停用、设默认。启用后经 `ctx.systemPrompt.section` 注入**每个 agent** 的系统提示词。
75
+ - **技能(合并管理)** — 一个列表:面板安装的(编辑/开关/卸载)+ 本地扫描的(托管),带调用提示 `/name`。
76
+ - **技能安装方式**
77
+ - 手动填写
78
+ - `.md` 文件选择
79
+ - 会话内命令:`/armory-skill-dir <dir>`、`/armory-install-zip <zip>`
80
+ - **Agent 预设** — 浏览名册、设默认。
81
+ - **中英双语 UI**(简体中文 / English)。
82
+ - **设置侧边栏书图标**。
46
83
 
47
- - **Prompts (global)** — add / edit / enable / disable / set default / delete.
48
- Enabled prompts are injected into every agent's system prompt via
49
- `ctx.systemPrompt.section`.
50
- - **Skills** — one merged list: panel-installed (edit / toggle / uninstall)
51
- and locally scanned (adopt). Per-card invoke hint: `/skill-name`.
52
- - **Skill install paths**
53
- - Manual entry (name / description / content)
54
- - `.md` file picker (browser)
55
- - CLI in a session:
56
- - `/armory-skill-dir <dir>` — directory skill (SKILL.md + references)
57
- - `/armory-install-zip <zip>` — zip bundle
58
- - **Agent presets** — browse the roster, set default.
59
- - Bilingual (简体中文 / English).
60
- - Book icon in the settings sidebar.
84
+ ## 🖥️ 平台支持
61
85
 
62
- > Legacy `/sw-*` command aliases still work.
86
+ | 环境 | 面板 | `/armory` 命令 |
87
+ |---|---|---|
88
+ | `dsh web`(官方) | ✅ | ✅ |
89
+ | DSH Desktop 客户端 | ✅ | ✅ |
63
90
 
64
- ## Using a skill in chat
91
+ 通过 profile 组合实现(安装器把面板挂进每个 profile `cordis.patch.yml`)——无需 fork 客户端。
65
92
 
66
- Type `/` then the skill name in the chat input, e.g.:
93
+ ## 🧰 在聊天中使用技能
94
+
95
+ 在输入框打 `/` + 技能名:
67
96
 
68
97
  ```
69
98
  /code-review
70
99
  /mission-keeper
71
100
  ```
72
101
 
73
- The skill body is injected and the agent follows it. Skills are also visible
74
- to the model when `modelInvocable`.
102
+ 技能体被注入,agent 按它执行。`modelInvocable` 的技能模型也可自主调用。
75
103
 
76
- ---
104
+ ## 🏗️ 架构
105
+
106
+ ```
107
+ ┌──────────────────────────────────────────────────────┐
108
+ │ DSH 运行时 │
109
+ │ │
110
+ │ ┌─────────────┐ RPC/connection ┌─────────────┐ │
111
+ │ │ Web 面板 │◄──────────────────►│ Host 服务 │ │
112
+ │ │ ui-switchblade│ api.skills.* │ switchblade │ │
113
+ │ │ (settings) │ api.settings.* │ (bundle) │ │
114
+ │ └─────────────┘ └──────┬──────┘ │
115
+ │ │ │
116
+ │ ctx.systemPrompt.section│
117
+ │ ctx.skills.register │
118
+ │ │ │
119
+ │ ┌─────────────┴──────┐ │
120
+ │ │ 每个 agent 系统提示词 │ │
121
+ │ │ 技能注册表 / 预设 │ │
122
+ │ └────────────────────┘ │
123
+ └──────────────────────────────────────────────────────┘
124
+ ```
77
125
 
78
- ## Repository layout
126
+ - **Host 服务**(`switchblade` bundle)持有提示词/技能/预设的 CRUD 与持久化,通过 `ctx.systemPrompt.section` 全局注入、`ctx.skills.register` 注册技能。
127
+ - **Web 面板**(`ui-switchblade`)通过 connection RPC 调用 Host(`api.skills.list`、`api.agentPresets.list`、`api.settings.mutate/describe`),不直接碰 DSH 内部。
128
+ - **安装器**把两者通过 profile 组合装进 DSH——web 和 desktop 共用同一套机制。
129
+
130
+ ## 📦 包含的包
131
+
132
+ | 包 | 作用 |
133
+ |---|---|
134
+ | `prompt-skill-armory` | npm 安装器(CLI) |
135
+ | `@deepseek-ai/dsh-switchblade` | Host 服务(提示词/技能/命令) |
136
+ | `@deepseek-ai/dsh-client-ui-switchblade` | Web 面板 |
137
+
138
+ ## 🗂️ 仓库结构
79
139
 
80
140
  ```
81
141
  prompt-skill-armory/
82
- ├── package.json # npm installer package (bin: armory)
83
- ├── cli.mjs # one-command install CLI
84
- ├── packages/ # shipped plugin builds (lib + src + manifests)
85
- │ ├── switchblade/ @deepseek-ai/dsh-switchblade (Host)
86
- │ └── client-ui-switchblade/ @deepseek-ai/dsh-client-ui-switchblade (Web panel)
87
- ├── plugin-src/ # plugin source mirrors (dev reference)
88
- ├── scripts/ # dev helpers (link, build)
89
- ├── demo/demo.html # standalone UI preview (mock data)
90
- ├── CHANGELOG.md # version history
91
- └── PUBLISHING.md # npm publish walkthrough
142
+ ├── cli.cjs # 一键安装 CLI
143
+ ├── package.json # npm 安装器包
144
+ ├── packages/ # 构建好的插件(lib+src+manifest)
145
+ │ ├── switchblade/ # @deepseek-ai/dsh-switchblade (Host)
146
+ │ └── client-ui-switchblade/ # @deepseek-ai/dsh-client-ui-switchblade (Web)
147
+ ├── plugin-src/ # 插件源码镜像
148
+ ├── scripts/build-shipped.mjs # DSH checkout 同步构建产物
149
+ ├── demo/demo.html # UI 预览(mock 数据)
150
+ ├── README.md # 本文(中文)· README.en.md 英文版
151
+ ├── UPSTREAM.md # 官方合入指南
152
+ ├── CHANGELOG.md # 版本历史
153
+ ├── PUBLISHING.md # 发布指南
154
+ ├── TESTING.md # 测试指南
155
+ ├── LICENSE # MIT
156
+ └── .github/workflows/ci.yml # CI 质量门禁
92
157
  ```
93
158
 
94
- ## Development
159
+ ## 🛠️ 开发
160
+
161
+ 改源码后重建发布包:
95
162
 
96
163
  ```bash
97
- # after editing plugin-src, rebuild the shipped packages
98
- node scripts/build-shipped.mjs
164
+ node scripts/build-shipped.mjs <path-to-deepseek-harness>
99
165
  ```
100
166
 
101
- Version bumps touch **three places** together:
167
+ 版本更新三处同步:
168
+
102
169
  1. `packages/*/package.json` `version`
103
- 2. panel `ARMORY_VERSION` in `plugin-src/client/src/client/SwitchbladeSection.tsx`
170
+ 2. `ARMORY_VERSION`(面板常量)
104
171
  3. `CHANGELOG.md`
105
172
 
106
- ## Version history
173
+ 然后重建 client bundle 让版本徽章更新。
174
+
175
+ ## ❓ FAQ
176
+
177
+ **Q: 为什么我的客户端侧边栏图标是齿轮而不是书?**
178
+ A: 桌面客户端打包版的 `SettingsRoot` 硬编码了图标映射。通过 npm 安装器的 profile 组合,面板能正常工作,但书图标需要官方合入(见 [`UPSTREAM.md`](./UPSTREAM.md))。
179
+
180
+ **Q: 会不会影响我已有的配置/会话?**
181
+ A: 不会。插件只新增 `switchblade` settings 命名空间,不动其他配置。安装器还会体检 settings,防止膨胀。
182
+
183
+ **Q: 支持离线安装吗?**
184
+ A: 可以。把 npm 包拷到目标机器,`npm install <tarball>` 即可;或用 `file:` 安装本地构建产物(见 [`TESTING.md`](./TESTING.md))。
185
+
186
+ **Q: 技能从哪里来?**
187
+ A: 三种:手动填写、`.md` 文件选择、会话内 `/armory-skill-dir`(目录)或 `/armory-install-zip`(zip)。安装后统一进"技能"tab 管理。
188
+
189
+ ## 📚 文档
190
+
191
+ | 文档 | 说明 |
192
+ |---|---|
193
+ | [`README.en.md`](./README.en.md) | 英文版自述 |
194
+ | [`TESTING.md`](./TESTING.md) | 本地功能测试(无需发布) |
195
+ | [`PUBLISHING.md`](./PUBLISHING.md) | 发布新版本指南 |
196
+ | [`UPSTREAM.md`](./UPSTREAM.md) | 官方合入指南(书图标 PR) |
197
+ | [`CHANGELOG.md`](./CHANGELOG.md) | 完整版本历史 |
198
+
199
+ ## 🤝 贡献 / 官方合入
107
200
 
108
- See `CHANGELOG.md`. Current: **0.4.0**.
201
+ [`UPSTREAM.md`](./UPSTREAM.md) —— 如何让面板原生内置进 `deepseek-ai/deepseek-harness` 与 `anywhere-labs/dsh-desktop`(客户端侧边栏书图标)。
109
202
 
110
- ## License
203
+ ## 📄 许可
111
204
 
112
205
  MIT
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prompt-skill-armory",
3
- "version": "0.5.4",
4
- "description": "One-command installer for Prompt-SkillArmory (prompts + skills manager) into a DeepSeek Harness web profile",
3
+ "version": "0.5.6",
4
+ "description": "One-command installer for Prompt-SkillArmory (prompts + skills manager) into the DeepSeek Harness (web + desktop)",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "armory": "./cli.cjs"
@@ -11,6 +11,9 @@
11
11
  "packages/"
12
12
  ],
13
13
  "license": "MIT",
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
14
17
  "scripts": {
15
18
  "postinstall": "node ./cli.cjs --postinstall",
16
19
  "build:shipped": "node scripts/build-shipped.mjs"
@@ -21,6 +24,16 @@
21
24
  "dsh",
22
25
  "prompt",
23
26
  "skill",
24
- "ccswitch"
25
- ]
27
+ "ccswitch",
28
+ "agent",
29
+ "desktop"
30
+ ],
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/Qian-Ning/prompt-skill-armory.git"
34
+ },
35
+ "homepage": "https://github.com/Qian-Ning/prompt-skill-armory",
36
+ "bugs": {
37
+ "url": "https://github.com/Qian-Ning/prompt-skill-armory/issues"
38
+ }
26
39
  }