skills/cleanexpo/truth-layer/SKILL.md
When you discover a blocker:
npx skillsauth add aiskillstore/marketplace truth-layerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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."
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.