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