jhste-skills 0.5.0 → 0.5.2
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/CHANGELOG.md +11 -0
- package/README.en.md +16 -7
- package/README.md +16 -7
- package/package.json +1 -1
- package/skills/jhste-coding/SKILL.md +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.5.2 - 2026-07-12
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- Updated installation examples to use the current `.agents/skills` locations for user-wide and repository-scoped skills.
|
|
9
|
+
- Clarified when `jhste-coding` should not trigger and required relevant non-destructive validation after code changes.
|
|
10
|
+
|
|
11
|
+
## 0.5.1 - 2026-07-10
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Refined final-response guidance to report validation and material caveats without generic brevity instructions.
|
|
15
|
+
|
|
5
16
|
## 0.5.0 - 2026-07-02
|
|
6
17
|
|
|
7
18
|
### Changed
|
package/README.en.md
CHANGED
|
@@ -10,25 +10,34 @@ This repository provides one skill:
|
|
|
10
10
|
|
|
11
11
|
It does not vendor workflow skills. Use `mattpocock/skills` separately for broader planning, issue, PRD, debugging, architecture, or review workflows.
|
|
12
12
|
|
|
13
|
-
## Install from npm
|
|
13
|
+
## Install user-wide from npm
|
|
14
14
|
|
|
15
15
|
This package does not provide a CLI. The npm package is a small distribution bundle for the skill file.
|
|
16
16
|
|
|
17
17
|
```sh
|
|
18
18
|
npm install -g jhste-skills
|
|
19
|
-
mkdir -p
|
|
20
|
-
cp -R "$(npm root -g)/jhste-skills/skills/jhste-coding"
|
|
19
|
+
mkdir -p "$HOME/.agents/skills"
|
|
20
|
+
cp -R "$(npm root -g)/jhste-skills/skills/jhste-coding" "$HOME/.agents/skills/"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
After updating the npm package, run the copy command again to refresh the installed skill.
|
|
24
24
|
|
|
25
|
-
## Install from the repository
|
|
25
|
+
## Install user-wide from the repository
|
|
26
26
|
|
|
27
27
|
```sh
|
|
28
|
-
mkdir -p
|
|
29
|
-
cp -R skills/jhste-coding
|
|
28
|
+
mkdir -p "$HOME/.agents/skills"
|
|
29
|
+
cp -R skills/jhste-coding "$HOME/.agents/skills/"
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
For repository-scoped use, copy the skill from this checkout into the target repository's `.agents/skills` directory.
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
mkdir -p /path/to/target-repo/.agents/skills
|
|
36
|
+
cp -R skills/jhste-coding /path/to/target-repo/.agents/skills/
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
If another agent expects a different skills directory, copy `skills/jhste-coding/` there instead. Restart Codex if the updated skill does not appear.
|
|
40
|
+
|
|
32
41
|
## SOLID-first discipline
|
|
33
42
|
|
|
34
43
|
`jhste-coding` keeps code changes small and practical, with SOLID as the main lens:
|
package/README.md
CHANGED
|
@@ -10,25 +10,34 @@
|
|
|
10
10
|
|
|
11
11
|
이 저장소는 workflow 스킬을 vendoring하지 않습니다. 더 넓은 계획, 이슈, PRD, 디버깅, 아키텍처, 리뷰 workflow에는 `mattpocock/skills`를 별도로 사용하세요.
|
|
12
12
|
|
|
13
|
-
## npm으로 설치
|
|
13
|
+
## npm으로 사용자 전역 설치
|
|
14
14
|
|
|
15
15
|
이 패키지는 CLI를 제공하지 않습니다. npm 패키지는 스킬 파일을 배포하기 위한 작은 번들입니다.
|
|
16
16
|
|
|
17
17
|
```sh
|
|
18
18
|
npm install -g jhste-skills
|
|
19
|
-
mkdir -p
|
|
20
|
-
cp -R "$(npm root -g)/jhste-skills/skills/jhste-coding"
|
|
19
|
+
mkdir -p "$HOME/.agents/skills"
|
|
20
|
+
cp -R "$(npm root -g)/jhste-skills/skills/jhste-coding" "$HOME/.agents/skills/"
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
npm 패키지를 업데이트한 뒤에는 복사 명령을 다시 실행해야 설치된 스킬도 갱신됩니다.
|
|
24
24
|
|
|
25
|
-
## 저장소에서 설치
|
|
25
|
+
## 저장소에서 사용자 전역 설치
|
|
26
26
|
|
|
27
27
|
```sh
|
|
28
|
-
mkdir -p
|
|
29
|
-
cp -R skills/jhste-coding
|
|
28
|
+
mkdir -p "$HOME/.agents/skills"
|
|
29
|
+
cp -R skills/jhste-coding "$HOME/.agents/skills/"
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
특정 저장소에서만 사용하려면 이 저장소를 내려받은 위치에서 대상 저장소의 `.agents/skills`로 복사하세요.
|
|
33
|
+
|
|
34
|
+
```sh
|
|
35
|
+
mkdir -p /path/to/target-repo/.agents/skills
|
|
36
|
+
cp -R skills/jhste-coding /path/to/target-repo/.agents/skills/
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
다른 에이전트가 별도 skills 디렉터리를 요구하면 `skills/jhste-coding/`을 그 위치로 복사하세요. Codex가 변경된 스킬을 표시하지 않으면 다시 시작하세요.
|
|
40
|
+
|
|
32
41
|
## SOLID-first 규율
|
|
33
42
|
|
|
34
43
|
`jhste-coding`은 작은 실제 코드 변경에 SOLID를 주된 렌즈로 적용합니다.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jhste-coding
|
|
3
|
-
description:
|
|
3
|
+
description: Use for implementation, bug fixes, and refactors that modify repository code with lightweight SOLID-first discipline. Do not use for read-only review, planning, architecture discussion, or documentation-only work.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# jhste-coding
|
|
@@ -29,8 +29,9 @@ Use SOLID for the current change; speculative architecture, broad refactors, and
|
|
|
29
29
|
- Validate external input where it enters the code path.
|
|
30
30
|
- Make uncertain, partial, and failed states visible rather than silently treating them as success.
|
|
31
31
|
- Keep secrets, tokens, credentials, cookies, authorization headers, sessions, and raw sensitive payloads out of logs and responses.
|
|
32
|
+
- After changing code, run the narrowest relevant non-destructive validation. If it cannot run, state why; do not imply the change is verified.
|
|
32
33
|
- When adding or changing tests, focus on observable behavior related to the change.
|
|
33
34
|
|
|
34
35
|
## Final response
|
|
35
36
|
|
|
36
|
-
|
|
37
|
+
Report what changed, what validation ran, and any material caveat; omit unchanged details and generic background.
|