example-mobile-patterns
- Repo stars 0
- Author repo skills-registry
Mobile Patterns (TEMPLATE)
This is a TEMPLATE skill. Copy this directory and customize it for your mobile framework.
Quick reference for mobile development patterns. For detailed examples, see linked guides.
Skill Usage
| Aspect | Details |
|---|---|
| Consumer | subagent-mobile-architect |
| Purpose | Code patterns and examples for mobile implementation |
| Invocation | Subagents read this skill; NOT directly invocable by users |
| How to Customize | Replace examples below with your framework's patterns |
Step 1: Choose Your Framework
Replace this section with your framework-specific requirements:
Option A: React Native
// Example: Redux with hooks
import { useSelector, useDispatch } from 'react-redux'
const MyComponent = () => {
const data = useSelector(state => state.feature.data)
const dispatch = useDispatch()
return <View>...</View>
}
Option B: Flutter
// Example: Provider pattern
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
final data = Provider.of<DataModel>(context);
return Container(...);
}
}
Option C: Native iOS (Swift)
// Example: SwiftUI with @State
struct ContentView: View {
@State private var data: String = ""
var body: some View {
Text(data)
}
}
Option D: Native Android (Kotlin)
// Example: Jetpack Compose
@Composable
fun MyScreen(viewModel: MyViewModel = viewModel()) {
val data by viewModel.data.collectAsState()
Text(text = data)
}
Critical Stack Requirements (CUSTOMIZE THIS)
| Feature | Your Pattern | Not Allowed |
|---|---|---|
| State | [Your state management] | [What to avoid] |
| Navigation | [Your navigation library] | [What to avoid] |
| UI | [Your UI library] | [What to avoid] |
| Testing | [Your testing framework] | [What to avoid] |
Quick Patterns Reference (CUSTOMIZE THIS)
Component Structure
[Your framework's component structure example]
State Management
[Your state management pattern example]
Navigation
[Your navigation pattern example]
Testing
[Your testing pattern example]
Detailed Guides
When you need specific implementation details, read:
- component-patterns.md - Component templates and structure
- state-management.md - State management patterns
- navigation-patterns.md - Navigation flows
- testing-patterns.md - Testing strategies
Common Anti-Patterns to Avoid (CUSTOMIZE THIS)
Add framework-specific anti-patterns here:
- ❌ [Anti-pattern 1 for your framework]
- ❌ [Anti-pattern 2 for your framework]
- ❌ [Anti-pattern 3 for your framework]
Dependencies Reference (CUSTOMIZE THIS)
{
"your-framework": "Core framework",
"your-state-library": "State management",
"your-navigation-library": "Navigation",
"your-testing-framework": "Testing"
}
When to Consult This Skill
- Designing mobile component architecture
- Implementing state management
- Creating navigation flows
- Setting up mobile testing
- Platform-specific implementations
Customization Instructions
- Copy this directory to a new skill (e.g.,
mobile-react-native-patterns) - Update frontmatter with your skill name and description
- Replace all examples with your framework's patterns
- Create detailed guides in separate .md files
- Update the architect subagent to reference this skill
- Delete this template or move it to
drafts/skills/
<!-- tomevault:4.0:skill_md:2026-05-22 -->Source: CarlosDanielDev/maestro — distributed by TomeVault.
- Fluxly category
- Other
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @tomevault-io · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Plug-and-play
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Write / modify
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. Aspect · Details Consumer · subagent-mobile-architect Purpose · Code patterns and examples for mobile implementation
Replace this section with your framework-specific requirements:
Option A: React Native
Option B: Flutter
Option C: Native iOS (Swift)
Option D: Native Android (Kotlin)
# Mobile Patterns (TEMPLATE)
**This is a TEMPLATE skill. Copy this directory and customize it for your mobile framework.**
Quick reference for mobile development patterns. For detailed examples, see linked guides.
## Skill Usage
| Aspect | Details |
|--------|---------|
| **Consumer** | `subagent-mobile-architect` |
| **Purpose** | Code patterns and examples for mobile implementation |
| **Invocation** | Subagents read this skill; NOT directly invocable by users |
| **How to Customize** | Replace examples below with your framework's patterns |
---
## Step 1: Choose Your Framework
Replace this section with your framework-specific requirements:
### Option A: React Native
```typescript
// Example: Redux with hooks
import { useSelector, useDispatch } from 'react-redux'
const MyComponent = () => {
const data = useSelector(state => state.feature.data)
const dispatch = useDispatch()
return <View>...</View>
}
```
### Option B: Flutter
```dart
// Example: Provider pattern
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
final data = Provider.of<DataModel>(context);
return Container(...);
}
}
```
### Option C: Native iOS (Swift)
```swift
// Example: SwiftUI with @State
struct ContentView: View {
@State private var data: String = ""
var body: some View {
Text(data)
}
}
```
### Option D: Native Android (Kotlin)
```kotlin
// Example: Jetpack Compose
@Composable
fun MyScreen(viewModel: MyViewModel = viewModel()) {
val data by viewModel.data.collectAsState()
Text(text = data)
}
```
---
## Critical Stack Requirements (CUSTOMIZE THIS)
| Feature | Your Pattern | Not Allowed |
|---------|--------------|-------------|
| **State** | [Your state management] | [What to avoid] |
… Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Skill Usage → Step 1: Choose Your Framework → Option A: React Native → Option B: Flutter → Option C: Native iOS (Swift) → Option D: Native Android (Kotlin)
terms -> Consumer · Purpose · Invocation · How to Customize · State · Navigation · UI · Testing
files/cmd -> subagent-mobile-architect · mobile-react-native-patterns · drafts/skills/ · component-patterns.md · state-management.md · navigation-patterns.md · testing-patterns.md · drafts/skills
body sha256 -> 70f185845588
Decide Fit First
Design Intent
How To Use It
Boundaries And Review