Back to list
sorfeb

developing-frontend

by sorfeb

0🍴 0📅 Jan 5, 2026

SKILL.md


name: developing-frontend description: | Frontend development for Xbox 360-inspired portfolio using Next.js 15, React, CSS Modules, and audio integration. Use when building UI components, styling, animations, client-side logic, or when the user mentions "component", "UI", "frontend", "styling", "CSS", "animation", "responsive", or "audio feedback".

Frontend Development

Specialized guidance for building Xbox 360-inspired React components with audio integration and responsive design.

Critical Rules

  1. Audio Integration: Every interactive element MUST have audio feedback
  2. CSS Modules Only: Use ComponentName.module.css for all styling
  3. 768px Breakpoint: Mobile/desktop bifurcation at this breakpoint
  4. No Console Logs: Use TypeScript error handling instead
  5. No Dev Server: Never start unless explicitly requested

Quick Start Pattern

'use client';

import React, { memo } from 'react';
import { useAudioManager } from '@/hooks/useAudioManager';
import styles from './Component.module.css';

interface ComponentProps {
  /** Clear JSDoc description */
  title: string;
}

const Component = memo<ComponentProps>(({ title }) => {
  const { playSound } = useAudioManager();

  const handleClick = () => {
    playSound('click');
    // Implementation
  };

  return (
    <div className={styles.container} onClick={handleClick}>
      {title}
    </div>
  );
});

export default Component;

Sound Types

Available sounds: hover, click, navigation, back, panel, panelLeft, ting, owawa, divine, unfold, channelUp, channelDown, swing, achievement

import { useNavigationSound } from '@/hooks/useNavigationSound';

const { navigateWithSound } = useNavigationSound();
navigateWithSound('/path', 'navigation');

CSS Conventions

.container {
  /* Layout first */
  display: flex;
  position: relative;

  /* Dimensions */
  width: 100%;

  /* Spacing */
  padding: 1rem;

  /* Visual */
  background: var(--color-primary);

  /* Transitions last - 0.3s for hover, 0.5s for major */
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .container { padding: 0.5rem; }
}

Reference Files

Pre-Completion Checklist

- [ ] Audio feedback on all interactive elements
- [ ] Responsive design at 768px breakpoint
- [ ] CSS Modules with descriptive class names
- [ ] No console.log statements
- [ ] TypeScript compiles (`npm run compile`)
- [ ] Storybook story (if major component)

Score

Total Score

55/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新

+5
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon