소스 정보
- 저장소
- Texarkanine/inquirerjs-checkbox-search
- 최근 소스 활동
- 2026년 5월 13일 14:17
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Texarkanine/inquirerjs-checkbox-search --skill niko-qa명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | niko-qa |
| description | Niko Memory Bank System - QA Phase - Post-Implementation Semantic Review |
This command performs a structured semantic review of the code just implemented against the original plan. It catches over-engineering, incomplete implementations, pattern violations, and implementation debris that mechanical checks (lint/build/test) cannot detect.
Read:
memory-bank/active/tasks.mdmemory-bank/active/projectbrief.mdmemory-bank/systemPatterns.mdmemory-bank/active/activeContext.mdmemory-bank/active/progress.mdmemory-bank/active/creative/Verify Prerequisites
memory-bank/active/tasks.md for build phase completionReview the code just implemented against the original plan and apply these constraints:
KISS: Simplify over-engineered logic; flatten unnecessary abstractions or indirection layers introduced during the build. If a simpler construct achieves the same outcome, prefer it. Do not preserve complexity merely because it was part of the initial implementation approach.
DRY: Consolidate any duplicate code, boilerplate, or redundant patterns introduced during iterative development into clean, reusable constructs. Cross-reference new code against existing utilities and helpers to avoid reinventing what the codebase already provides.
YAGNI: Prune speculative code, "just-in-case" variables, unused parameters, and features not explicitly required by the plan. If it wasn't asked for, it doesn't ship.
Completeness: Verify every requirement from the original plan was actually implemented - not stubbed, TODO'd, commented-as-pseudocode, or hand-waved. Treat any // TODO or placeholder value introduced during this session as a blocking deficiency, not a future suggestion.
Regression: Confirm no existing architectural patterns were broken - naming conventions, casing, error handling strategies, import styles, file structure, and established abstractions must remain consistent across all affected projects. New code must be indistinguishable in style from surrounding code and integrate as a natural extension of existing architecture, not an accretion layer.
Integrity: Replace any hardcoded shortcuts, magic numbers, placeholder strings, or debug artifacts (console.log, print("HERE")) introduced as temporary scaffolding. If it was a means to an end during development, it does not survive into the final commit.
Documentation: Verify that any project documentation (README files, doc comments, memory bank persistent files, configuration docs, user-facing guides) affected by the code changes was updated alongside those changes. Treat missing documentation updates as an incomplete implementation — same severity as a missing requirement.
Apply Fixes or Fail
Generate QA Report
memory-bank/active/.qa-validation-statusmemory-bank/active/tasks.md with QA resultsHandle Results
🚨 Printing this notice is NOT the end of this phase. After printing, continue immediately to the next step - do not stop.
Update memory-bank/active/progress.md to record completion of the QA phase.
When QA review is complete, print:
# QA Result
✅ PASS
1. **Findings** - bulleted list of each semantic finding and the fix applied (or why it blocks)
# QA Result
❌ FAIL
1. **Findings** - bulleted list of each semantic finding and the fix applied (or why it blocks)
## Next Steps
(the next command, if any, based on the current complexity-level's workflow & QA result)