Skip to content

Commit f2fd3d3

Browse files
authored
Merge pull request #6 from hrhrng/claude/add-json-share-skill-0rPqr
Claude/add json share skill 0r pqr
2 parents f591244 + ee70b0f commit f2fd3d3

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828
- name: Type check
2929
run: npx tsc --noEmit
3030

31+
- name: Validate skills
32+
run: npx skills add . -y && rm -rf .agents .claude/skills skills-lock.json
33+
3134
- name: Build
3235
run: npm run build
3336
env:

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,9 @@ coverage
3838
.playwright-mcp/
3939
test-results/
4040
playwright-report/
41-
*.spec.ts.snap
41+
*.spec.ts.snap
42+
43+
# Skills install artifacts
44+
.agents/
45+
.claude/skills/
46+
skills-lock.json

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"test:report": "playwright show-report",
1818
"test:vitest": "vitest",
1919
"test:vitest-ui": "vitest --ui",
20-
"test:coverage": "vitest --coverage"
20+
"test:coverage": "vitest --coverage",
21+
"test:skill": "npx skills add . -y && rm -rf .agents .claude/skills skills-lock.json"
2122
},
2223
"dependencies": {
2324
"@monaco-editor/react": "^4.6.0",

skills/present-json/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: present-json
3-
description: Present JSON results to humans via an interactive browser viewer. Use this when you have JSON output (API responses, data analysis, configs, etc.) that would benefit from visual exploration rather than raw text in the terminal. Usage: /present-json [json-content-or-file-path] [tab-name]
3+
description: "Present JSON results to humans via an interactive browser viewer. Use this when you have JSON output (API responses, data analysis, configs, etc.) that would benefit from visual exploration rather than raw text in the terminal. Usage: /present-json [json-content-or-file-path] [tab-name]"
44
allowed-tools: Bash
55
---
66

0 commit comments

Comments
 (0)