소스 정보
- 저장소
- notque/vexjoy-agent
- 최근 소스 활동
- 2026년 5월 10일 19:52
- 감지된 SKILL.md 언어
- 영어
- 스타
- 415
- 포크
- 44
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/notque/vexjoy-agent --skill comment-quality명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | comment-quality |
| description | Review and fix temporal references in code comments. |
| user-invocable | false |
| allowed-tools | ["Read","Write","Bash","Grep","Glob","Edit","Task"] |
| routing | {"triggers":["review comments","fix temporal references","comment quality","stale comments","outdated comment"],"category":"code-quality","pairs_with":["code-cleanup","systematic-code-review"]} |
Review code comments for temporal references, development-activity language, and relative comparisons. Produces structured reports with actionable rewrites that explain WHAT the code does and WHY, only WHAT the code does and WHY. Supports .go, .py, .js, .ts, .md, and .txt files.
Goal: Identify all comments containing temporal, activity, or relative language.
Step 1: Determine scope
Read the repository CLAUDE.md first to pick up any project-specific comment conventions.
Scan only what was requested. If user specifies files, scan those files. If user specifies a directory, scan that directory. Honor the explicit scope -- even if you suspect other files have issues, honor the explicit scope and suggest expansion separately at the end.
If user explicitly requests auto-fix, enable it. Otherwise present findings for review. For large codebases, group findings by directory when reporting.
Step 2: Search for temporal patterns
Flag every instance of the following categories. No temporal word is "harmless" -- all temporal language ages poorly and must be rewritten regardless of how innocuous it seems:
Step 3: Filter false positives
Exclude from findings -- these are not developer comments and must remain untouched:
@generated markers (tooling markers)@deprecated annotations (keep the tag, flag only temporal explanation text after it)When a finding appears, inspect nearby comments in the same function or block -- temporal language tends to cluster.
Gate: All files in scope scanned. Findings list populated with file path, line number, and matched text. Every finding listed, not just the first few. Proceed only when gate passes.
Goal: Understand context for each finding to produce meaningful rewrites.
Step 1: Read surrounding code
For each finding, read the function, block, or section the comment describes. Understand what the code actually does. A rewrite without code context produces vague replacements that strip temporal words without adding substance.
Step 2: Classify the comment
| Finding | Type | Severity |
|---------|------|----------|
| "now uses JWT" | Temporal + Activity | High |
| "improved perf" | Activity | Medium |
| "Copyright 2024" | Legal (skip) | N/A |
Step 3: Determine replacement content
For each comment, identify:
Gate: Every finding classified with context understood. Proceed only when gate passes.
Goal: Generate specific, valuable replacement comments.
Step 1: Draft rewrites
For each finding, produce a structured entry with file path, line number, current text, suggested replacement, and reasoning:
**File: `path/to/file.ext`**
Line X - [Comment type]:
Current: // Authentication now uses JWT tokens
Suggested: // Authenticates requests using signed JWT tokens
Reason: "now uses" is temporal - describe current behavior only
Step 2: Validate rewrite quality
Each rewrite MUST pass these checks:
If a rewrite just removes the temporal word without adding substance, it fails validation. Simply deleting a word produces a useless comment -- // Updated error handling becoming // Error handling adds nothing. Rewrite with specific, descriptive content: // Handles database connection errors with exponential backoff retry.
Gate: All rewrites pass quality checks. No vague or empty replacements. Proceed only when gate passes.
Goal: Deliver structured, actionable report.
Step 1: Generate report
Report facts concisely with file paths and line numbers. Every finding must include the current text, suggested replacement, and reasoning -- a diagnostic-only count without rewrites creates work without providing solutions.
## Comment Quality Review
### Summary
- Files scanned: N
- Issues found: M
- Most common pattern: [temporal word]
### Findings
[All findings with file, line, current text, suggested text, reason]
### Recommendations
1. Apply suggested changes
2. Consider adding linter rules for temporal language prevention
Step 2: Apply fixes (if auto-fix enabled)
If user requested auto-fix, apply all rewrites using Edit tool. Verify each edit succeeded. Wait for explicit user permission before auto-fixing without explicit user authorization.
Step 3: Cleanup
Remove any scan results, intermediate reports, or helper files created during execution.
Gate: Report delivered. All findings accounted for. Task complete.
Cause: Files are clean or scope was too narrow Solution:
Cause: Large codebase with widespread temporal language Solution:
Cause: Comment only makes sense with development context that no longer exists Solution:
Load on demand — only pull what the current task requires.
| Task Signal | Load |
|---|---|
Go files (.go) in scope | references/go-comment-patterns.md |
Error handling code (try/catch, if err !=, raise) | references/error-handling-patterns.md |
| Performance code (cache, pool, batch, concurrency, goroutine) | references/performance-patterns.md |
| General rewrite examples needed | references/examples.md |
| Full failure mode reference | references/preferred-patterns.md |
| Language-specific (Go, Python, JS/TS) or documentation (README, API) comments | references/preferred-patterns-language-specific.md |
${CLAUDE_SKILL_DIR}/references/preferred-patterns.md: Core temporal failure mode catalog (language-agnostic)${CLAUDE_SKILL_DIR}/references/preferred-patterns-language-specific.md: Language-specific and documentation-targeted failure modes${CLAUDE_SKILL_DIR}/references/examples.md: Before/after examples of comment rewrites${CLAUDE_SKILL_DIR}/references/go-comment-patterns.md: Go-specific temporal patterns with grep/rg detection commands${CLAUDE_SKILL_DIR}/references/error-handling-patterns.md: Temporal patterns in error handling code with detection commands${CLAUDE_SKILL_DIR}/references/performance-patterns.md: Temporal patterns in performance-related comments with detection commands