AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Mobile Developer

skill-tao12345666333-amcp-mobile-developer · by tao12345666333

Expert knowledge in mobile app development for iOS, Android, and cross-platform solutions

No reviews yet
0 installs
12 views
0.0% view→install

Install

$ agentstack add skill-tao12345666333-amcp-mobile-developer

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-tao12345666333-amcp-mobile-developer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Mobile Developer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Mobile Developer Skill

Platform-Specific Development

iOS Development (Swift/Objective-C)

Swift Fundamentals
  • Swift Syntax: Modern, type-safe language features
  • SwiftUI: Declarative UI framework
  • UIKit: Imperative UI framework (legacy)
  • Combine: Reactive programming framework
  • Core Data: Local data persistence
  • Core Animation: Graphics and animations
iOS Architecture Patterns
  • MVC: Traditional Model-View-Controller
  • MVVM: Model-View-ViewModel with data binding
  • VIPER: Clean Architecture for iOS
  • Coordinator Pattern: Navigation flow management
iOS Frameworks
  • Foundation: Basic data types and utilities
  • Core Foundation: C-based utilities
  • AVFoundation: Audio/video processing
  • Core Location: GPS and location services
  • Core Bluetooth: Bluetooth connectivity
  • CloudKit: Cloud data synchronization

Android Development (Kotlin/Java)

Kotlin Fundamentals
  • Kotlin Syntax: Concise, expressive language
  • Coroutines: Asynchronous programming
  • Jetpack Compose: Modern declarative UI
  • View System: Traditional UI framework
  • Room: Local database abstraction
  • DataStore: Key-value data storage
Android Architecture Components
  • ViewModel: UI-related data storage
  • LiveData: Observable data holder
  • Repository: Data repository pattern
  • Navigation Component: In-app navigation
  • WorkManager: Background task management
Android Frameworks
  • Android SDK: Core development platform
  • AndroidX: Modern Android support library
  • Play Services: Google services integration
  • Firebase: Mobile app development platform

Cross-Platform Development

React Native

  • JavaScript/TypeScript: Web technologies for mobile
  • React Concepts: Components, hooks, state management
  • Native Modules: Bridging native code
  • Navigation: React Navigation library
  • State Management: Redux, MobX, Zustand

Flutter

  • Dart Language: Type-safe, object-oriented language
  • Widget System: Declarative UI building
  • State Management: Provider, BLoC, Riverpod
  • Packages: Flutter ecosystem and pub.dev
  • Platform Integration: Platform channels and plugins

Xamarin

  • C#/.NET: Microsoft ecosystem
  • Xamarin.Forms: Cross-platform UI framework
  • Xamarin.Native: Platform-specific development
  • MAUI: Evolution of Xamarin.Forms

Mobile App Architecture

Clean Architecture Principles

  1. Presentation Layer: UI and view controllers
  2. Domain Layer: Business logic and entities
  3. Data Layer: Repository pattern and data sources

Common Design Patterns

  • Repository Pattern: Data access abstraction
  • Factory Pattern: Object creation
  • Observer Pattern: Event handling
  • Singleton Pattern: Global state management
  • Strategy Pattern: Algorithm selection

Mobile-Specific Considerations

Performance Optimization

  • Memory Management: Avoid leaks and optimize usage
  • Battery Life: Efficient resource utilization
  • Network Usage: Minimize data transfer
  • UI Responsiveness: 60fps target for smooth animations
  • App Size: Reduce binary and resource size

User Experience

  • Touch Interactions: Gesture recognition and handling
  • Screen Adaptation: Different screen sizes and orientations
  • Accessibility: VoiceOver, TalkBack, and assistive technologies
  • Platform Guidelines: iOS Human Interface, Android Material Design

Security Best Practices

  • Data Encryption: Protect sensitive information
  • Network Security: HTTPS, certificate pinning
  • Authentication: Biometric, OAuth, JWT
  • Code Obfuscation: Protect intellectual property
  • Root/Jailbreak Detection: Security checks

Development Tools and Workflow

Build Systems

  • iOS: Xcode, Swift Package Manager
  • Android: Android Studio, Gradle
  • Cross-Platform: Metro (React Native), Flutter CLI

Testing Strategies

  • Unit Tests: Business logic validation
  • Integration Tests: Component interaction
  • UI Tests: User interface automation
  • Performance Tests: Memory, CPU, battery usage

Continuous Integration/Deployment

  • CI/CD Pipelines: Automated build and testing
  • App Store Deployment: Apple App Store, Google Play Store
  • Beta Testing: TestFlight, Google Play Console beta

Code Examples

React Native Component

import React, { useState, useEffect } from 'react';
import { View, Text, TextInput, Button, StyleSheet } from 'react-native';
import { useNavigation } from '@react-navigation/native';

const LoginForm = () => {
  const [email, setEmail] = useState('');
  const [password, setPassword] = useState('');
  const [loading, setLoading] = useState(false);
  const navigation = useNavigation();

  const handleLogin = async () => {
    setLoading(true);
    try {
      // API call for authentication
      await loginAPI(email, password);
      navigation.navigate('Home');
    } catch (error) {
      console.error('Login failed:', error);
    } finally {
      setLoading(false);
    }
  };

  return (
    
      Login
      
      
      
    
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    padding: 20,
    justifyContent: 'center',
  },
  title: {
    fontSize: 24,
    fontWeight: 'bold',
    textAlign: 'center',
    marginBottom: 20,
  },
  input: {
    height: 40,
    borderColor: 'gray',
    borderWidth: 1,
    marginBottom: 10,
    paddingHorizontal: 10,
  },
});

SwiftUI View

import SwiftUI

struct LoginView: View {
    @State private var email = ""
    @State private var password = ""
    @State private var showingAlert = false
    @State private var alertMessage = ""
    
    var body: some View {
        VStack(spacing: 20) {
            Text("Login")
                .font(.largeTitle)
                .fontWeight(.bold)
            
            TextField("Email", text: $email)
                .textFieldStyle(RoundedBorderTextFieldStyle())
                .keyboardType(.emailAddress)
                .autocapitalization(.none)
            
            SecureField("Password", text: $password)
                .textFieldStyle(RoundedBorderTextFieldStyle())
            
            Button(action: login) {
                Text("Login")
                    .frame(maxWidth: .infinity)
                    .padding()
                    .background(Color.blue)
                    .foregroundColor(.white)
                    .cornerRadius(10)
            }
            .disabled(email.isEmpty || password.isEmpty)
        }
        .padding()
        .alert(isPresented: $showingAlert) {
            Alert(title: Text("Error"), message: Text(alertMessage))
        }
    }
    
    private func login() {
        // Authentication logic
        guard !email.isEmpty, !password.isEmpty else {
            alertMessage = "Please fill in all fields"
            showingAlert = true
            return
        }
        
        // API call for authentication
        AuthAPI.login(email: email, password: password) { result in
            switch result {
            case .success:
                // Navigate to home screen
                break
            case .failure(let error):
                alertMessage = error.localizedDescription
                showingAlert = true
            }
        }
    }
}

Flutter Widget

import 'package:flutter/material.dart';

class LoginForm extends StatefulWidget {
  @override
  _LoginFormState createState() => _LoginFormState();
}

class _LoginFormState extends State {
  final _formKey = GlobalKey();
  final _emailController = TextEditingController();
  final _passwordController = TextEditingController();
  bool _isLoading = false;

  Future _login() async {
    if (_formKey.currentState!.validate()) {
      setState(() => _isLoading = true);
      
      try {
        await AuthAPI.login(
          email: _emailController.text,
          password: _passwordController.text,
        );
        
        Navigator.pushReplacementNamed(context, '/home');
      } catch (e) {
        ScaffoldMessenger.of(context).showSnackBar(
          SnackBar(content: Text('Login failed: ${e.toString()}')),
        );
      } finally {
        setState(() => _isLoading = false);
      }
    }
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text('Login')),
      body: Padding(
        padding: EdgeInsets.all(16.0),
        child: Form(
          key: _formKey,
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              TextFormField(
                controller: _emailController,
                decoration: InputDecoration(labelText: 'Email'),
                keyboardType: TextInputType.emailAddress,
                validator: (value) {
                  if (value == null || value.isEmpty) {
                    return 'Please enter your email';
                  }
                  return null;
                },
              ),
              SizedBox(height: 16),
              TextFormField(
                controller: _passwordController,
                decoration: InputDecoration(labelText: 'Password'),
                obscureText: true,
                validator: (value) {
                  if (value == null || value.isEmpty) {
                    return 'Please enter your password';
                  }
                  return null;
                },
              ),
              SizedBox(height: 24),
              _isLoading
                  ? CircularProgressIndicator()
                  : ElevatedButton(
                      onPressed: _login,
                      child: Text('Login'),
                      style: ElevatedButton.styleFrom(
                        minimumSize: Size(double.infinity, 48),
                      ),
                    ),
            ],
          ),
        ),
      ),
    );
  }
}

Best Practices

Code Quality

  1. Architecture: Follow clean architecture principles
  2. Design Patterns: Use appropriate patterns for problems
  3. Code Reusability: Create modular, reusable components
  4. Documentation: Maintain clear code documentation

Performance

  1. Memory Management: Profile and optimize memory usage
  2. Network Optimization: Implement caching and efficient data transfer
  3. UI Performance: Maintain 60fps animations
  4. Battery Optimization: Minimize resource consumption

Security

  1. Data Protection: Encrypt sensitive data
  2. Network Security: Use HTTPS and certificate pinning
  3. Authentication: Implement secure authentication flows
  4. Code Security: Obfuscate and protect code

When developing mobile applications, always consider:

  • Platform-specific design guidelines
  • Performance constraints and optimization
  • User experience and accessibility
  • Security and data privacy
  • App store guidelines and approval processes
  • Device fragmentation and compatibility

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.