원클릭으로
feature-breakdown
Break down features into implementable tasks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Break down features into implementable tasks
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design RESTful APIs following best practices
Systematic bug investigation and root cause analysis
Review code quality, patterns, and best practices
Generate commit messages following conventional commits with scope detection
Generate and update technical documentation
Review pull requests against team standards and best practices
| type | skill |
| name | Feature Breakdown |
| description | Break down features into implementable tasks |
| skillSlug | feature-breakdown |
| phases | ["P"] |
| generated | "2026-02-08T00:00:00.000Z" |
| status | filled |
| scaffoldVersion | 2.0.0 |
Use this skill when planning a new feature for the Smart Farming application. It helps decompose a feature request into concrete, implementable tasks following the project's Clean Architecture.
Determine which domain the feature belongs to:
For each feature, identify what needs to be created or modified in each layer:
src/app/core/)core/entities/?execute() method in core/use_cases/{domain}/core/interfaces/?core/errors/ if neededcore/commons/?src/app/infra/)infra/repositories/{domain}/infra/factories/use_cases/ to wire the use caseinfra/views/{domain}_views/infra/forms/ if user input is neededinfra/constants/mysql.py if schema changesinfra/database/scripts/schema.sql for new tablessrc/ui/)templates/pages/{domain}/templates/components/static/scripts/ for charts or interactions*_test.py in core/use_cases/{domain}/tests/core/use_cases/tests/mocks/ if new interfaces were createdFollow this implementation order for dependencies:
Reference the project's backlog estimation scale:
Feature: "Add new sensor type"
SensorsRecord entity in core/entities/SENSORS_RECORDS_TABLE constants in infra/constants/mysql.pyschema.sql with new columnSensorsRecordsRepository interface and implementationinfra/forms/static/scripts/