Skip to content

Commit fbcfbf3

Browse files
committed
feat(test): add test skill plugin with Usage section
Create minimal test skill for development and validation purposes.
1 parent 48b0eb6 commit fbcfbf3

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

plugins/test/skills/test/SKILL.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: test
3+
description: Test skill
4+
---
5+
6+
# Test Skill
7+
8+
This skill is for testing purposes.
9+
10+
## Usage
11+
12+
```bash
13+
echo "This is a test skill"
14+
```

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
"skipLibCheck": true,
1010
"resolveJsonModule": true,
1111
"noEmit": true,
12+
"allowJs": true,
13+
"checkJs": true,
1214
"baseUrl": ".",
1315
"paths": {
1416
"@lib/cache": ["./lib/cache/index.ts"],
1517
"@lib/args": ["./lib/args/index.ts"],
1618
"@lib/helpers": ["./lib/helpers/index.ts"]
1719
}
1820
},
19-
"include": ["**/*.ts"],
21+
"include": ["**/*.ts", "**/*.js"],
2022
"exclude": ["node_modules/", "dist/", "plugins/*/.claude-plugin/"]
2123
}

0 commit comments

Comments
 (0)