← Back to list

standardizing-feature-workflow
by Mkas08
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: standardizing-feature-workflow description: Standardize how to build new features from planning to documentation. Use when starting a new user story, feature request, or epic.
Feature Development Workflow
When to use this skill
- When starting work on a new Jira ticket/User Story.
- When planning a new major feature.
- When you need a checklist to ensure nothing is missed during development.
Step 1: Planning
Before writing code:
- Requirements: Clearly define what "done" looks like.
- User Stories: Break down the feature into small, testable stories.
- Mockups: Review Figma/Sketch designs. Identify reusable components vs. new ones.
- API Check: List all endpoints needed. Are they ready? If not, define the interface contract (JSON structure) to mock.
Step 2: Setup
- Branching: Create a fresh
feature/branch fromdevelop/main. - Structure: Create necessary folders (e.g.,
/screens/NewFeature,/components/NewFeature). - Typing: Define TypeScript interfaces/types for your data models and component props first.
Step 3: Development
- UI First: Build "dumb" presentational components with mocked data. Ensure they look right (Storybook is helpful here).
- Logic: Implement the business logic (hooks, services).
- Integration: Replace mocks with real API calls.
- State: Wire up global state (Redux/Context) if needed.
Step 4: Testing
- Unit: Write tests for utilities and complex logic.
- Integration: Test the main flows (happy path & error states).
- Manual: Run on actual devices (iOS & Android). Test offline mode, loading states, and weird inputs.
Step 5: Review
- Self-Review: Diff your own code. Remove
console.logs, commented-out code, and fix types. - Standards: Does it meet the
mobile-coding-standards? - A11y: Is it accessible (screen readers, contrast)?
- Performance: No obvious lag or excessive re-renders?
Step 6: Documentation & Merge
- Docs: Update
README.mdor internal wiki if new architecture/env vars were added. - Comments: Add JSDoc for any complex public functions.
- PR: Open Pull Request with screenshots/video of the feature in action.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon