You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude/skills/quality-scan/SKILL.md
+132-9Lines changed: 132 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
---
2
2
name: quality-scan
3
-
description: Performs comprehensive quality scans across codebase to identify critical bugs, logic errors, caching issues, and workflow problems. Spawns specialized agents for targeted analysis and generates prioritized improvement tasks. Use when improving code quality, before releases, or investigating issues.
3
+
description: Cleans up junk files (SCREAMING_TEXT.md, temp files) and performs comprehensive quality scans across codebase to identify critical bugs, logic errors, caching issues, and workflow problems. Spawns specialized agents for targeted analysis and generates prioritized improvement tasks. Use when improving code quality, before releases, or investigating issues.
4
4
---
5
5
6
6
# quality-scan
7
7
8
8
<task>
9
-
Your task is to perform comprehensive quality scans across the socket-btm codebase using specialized agents to identify critical bugs, logic errors, caching issues, and workflow problems. Generate a prioritized report with actionable improvement tasks.
9
+
Your task is to perform comprehensive quality scans across the socket-btm codebase using specialized agents to identify critical bugs, logic errors, caching issues, and workflow problems. Before scanning, clean up junk files (SCREAMING_TEXT.md files, temporary test files, etc.) to ensure a clean and organized repository. Generate a prioritized report with actionable improvement tasks.
10
10
</task>
11
11
12
12
<context>
@@ -35,6 +35,7 @@ This is Socket Security's binary tooling manager (BTM) that:
35
35
- Improves code quality systematically
36
36
- Provides actionable fixes with file:line references
37
37
- Prioritizes issues by severity for efficient remediation
38
+
- Cleans up junk files for a well-organized repository
38
39
39
40
**Agent Prompts:**
40
41
All agent prompts are embedded in `reference.md` with structured <context>, <instructions>, <pattern>, and <output_format> tags following Claude best practices.
@@ -92,7 +93,82 @@ git status
92
93
93
94
---
94
95
95
-
### Phase 2: Determine Scan Scope
96
+
### Phase 2: Repository Cleanup
97
+
98
+
<action>
99
+
Clean up junk files and organize the repository before scanning:
100
+
</action>
101
+
102
+
**Cleanup Tasks:**
103
+
104
+
1.**Remove SCREAMING_TEXT.md files** (all-caps .md files) that are NOT:
105
+
- Inside `.claude/` directory
106
+
- Inside `docs/` directory
107
+
- Named `README.md`, `LICENSE`, or `SECURITY.md`
108
+
109
+
2.**Remove temporary test files** in wrong locations:
110
+
-`.test.mjs` or `.test.mts` files outside `test/` or `__tests__/` directories
0 commit comments