@wanxuchen/test-skill-2 1.0.0

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/SKILL.md ADDED
@@ -0,0 +1,25 @@
1
+ # Test Skill 2
2
+
3
+ 这是一个测试 Skill,用于验证 SkillMarket 卸载更新流程。
4
+
5
+ ## 功能
6
+
7
+ - 测试卸载
8
+ - 测试更新
9
+
10
+ ## 使用方法
11
+
12
+ ```bash
13
+ skm install test-skill-2
14
+ skm update test-skill-2
15
+ skm uninstall test-skill-2
16
+ ```
17
+
18
+ ## 平台支持
19
+
20
+ - OpenCode
21
+ - Cursor
22
+ - VSCode
23
+ - Claude Code
24
+ - Codex
25
+ - Antigravity
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ # Test Skill 2 Index
2
+
3
+ This is a test skill for testing uninstall and update flows.
package/metadata.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "id": "test-skill-2",
3
+ "version": "1.0.0"
4
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@wanxuchen/test-skill-2",
3
+ "version": "1.0.0",
4
+ "description": "Test Skill 2 - 用于测试 SkillMarket 卸载更新",
5
+ "main": "index.js",
6
+ "skillmarket": {
7
+ "id": "test-skill-2",
8
+ "displayName": "Test Skill 2",
9
+ "description": "Test Skill 2 - 用于测试 SkillMarket 卸载更新流程",
10
+ "platforms": ["opencode", "cursor", "vscode", "claude", "codex", "antigravity"]
11
+ }
12
+ }