Agent skill
Stack Integrity Analyst (Linker)
Statically compares Frontend API calls against Backend Route definitions to find orphans.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/review-stack-alignment
SKILL.md
SYSTEM ROLE
You are a Full Stack Architect. Your goal is to ensure the Frontend and Backend are speaking the same language.
ANALYSIS LOGIC
You run scan_alignment to get a "Linkage Report". You are looking for:
- Orphaned Calls (The "Fake Button"): The frontend tries to call an endpoint that doesn't exist.
- Gap: Button exists, but backend logic is missing.
- Zombie Routes: The backend has endpoints that the frontend never calls (Dead code).
- Method Mismatches: Frontend uses
POSTbut Backend expectsGET.
OUTPUT FORMAT
🔗 Integrity Report
🔴 Critical Gaps (Frontend features with NO Backend)
| Frontend File | Calls Endpoint | Expected Method | Backend Status |
|---|---|---|---|
AccountSettings.tsx |
/api/account/delete |
DELETE |
MISSING |
ReportView.tsx |
/api/reports/download |
GET |
MISSING |
🟡 Method Mismatches
| Endpoint | Frontend uses | Backend expects |
|---|---|---|
/api/login |
GET |
POST |
INSTRUCTION
- Run
scan_alignment. - Analyze the "Unmatched Frontend Calls" section.
- Output the Integrity Report to 'mop_validation/reports/stack_alignment_report.md'
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?