This skill defines the React Native mobile stack configuration. Apply when working on mobile projects.
/plugin marketplace add Syntek-Studio/syntek-dev-suite/plugin install syntek-studio-syntek-dev-suite@Syntek-Studio/syntek-dev-suiteThis skill inherits all available tools. When active, it can use any tool Claude has access to.
This skill defines the React Native mobile stack configuration. Apply when working on mobile projects.
| Layer | Technology |
|---|---|
| Platform | Native / Simulator (NO Docker) |
| Framework | React Native, Expo (optional), TypeScript |
| Styling | NativeWind (Tailwind for Mobile) |
| Navigation | React Navigation |
| Testing | Jest, React Native Testing Library |
CRITICAL: Do NOT suggest Docker commands for this stack. Mobile runs natively.
| Task | Command |
|---|---|
| Start Metro Bundler | npm start |
| Run on iOS | npm run ios |
| Run on Android | npm run android |
| Install iOS Pods | cd ios && pod install && cd .. |
| Run tests | npm test |
| Run tests (watch) | npm test -- --watch |
| Install packages | npm install <package> |
| Lint | npm run lint |
| Clean build (iOS) | cd ios && rm -rf build && cd .. |
| Clean build (Android) | cd android && ./gradlew clean && cd .. |
| Reset Metro cache | npm start -- --reset-cache |
<View>, <Text>, <ScrollView>, <TouchableOpacity><div>, <span>, <p>, <button>import { View, Text, TouchableOpacity } from 'react-native';
interface UserCardProps {
user: User;
onPress: (userId: string) => void;
}
export function UserCard({ user, onPress }: UserCardProps): JSX.Element {
return (
<TouchableOpacity
className="rounded-lg bg-white p-4 shadow-md"
onPress={() => onPress(user.id)}
>
<Text className="text-lg font-semibold text-gray-900">{user.name}</Text>
<Text className="text-sm text-gray-500">{user.email}</Text>
</TouchableOpacity>
);
}
className="flex-1 bg-white"| Pattern | Use Case |
|---|---|
Platform.OS === 'ios' | Inline conditionals |
Component.ios.tsx / Component.android.tsx | Separate component files |
Platform.select({ ios: {...}, android: {...} }) | Style objects |
src/
├── components/
│ ├── ui/ # Generic UI components
│ │ ├── Button.tsx
│ │ └── Card.tsx
│ └── features/ # Feature-specific components
├── screens/ # Screen components
│ ├── HomeScreen.tsx
│ └── ProfileScreen.tsx
├── navigation/
│ ├── types.ts # Navigation type definitions
│ ├── RootNavigator.tsx
│ └── TabNavigator.tsx
├── hooks/
│ ├── useAuth.ts
│ └── useStorage.ts
├── services/
│ └── api.ts
├── types/
│ └── index.ts
├── utils/
│ └── formatters.ts
└── App.tsx
docs/
└── METRICS/ # Self-learning system (see global-workflow skill)
├── README.md
├── config.json
├── runs/
├── feedback/
└── optimisations/
SafeAreaView)import { render, fireEvent, screen } from '@testing-library/react-native';
import { UserCard } from './UserCard';
describe('UserCard', () => {
const mockUser = { id: '1', name: 'Test User', email: 'test@example.com' };
it('renders user information', () => {
render(<UserCard user={mockUser} onPress={jest.fn()} />);
expect(screen.getByText('Test User')).toBeOnTheScreen();
expect(screen.getByText('test@example.com')).toBeOnTheScreen();
});
it('calls onPress when tapped', () => {
const onPress = jest.fn();
render(<UserCard user={mockUser} onPress={onPress} />);
fireEvent.press(screen.getByText('Test User'));
expect(onPress).toHaveBeenCalledWith('1');
});
});
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.