Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/aiskillstore/marketplace --skill truth-layer명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | truth-layer |
| description | When you discover a blocker: |
Purpose: Validates all claims, detects false positives, and blocks progress when issues are unresolved.
Core Principle: Better to stop and fix properly than claim success with hidden problems.
When to Block:
Watch for these lies:
Pattern Recognition:
When you discover a blocker:
BLOCKER FOUND: [Clear title]
- What failed: [Specific technical issue]
- Impact: [What can't proceed]
- Root cause: [Why it failed]
- Current state: [Facts not opinions]
- Next step: [Specific action to unblock]
STOP PROGRESS on [dependent features]
Route to: Build Diagnostics Agent
interface TruthCheckResult {
isValid: true; // Can proceed
issues: []; // No problems
confidence: number; // 0-100
}
// OR
{
isValid: false; // STOP
blocker: string; // Why
mustFix: string[]; // What to fix
cannotProceed: string[]; // Blocked tasks
}
npm run typecheckFormat for Blocker Report:
Truth Layer Verification: [timestamp]
CLAIM: "[What was claimed]"
REALITY: "[What actually is]"
CONFIDENCE: [0-100]%
BLOCKERS FOUND: [Y/N]
- [List each]
DEPENDENT FEATURES BLOCKED: [List]
ACTION: [Specific fix needed]
Truth Layer sits BEFORE every agent task:
Task Request
↓
Truth Layer Validation
├─→ VALID: Route to specialist agent
└─→ BLOCKED: Route to Diagnostics Agent + report
When blocked, automatically:
Never assume, always verify.
✅ System is 100% honest ✅ All blockers caught before progress ✅ No false "complete" reports ✅ Team trusts all status reports ✅ Issues surface quickly, not at deployment
❌ Claiming "ready" without testing ❌ Ignoring build warnings ❌ Stub test files counting as coverage ❌ Type errors that compile away ❌ Unreviewed automatic changes ❌ Optimistic progress reports
BLOCKER: Turbopack build fails
- Error: Cannot write manifest.json
- Cause: Missing directory structure
- Impact: Cannot deploy any changes
- Fix: Create directory structure and retry
This blocks: UI changes, API updates, feature deployment
Estimated fix time: 30 minutes
"Build successful"
[Hidden: Turbopack errors during type-check]
[Reality: Binary is broken, deployable artifact doesn't exist]
Key Mantra:
"It's not done until Truth Layer says it's done. We earn trust through radical honesty about problems."