Skip to content

Commit de26e73

Browse files
committed
Update skill documentation for improved clarity: Removed redundant line in skill-creator documentation and enhanced the SojuStack best practices skill by specifying repository validation commands and their execution order to ensure code quality and consistency.
1 parent 4629216 commit de26e73

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.agents/skills/skill-creator/SKILL.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ scripts/package_skill.py <path/to/skill-folder> ./dist
334334
The packaging script will:
335335

336336
1. **Validate** the skill automatically, checking:
337-
338337
- YAML frontmatter format and required fields
339338
- Skill naming conventions and directory structure
340339
- Description completeness and quality

.agents/skills/sojustack-best-practices/SKILL.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,13 @@ Use this skill to keep changes idiomatic and safe in this repository.
7272

7373
1. Read nearby code and existing module patterns.
7474
2. Implement the smallest correct change.
75-
3. Run relevant checks/tests for touched files.
76-
4. Ensure unrelated files are not modified.
77-
5. Report what changed, why, and how it was validated.
75+
3. Run repository validation commands from the repo root:
76+
- `pnpm typecheck`
77+
- `pnpm format`
78+
- `pnpm lint`
79+
4. If any of those commands fail, fix the issues and re-run until they pass.
80+
5. Ensure unrelated files are not modified.
81+
6. Report what changed, why, and how it was validated.
7882

7983
## Do / Don't
8084

0 commit comments

Comments
 (0)