Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
$pwd:
software-mansion
GitHub creator profile

software-mansion

Repository-level view of 31 collected skills across 8 GitHub repositories, including approximate occupation coverage.

skills collected
31
repositories
8
occupation fields
2
updated
2026-05-27
occupation focus
Major fields detected across this creator.
repository explorer

Repositories and representative skills

#001
argent
10 skills1.1k23updated 2026-05-19
32% of creator
argent-create-flow
소프트웨어 개발자

Record a reusable flow (scripted sequence of MCP tool calls) that can be replayed later with a single command. Use when the user asks to create, record, or build a flow, or to script a sequence of device actions.

2026-05-19
argent-device-interact
웹 개발자

Interact with an iOS simulator or Android emulator using argent MCP tools. Use when tapping UI elements, performing gestures, scrolling, typing text, pressing hardware buttons, launching apps, opening URLs, taking screenshots.

2026-05-19
argent-ios-simulator-setup
네트워크·컴퓨터 시스템 관리자

Set up and connect to an iOS simulator using argent MCP tools. Use when starting a new session, booting an iOS simulator, getting an iOS UDID, or before any iOS simulator interaction task.

2026-05-19
argent-metro-debugger
소프트웨어 개발자

Debug a React Native app via Metro CDP using argent debugger tools. Use when connecting to Metro, inspecting React components, reading console logs, or evaluating JavaScript in the app runtime.

2026-05-19
argent-react-native-app-workflow
소프트웨어 개발자

Step-by-step workflows for developing or debugging React Native apps on iOS simulator or Android emulator. Use when starting the app, debugging Metro, fixing builds, diagnosing runtime errors, or running tests.

2026-05-19
argent-react-native-optimization
소프트웨어 개발자

Optimizes a React Native app by profiling first to find real bottlenecks, then sweeping for mechanical issues. Entry-point for all performance work. Use when the app feels slow, user asks to optimize, fix re-renders, reduce jank, or improve startup. Delegates to argent-react-native-profiler for measurement.

2026-05-19
argent-test-ui-flow
소프트웨어 품질 보증 분석가·테스터

Autonomously test an app UI (iOS or Android) by running interact-screenshot-verify loops using argent MCP tools. Use when testing a UI flow, verifying login works, testing navigation, or running an end-to-end UI test scenario.

2026-05-19
argent-android-emulator-setup
네트워크·컴퓨터 시스템 관리자

Set up and connect to an Android emulator using argent MCP tools. Use when starting a new session on Android, booting an emulator, getting a device serial, or before any UI interaction task.

2026-05-11
Showing top 8 of 10 collected skills in this repository.
#002
react-native-audio-api
10 skills77666updated 2026-04-14
32% of creator
audio-nodes
소프트웨어 개발자

C++ audio node engine for react-native-audio-api. Covers the AudioNode class hierarchy, the processNode() audio-thread contract (no allocs, no locks, no blocking I/O), AudioParam a-rate/k-rate processing, cross-thread communication patterns (CrossThreadEventScheduler, IAudioEventHandlerRegistry), and a step-by-step checklist for implementing a new node end-to-end. Use this skill when implementing a new Web Audio API node, modifying audio graph traversal or processing logic, or debugging audio rendering artifacts. Trigger phrases: "add a new node", "implement AudioNode", "processNode", "audio thread", "AudioParam automation".

2026-04-14
build-compilation-dependencies
소프트웨어 개발자

Build system overview for react-native-audio-api across all platforms — CMakeLists.txt, android/build.gradle, RNAudioAPI.podspec, prebuilt external libraries, and the standalone C++ test build. Use this skill when adding a new source file, modifying CMakeLists or podspec, debugging compilation errors, integrating a new dependency, or understanding why includes work differently in tests vs the app. Trigger phrases: "add source file", "CMakeLists", "podspec", "build.gradle", "prebuilt binaries", "FFmpeg disabled", "pod install", "new architecture", "compile error", "undefined symbol", "SIMD", "worklets build flag", "C++ tests", "conditional compilation", "include path", "gradle build fails", "link error".

2026-04-14
flow
소프트웨어 개발자

End-to-end process for shipping a feature or bug fix in react-native-audio-api. Covers all required deliverables in order: Web Audio API spec review, TypeScript interface and types, C++ AudioNode implementation, HostObject wiring, TypeScript class, TurboModule spec (when needed), C++ tests (Google Test), JS tests (Jest), documentation (audiodocs MDX), and post-work checks. Also covers the bug-fix flow: MRE first, C++ test when applicable, root-cause analysis, post-mortem. Use this skill at the start of any feature implementation or bug fix. Trigger phrases: "implement a feature", "add a node", "fix a bug", "what steps", "where do I start", "PR checklist", "how to write tests".

2026-04-14
host-objects
소프트웨어 개발자

Covers how to create, structure, and maintain JSI HostObjects that bridge C++ audio nodes to JavaScript in react-native-audio-api. Explains naming conventions, property/method exposure via macros, shadow state for JS↔audio-thread communication, JSI argument parsing, return value patterns, memory pressure, factory wiring in BaseAudioContextHostObject, and common pitfalls. Use this skill when creating a new audio node HostObject, modifying existing HostObject get/set/call logic, wiring a new node into the context factory, or debugging JSI-related crashes and type errors. Trigger phrases: "add HostObject", "create JSI bridge", "expose C++ node to JS", "shadow state", "scheduleAudioEvent from setter", "JSI property getter", "HostObject crashes", "new audio node".

2026-04-14
post-work-checks
소프트웨어 품질 보증 분석가·테스터

Ordered quality gate checklist to run after every code change in react-native-audio-api. Covers formatting, linting, type checking, C++ tests, JS tests, and enum sync validation. Documents what lefthook pre-commit hooks run automatically vs what must be run manually. Use at the end of any implementation task before opening a PR. Trigger phrases: "post-work", "before PR", "before commit", "check quality", "run linter", "run tests", "format code", "lefthook", "pre-commit", "yarn test", "yarn lint".

2026-04-14
thread-safety-itc
소프트웨어 개발자

Audio thread safety rules, lock-free inter-thread communication patterns, and the audio event system in react-native-audio-api. Covers the three-thread model (JS / audio / worker), CrossThreadEventScheduler for JS→audio scheduling, IAudioEventHandlerRegistry for audio→JS events, AudioGraphManager for graph mutations, shadow state vs atomics decision table, TaskOffloader for off-thread work, and SpscChannel low-level API. Use when implementing cross-thread data flow, adding audio events, debugging thread-safety crashes or data races, or deciding which ITC primitive to use. Trigger phrases: "lock-free", "SPSC", "thread safety", "ITC", "cross-thread", "audio thread race", "scheduleAudioEvent", "invokeHandlerWithEventBody", "TaskOffloader", "off-thread", "SpscChannel", "CrossThreadEventScheduler", "shadow state", "atomic".

2026-04-14
turbo-modules
소프트웨어 개발자

TurboModule spec, JSI binding injection, and platform native module entry points. Use when adding a new native method to NativeAudioAPIModule.ts, wiring a new top-level HostObject through AudioAPIModuleInstaller, debugging "native module not found" or "undefined is not a function" for a global, or understanding the install() bootstrap flow on iOS and Android. Trigger phrases: "native module not found", "install()", "NativeAudioAPIModule", "injectJSIBindings", "AudioAPIModuleInstaller", "JSI global", "TurboModule spec", "module bootstrap", "undefined is not a function".

2026-04-14
utilities
소프트웨어 개발자

Overview of all shared utility helpers, data structures, and DSP primitives available in react-native-audio-api. Covers C++ utilities in common/cpp/audioapi/utils/, common/cpp/audioapi/core/utils/, common/cpp/audioapi/dsp/, and TypeScript utilities in src/utils/. Use this skill before writing new math, buffer management, or cross-thread code — check if a utility already exists. Trigger phrases: "add a new utility", "what helpers are available", "cross-thread communication", "audio buffer", "DSP math", "circular buffer", "lock-free queue", "off-thread", "SIMD buffer", "time conversion", "parameter automation", "audio constants", "TypeScript utils".

2026-04-14
Showing top 8 of 10 collected skills in this repository.
#003
pulsar
4 skills3208updated 2026-04-21
13% of creator
pulsar-haptics-android
소프트웨어 개발자

Pulsar haptics implementation for Android apps using the Kotlin SDK (com.swmansion:pulsar). Use when the user is writing Kotlin/Android code and needs haptics, CompatibilityMode, VibrationEffect, RealtimeComposerStrategy, or PatternComposer.

2026-04-21
pulsar-haptics-react-native
소프트웨어 개발자

Pulsar haptics implementation for React Native and Expo apps using react-native-pulsar. Use when the user is writing TypeScript/React Native code and needs haptics, presets, worklet-compatible haptic calls, usePatternComposer, useRealtimeComposer, or migration from expo-haptics.

2026-04-21
pulsar-haptics
소프트웨어 개발자

Expert guide for implementing haptic feedback using the Pulsar SDK across iOS (Swift), Android (Kotlin), and React Native (TypeScript). Use this skill whenever the user is working with haptics, vibrations, tactile feedback, or the Pulsar library in a mobile app — including preset selection, custom pattern composition, real-time gesture-driven haptics, migration from expo-haptics or UIKit/CoreHaptics, CompatibilityMode handling, and haptic design decisions. Always use this skill even if the user only mentions "vibration", "buzz", "taptic", "rumble", "pulse", "motor feedback", "tactile", "shake", "UIFeedbackGenerator", "CHHapticEngine", or "VibrationEffect" — or wants their app to "feel right". Vague phrases like "make it feel more responsive" or "add some feedback" in a mobile context should also trigger this skill.

2026-04-21
pulsar-haptics-ios
소프트웨어 개발자

Pulsar haptics implementation for iOS apps using the Swift SDK. Use when the user is writing Swift/SwiftUI/UIKit code and needs haptics, CoreHaptics wrapping, PatternComposer, RealtimeComposer, or migration from UIKit haptics.

2026-04-15
#004
react-native-executorch
2 skills1.5k79updated 2026-05-21
6.5% of creator
#005
agentic-engineering
2 skills315updated 2026-04-28
6.5% of creator
저장소 8개 중 8개 표시
모든 저장소를 표시했습니다