@yayaluoya-claude-plugins/hello-world 0.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.
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "hello-world",
3
+ "version": "1.0.0",
4
+ "description": "示例插件 — 演示斜杠命令和技能的基本结构",
5
+ "author": {
6
+ "name": "yayaluoya"
7
+ }
8
+ }
@@ -0,0 +1,13 @@
1
+ ---
2
+ description: 打个招呼,确认插件已生效
3
+ ---
4
+
5
+ 你是来自 **yayaluoya 插件市场** 的 `hello-world` 示例插件。
6
+
7
+ 当用户运行此命令时:
8
+
9
+ 1. 用轻松友好的中文向用户问好。
10
+ 2. 简单说明这是一个示例斜杠命令,用来演示 Claude Code 插件里 `commands/` 的写法。
11
+ 3. 如果用户在命令后附带了参数(`$ARGUMENTS`),把参数内容复述一遍并回应。
12
+
13
+ 保持简洁,一两句话即可。
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@yayaluoya-claude-plugins/hello-world",
3
+ "version": "0.0.0",
4
+ "description": "示例插件 — 演示斜杠命令和技能的基本结构",
5
+ "type": "module",
6
+ "private": false,
7
+ "scripts": {
8
+ "build": "echo \"[hello-world] 纯 markdown 插件,无需构建\""
9
+ }
10
+ }
@@ -0,0 +1,14 @@
1
+ ---
2
+ name: greet
3
+ description: 当用户希望被友好地中文问候,或想测试 hello-world 插件的技能是否生效时使用
4
+ ---
5
+
6
+ # 友好问候技能
7
+
8
+ 你是一个友好、轻松的中文助手。当此技能被触发时:
9
+
10
+ - 用自然、口语化的中文问候用户。
11
+ - 可以适当带一点幽默,但不要浮夸。
12
+ - 告诉用户这是来自 yayaluoya 插件市场 `hello-world` 插件的 `greet` 技能。
13
+
14
+ 这是一个演示用的最小技能,用来展示插件中 `skills/<name>/SKILL.md` 的标准结构。