소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill appfactory명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | appfactory |
| description | This skill activates during: Use when this capability is needed. |
Purpose: Performance optimization rules adapted from Vercel's react-best-practices for React Native/Expo applications.
Source: Adapted from vercel-labs/agent-skills
This skill activates during:
Trigger phrases:
AGENTS.md when writing components| Priority | Category | Impact | Description |
|---|---|---|---|
| 1 | Eliminating Waterfalls | CRITICAL | Async patterns that prevent sequential blocking |
| 2 | Bundle Optimization | CRITICAL | Import patterns that reduce bundle size |
| 3 | List Performance | HIGH | FlatList/SectionList optimization |
| 4 | Re-render Prevention | MEDIUM | Memoization and state patterns |
| 5 | Memory Management | MEDIUM | Cleanup and resource handling |
| 6 | Animation Performance | MEDIUM | Reanimated and gesture patterns |
| 7 | Platform Patterns | LOW | iOS/Android specific optimizations |
// async-defer-await: Move await into conditional branches
// BAD
async function getData(userId: string, skipCache: boolean) {
const data = await fetchData(userId);
if (skipCache) return { fresh: true };
return data;
}
// GOOD
async function getData(userId: string, skipCache: boolean) {
if (skipCache) return { fresh: true };
const data = await fetchData(userId);
return data;
}
// async-parallel: Use Promise.all for independent operations
// BAD
const user = await getUser();
const posts = await getPosts();
const comments = await getComments();
// GOOD
const [user, posts, comments] = await Promise.all([getUser(), getPosts(), getComments()]);
// bundle-imports: Avoid barrel file imports
// BAD
import { Button, Text, Card } from '@/components';
// GOOD
import { Button } from '@/components/Button';
import { Text } from '@/components/Text';
import { Card } from '@/components/Card';
// list-flatlist: Use FlatList for lists > 10 items
// BAD
<ScrollView>
{items.map(item => <ItemCard key={item.id} item={item} />)}
</ScrollView>
// GOOD
<FlatList
data={items}
renderItem={({ item }) => <ItemCard item={item} />}
keyExtractor={item => item.id}
removeClippedSubviews
maxToRenderPerBatch={10}
windowSize={5}
/>
// memory-cleanup: Clean up effects and listeners
// BAD
useEffect(() => {
const subscription = eventEmitter.addListener('event', handler);
}, []);
// GOOD
useEffect(() => {
const subscription = eventEmitter.addListener('event', handler);
return () => subscription.remove();
}, []);
skill_score = (passed_rules / applicable_rules) × 100
Thresholds:
- PASS: ≥95% (proceed normally)
- CONDITIONAL: 90-94% (fix before next milestone)
- FAIL: <90% (must fix before proceeding)
- Any CRITICAL violation: BLOCKED
Ralph includes this skill as a scoring category:
### React Native Skills Compliance (5% weight)
- [ ] No CRITICAL violations (async-defer-await, async-parallel, bundle-imports)
- [ ] No HIGH violations (list-flatlist, memory-cleanup)
- [ ] MEDIUM/LOW violations documented
- [ ] Overall skill score ≥95%
SKILL.md - This file (usage and quick reference)AGENTS.md - Complete rules document for agent consumptionrules/ - Individual rule definitionsSource: 0xAxiom/AppFactory — distributed by TomeVault.