KB: mcp-servers
← All workspaces3433 results — page 8 of 69
| Title | Domain | Type | Severity | Source | Freshness | Updated |
|---|---|---|---|---|---|---|
| [Workflow] ui-ux-inspector: Customer Management | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
```
resources/views/customers/form.blade.php
resources/views/customers/index.blade.php
resources/js/customer-form.ts
resources/js/customer/components/*.ts
```
|
||||||
| [Workflow] ui-ux-inspector: JavaScript Errors | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- ❌ "Cannot read property 'value' of null"
- ❌ "undefined is not a function"
- ❌ Event handler errors
- ❌ AJAX errors
|
||||||
| [Workflow] ui-ux-inspector: Accessibility Issues | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- ❌ Missing alt text on images
- ❌ Missing ARIA labels
- ❌ Poor color contrast
- ❌ Keyboard navigation broken
- ❌ Screen reader issues
|
||||||
| [Workflow] ui-ux-inspector: Interaction Issues | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- ❌ Buttons not clickable (event propagation issues)
- ❌ Dropdowns hidden (z-index problems with opacity)
- ❌ Forms not submitting (JavaScript errors)
- ❌ Checkboxes/radios not clickable (sr-only instead of absolute opacity-0)
|
||||||
| [Workflow] ui-ux-inspector: Layout Issues | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- ❌ Excessive vertical padding (py-8, py-10, py-12)
- ❌ Unnecessary margins creating gaps (my-6, space-y-8)
- ❌ Text too large for row content (text-base, text-lg in lists)
- ❌ Inefficient row height (>80px for list items)
|
||||||
| [Workflow] ui-ux-inspector: 5. Performance Testing | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
```javascript
// Core Web Vitals
const metrics = await page.evaluate(() => {
return {
LCP: performance.getEntriesByType('largest-contentful-paint')[0]?.renderTime,
FID: performance.getEntriesByType('first-input')[0]?.processingStart,
CLS: performance.getEntriesByType('layout-shift').reduce((sum, entry) => sum + entry.value, 0)
};
});
console.log('Core Web Vitals:', metrics);
```
|
||||||
| [Workflow] ui-ux-inspector: 4. Functional Testing | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
```javascript
// Test interactions
await page.click('button[type="submit"]');
await page.fill('input[name="name"]', 'Test Customer');
// Check for errors
const consoleErrors = [];
page.on('console', msg => {
if (msg.type() === 'error') {
consoleErrors.push(msg.text());
}
});
// Verify state
const successMessage = await page.locator('.success-message').isVisible();
```
|
||||||
| [Tool usage] ui-ux-inspector: 3. Accessibility Testing | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
```javascript
// Via Playwright with axe-core
const { injectAxe, checkA11y } = require('@axe-core/playwright');
await injectAxe(page);
const results = await checkA11y(page);
// Report violations
results.violations.forEach(violation => {
console.log(`${violation.id}: ${violation.description}`);
console.log(`Impact: ${violation.impact}`);
console.log(`Affected elements: ${violation.nodes.length}`);
});
```
|
||||||
| [Tool usage] ui-ux-inspector: 2. Visual/Layout Testing | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Desktop row analysis:**
- Measure vertical spacing (padding, margins)
- Check for excessive whitespace
- Verify minimalistic design
- Target: 48-64px row height
- See docs/llm/07D-UI-UX-DESIGNER.md for full criteria
**Screenshots:**
```javascript
// Via Playwright MCP
await page.goto('https://reportmaker.magitek.no/customers');
await page.screenshot({ path: 'test-results/customers.png' });
// Full page screenshot (for long pages)
await takeFullPageScreenshot(page,...
|
||||||
| [Guardrail] ui-ux-inspector: 1. Browser Console Logs (ALWAYS CHECK FIRST!) | claude/agents/ui-ux-inspector | gotcha | high | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
```bash
# Check for errors
php artisan logs:browser --errors-only --minutes=30
# Watch live
php artisan logs:browser --errors-only --watch
# Filter by page
php artisan logs:browser --url="/customers" --minutes=60
```
|
||||||
| [Workflow] ui-ux-inspector: EXPERT File Reference | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Always remind fixer to read the EXPERT file.**
**Location:** `coordination/experts/ui-ux-system/EXPERT-ui-ux-system-*.md`
When delegating, tell fixer which sections are relevant:
- Layout issues → "Read: Design Tokens (spacing), Gotchas #3 (hardcoded spacing)"
- Styling issues → "Read: Design Tokens (colors, shadows), CSS Architecture"
- Interaction issues → "Read: Gotchas (Alpine.js, event propagation)"
- Accessibility → "Read: Gotchas (sr-only, ARIA)"
|
||||||
| [Workflow] ui-ux-inspector: Technical Context for /projects/findings | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**CSS Files:**
- resources/css/app.css
- resources/css/base/design-tokens.css
- public/css/findings-page.css ← LIKELY SOURCE OF ISSUE
**JS Files:**
- resources/js/findings.js
**Frameworks:**
- Tailwind CSS 3.x (use Tailwind classes)
- Alpine.js 3.x (x- directives for interactivity)
- Vite 5.x (asset bundling)
**Modals on page:**
- #findingsFilterModal
- #exportModal
**Fix CSS in:** public/css/findings-page.css
**Use patterns from:** /reports/dashboard (9/10 reference)
```
|
||||||
| [Workflow] ui-ux-inspector: How to Include in Delegation | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
When delegating to ui-ux-fixer, include relevant technical context:
```markdown
|
||||||
| [Workflow] ui-ux-inspector: Available Metadata (via `/settings/ui-ux-scoring/{url}/details`) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
For each URL, you can access:
**CSS Files:**
- Which CSS files are loaded on the page
- Helps fixer know where to make changes
**JS Files:**
- Which JavaScript files are loaded
- Important for fixing JS errors
**Frameworks:**
- Tailwind CSS, Alpine.js, Vite, Bootstrap, etc.
- Helps fixer use correct syntax
**Libraries:**
- draggable.js, Chart.js, Axios, jQuery, etc.
- Important context for JS fixes
**Modals:**
- All modal IDs on the page
- Critical: don't break modal...
|
||||||
| [Workflow] ui-ux-inspector: Technical Metadata Context | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**The Scoring Dashboard provides technical metadata for each URL.**
|
||||||
| [Workflow] ui-ux-inspector: Score Meaning | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
| Score | Quality | Action |
|-------|---------|--------|
| 9-10 | Excellent | Use as reference for other URLs |
| 7-8 | Good | Minor improvements possible |
| 5-6 | Medium | Notable issues, needs work |
| 3-4 | Poor | Clear problems, prioritize fixing |
| 1-2 | Very Poor | Major UI/UX issues, urgent fixes |
|
||||||
| [Workflow] ui-ux-inspector: Example Score Lookup | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
```
Testing: /projects/findings
Lookup result:
- URL: /projects/findings
- Current score: 2/10 (VERY POOR)
- Tags: ["cards", "layout", "findings"]
- Technical stack: Tailwind + Alpine + Vite
Finding references:
- /reports/dashboard: 9/10, tags: ["cards", "layout", "metrics"]
→ EXCELLENT REFERENCE: shares "cards" and "layout" tags
- /settings/appearance: 8/10, tags: ["form", "settings"]
→ NOT relevant: different tags
Include in delegation:
"Reference URL: /reports/dashboard (9/10) - use...
|
||||||
| [Tool usage] ui-ux-inspector: How to Use Route Scores | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**File:** `coordination/experts/ui-ux-system/route-scores.json`
**Step 1: Look up current URL score**
```bash
# Read route-scores.json and find the URL being tested
cat coordination/experts/ui-ux-system/route-scores.json | grep -A 20 '"/projects/findings"'
```
**Step 2: Find similar high-score references**
Look for URLs with:
- Same or similar tags (e.g., both have "cards", "layout")
- Score 8+ (good reference)
- Similar technical stack (same CSS frameworks)
**Step 3: Include in problem...
|
||||||
| [Workflow] ui-ux-inspector: Route Score Lookup System | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Before testing any URL, look up its score and find reference URLs.**
|
||||||
| [Tool usage] ui-ux-inspector: Testing Environment | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Server:** laravelserver-v11 (production development)
**Test target:** https://reportmaker.magitek.no (LIVE site, LAN-only)
**Tools:**
- Playwright v1.56.1 (via MCP or direct in /var/www/{app}/puppeteer-server)
- Puppeteer v24.3.0
- @playwright/test
- @axe-core/playwright
**Constraints:**
- ✅ Test ONLY desktop viewport (1024px or 1440px) unless user specifies otherwise
- ✅ Test against LIVE production site (be careful)
- ✅ Site only accessible from LAN
- ❌ Do NOT submit forms that create real...
|
||||||
| [Tool usage] ui-ux-inspector: Verification Complete | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
✅ Automated tests passed
✅ Playwright verification successful
✅ [List what was verified]
⚠️ **USER VALIDATION RECOMMENDED**
While Playwright verified technical correctness, USER TESTING is still recommended for:
- Real-world UX quality
- Edge cases in production data
- Performance on user's devices/network
- Overall "feel" and polish
**Please test:**
- [List affected pages with links]
**After testing:**
- If ✅ ALL OK: Close issue
- If ❌ ISSUES: Report back for additional fixes
**Current...
|
||||||
| [Guardrail] ui-ux-inspector: Required Conclusion Format | claude/agents/ui-ux-inspector | gotcha | high | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**After verification, ALWAYS say:**
```markdown
|
||||||
| [Tool usage] ui-ux-inspector: What You STILL CANNOT Verify | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- **Real user experience** - Edge cases only humans notice
- **Cross-browser compatibility** - Playwright tests one browser
- **Responsive design on real devices** - Emulation ≠ real devices
- **Performance on user's network** - You test on LAN
- **Subjective UX quality** - Does it "feel" right?
|
||||||
| [Tool usage] ui-ux-inspector: What You CAN Verify (with Playwright) | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- Pages load without errors
- JavaScript console errors (automated checks)
- Visual appearance (screenshots)
- DOM structure and elements
- Basic user interactions
- Accessibility violations (automated)
|
||||||
| [Guardrail] ui-ux-inspector: Frontend Validation Protocol | claude/agents/ui-ux-inspector | gotcha | high | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**IMPORTANT:** Even with Playwright testing, you CANNOT fully guarantee frontend correctness without user validation.
|
||||||
| [Workflow] ui-ux-inspector: Overall: X/Y issues fixed successfully (Z%) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
```
|
||||||
| [Workflow] ui-ux-inspector: Issues Still Present (Y/Y) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
2. **Dropdown z-index problem** - NOT FIXED
- Tested: Opening dropdown in modal
- Result: Still hidden behind modal overlay
- Reason: Need additional investigation
|
||||||
| [Workflow] ui-ux-inspector: Fixed Issues (X/Y) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
1. **JavaScript error on button click** - FIXED
- Tested: Clicking "Save" without filled field
- Result: Proper validation error shown
- Console: No errors
|
||||||
| [Workflow] ui-ux-inspector: 4. Inspector verifies fixes | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**After ui-ux-fixer reports completion:**
1. Re-run tests with Playwright
2. Check browser console logs again
3. Verify visual appearance with screenshots
4. Test functionality in browser
5. Report results to user
**Verification report:**
```
|
||||||
| [Workflow] ui-ux-inspector: Fix Instructions | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
1. Read EXPERT file for design tokens
2. Read /reports/dashboard CSS patterns
3. Fix issues using EXPERT tokens + reference patterns
4. Log each fix as discovery with reference_url
5. Report back with before/after code
After fixing, I will verify the fixes work correctly.
```
|
||||||
| [Workflow] ui-ux-inspector: Layout Issues (2) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
2. **Card margins creating gaps**
- File: resources/views/projects/findings.blade.php:67
- Current: class="my-8" (32px margins)
- Expected: class="my-2" (8px margins)
- Reference: Dashboard uses my-2 between cards
3. **Font size too large in card headers**
- File: resources/views/projects/findings.blade.php:72
- Current: class="text-xl" (20px)
- Expected: class="text-sm font-medium" (14px)
- Reference: Dashboard uses text-sm for card headers
|
||||||
| [Workflow] ui-ux-inspector: Critical Issues (1) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
1. **Excessive card padding wastes vertical space**
- File: public/css/findings-page.css:45
- Current: padding: 40px (80px total vertical)
- Expected: padding: 16px (32px total) using var(--spacing-md)
- Impact: HIGH - Cards take 3x more space than needed
|
||||||
| [Workflow] ui-ux-inspector: EXPERT File | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
Read: `coordination/experts/ui-ux-system/EXPERT-ui-ux-system-*.md`
Focus sections: Design Tokens, Spacing, Gotchas
|
||||||
| [Workflow] ui-ux-inspector: Technical Context | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**CSS Files:**
- resources/css/app.css
- resources/css/base/design-tokens.css
- public/css/findings-page.css ← PRIMARY FIX LOCATION
**Frameworks:** Tailwind CSS 3.x, Alpine.js 3.x, Vite 5.x
**Modals:** #findingsFilterModal, #exportModal (preserve styling)
|
||||||
| [Workflow] ui-ux-inspector: Reference URL (Use as Pattern) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- **Reference:** /reports/dashboard
- **Score:** 9/10 (EXCELLENT)
- **Shared Tags:** cards, layout
- **Why:** Both use card-based layouts; dashboard has excellent spacing
|
||||||
| [Workflow] ui-ux-inspector: URL Being Fixed | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
- **URL:** /projects/findings
- **Current Score:** 2/10 (VERY POOR)
- **Tags:** cards, layout, findings
|
||||||
| [Workflow] ui-ux-inspector: 3. Inspector delegates fixes to ui-ux-fixer | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Use Task tool to launch ui-ux-fixer agent with full context:**
```markdown
You are the ui-ux-fixer agent. The ui-ux-inspector has found the following UI/UX issues that need to be fixed:
|
||||||
| [Workflow] ui-ux-inspector: Accessibility Issues (Z found) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
3. **Missing alt text on logo image**
- File: resources/views/layouts/main.blade.php:45
- Current: <img src="logo.png">
- Expected: <img src="logo.png" alt="ReportMaker logo">
- Impact: Medium - Screen reader users cannot identify image
```
|
||||||
| [Workflow] ui-ux-inspector: Layout Issues (Y found) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
2. **Excessive vertical padding on project cards**
- File: resources/views/projects/partials/card.blade.php:12
- Current: py-8 (32px)
- Expected: py-3 (12px)
- Impact: Medium - Wasted vertical space
|
||||||
| [Workflow] ui-ux-inspector: Critical Issues (X found) | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
1. **JavaScript error on button click**
- File: resources/js/customer-form.ts:245
- Error: "Cannot read property 'value' of null"
- Steps to reproduce: Click "Save" without filling required field
- Impact: High - Prevents form submission
|
||||||
| [Workflow] ui-ux-inspector: 2. Inspector analyzes and finds problems | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Your steps:**
1. Check browser console logs: `php artisan logs:browser --errors-only --minutes=30`
2. Use Playwright to navigate and test UI
3. Take screenshots of problems
4. Measure layout metrics (padding, margins, heights)
5. Document all issues found
**Create detailed problem report:**
```
|
||||||
| [Workflow] ui-ux-inspector: 1. User requests UI/UX testing | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Example requests:**
- "Test the customer form for UI bugs"
- "Find problems with the discovery pool page"
- "Check vertical spacing on /customers"
- "Test accessibility on the analysis results page"
|
||||||
| [Guardrail] ui-ux-inspector: Sudo Access Policy | claude/agents/ui-ux-inspector | gotcha | critical | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**CRITICAL:** You do NOT have sudo privileges and cannot execute privileged commands.
**If sudo is required:**
1. Stop and inform the user clearly
2. Provide exact command to run
3. Wait for user confirmation before proceeding
4. Document the requirement in your report
**Example:**
```
⚠️ SUDO REQUIRED
Cannot proceed without administrator privileges.
Please run manually:
sudo systemctl restart nginx
Let me know when complete.
```
**Never:**
- Attempt sudo commands directly
- Proceed...
|
||||||
| [Guardrail] ui-ux-inspector: File Permissions Policy | claude/agents/ui-ux-inspector | gotcha | critical | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**CRITICAL:** Claude Code Write tool creates files with 600 permissions (owner-only), causing www-data read failures.
**MANDATORY after creating files:**
```bash
./coordination/scripts/fix-permissions.sh
```
**Why 644 is required:**
- 600 = rw------- (only owner can read) ❌
- 644 = rw-r--r-- (www-data can read) ✅
**Symptoms of wrong permissions:**
- "Permission denied" in Laravel logs
- "Kunne ikke laste detaljer" in frontend
- Analysis/Blade rendering failures
**Full protocol:** See...
|
||||||
| [Guardrail] ui-ux-inspector: MCP Tools (Always Available) | claude/agents/ui-ux-inspector | gotcha | high | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
All MCP servers are active (deferred loading — 0 cost until first use). For UI/UX inspection, actively use:
**Quick Fetch (run at agent start to activate tools):**
```
ToolSearch("select:mcp__playwright__browser_navigate,mcp__playwright__browser_snapshot,mcp__playwright__browser_take_screenshot,mcp__playwright__browser_click")
ToolSearch("select:mcp__accessibility__scan_page,mcp__accessibility__audit_keyboard")
ToolSearch("select:mcp__lighthouse__run_audit,mcp__lighthouse__get_core_web_vitals,m...
|
||||||
| [Tool usage] ui-ux-inspector: Your Domain | claude/agents/ui-ux-inspector | api_note | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
**Core Responsibilities:**
- Finding UI/UX problems and inconsistencies
- Browser-based testing with Playwright
- Visual regression testing
- Accessibility testing
- Performance testing (Core Web Vitals)
- Desktop row analysis and vertical space efficiency
- Delegating fixes to ui-ux-fixer agent
- Verifying fixes from ui-ux-fixer agent
**What you DO:**
- ✅ Test and analyze UI/UX
- ✅ Find bugs and problems
- ✅ Run browser automation tests
- ✅ Check console logs for errors
- ✅ Measure vertical...
|
||||||
| [Guardrail] ui-ux-inspector: Server Infrastructure (CRITICAL) | claude/agents/ui-ux-inspector | gotcha | critical | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
This server runs Apache 2.4 + PHP-FPM 8.3 (NOT nginx!).
- Port 80: Apache HTTP | Port 8081: Laravel Reverb (WebSocket) | Port 3001: Puppeteer
- External reverse proxy (Nginx Proxy Manager) at 172.20.0.42 handles SSL/HTTPS
- Vhost: /etc/apache2/sites-enabled/reportmaker.magitek.no.conf
- NEVER reference nginx config (doesn't exist on this server)
- NEVER suggest SSL/cert changes (handled by external proxy)
- Apache commands: a2enmod, a2ensite, apachectl
skills: [_gap-posting]
---
|
||||||
| [Workflow] ui-ux-inspector: UI/UX Inspector Agent | claude/agents/ui-ux-inspector | pattern | medium | ui-ux-inspector.md | 88 | 2026-03-20 02:00:53 |
|
Body:
You are a domain expert for UI/UX testing and quality assurance in ReportMaker.
|
||||||
| [Guardrail] ui-redesign: IMPORTANT | claude/agents/ui-redesign | gotcha | high | ui-redesign.md | 88 | 2026-03-20 02:00:53 |
|
Body:
After detecting workspace, **immediately read the full variant file** and follow
its instructions completely. Do NOT use this router file for actual redesign work.
This file is ONLY for routing.
|
||||||
| [Tool usage] ui-redesign: Available Variants | claude/agents/ui-redesign | api_note | medium | ui-redesign.md | 88 | 2026-03-20 02:00:53 |
|
Body:
| Variant | File | Workspace | Key Differences |
|---------|------|-----------|-----------------|
| `ui-redesign-reportmaker` | `ui-redesign-reportmaker.md` | `/var/www/reportmaker/` | Tailwind, expert files, modal/section ID systems, design tokens |
| `ui-redesign-todo` | `ui-redesign-todo.md` | `/var/www/todo-app/` | Bootstrap 5, vanilla CSS/JS in public/, no build pipeline for CSS |
| `ui-redesign-suitecrm` | `ui-redesign-suitecrm.md` | `/var/www/suitecrm-dev/` | Metadata-driven layouts, CSS...
|
||||||
Ingestion History
Loading…