소스 정보
- 저장소
- ffsshhttiikk/opencode-agents-skills
- 최근 소스 활동
- 2026년 2월 28일 22:54
- 감지된 SKILL.md 언어
- 영어
- 스타
- 2
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ffsshhttiikk/opencode-agents-skills --skill software-engineering명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | software-engineering |
| description | Software engineering principles |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"software-development"} |
When building software systems using professional practices.
class Requirement:
"""Software requirement"""
def __init__(self, id: str, title: str, description: str,
priority: str, category: str):
self.id = id
self.title = title
self.description = description
self.priority = priority # must, should, could, wont
self.category = category # functional, non-functional
self.status = "draft"
self.testable_criteria = []
def is_testable(self) -> bool:
"""Check if requirement is testable"""
return len(self.testable_criteria) > 0
class RequirementsManager:
"""Manage requirements"""
def __init__(self):
self.requirements = []
self.stakeholders = []
def add_requirement(self, requirement: Requirement):
self.requirements.append(requirement)
def get_by_priority(self, priority: str) -> List[Requirement]:
return [r for r in self.requirements if r.priority == priority]
def trace_to_code(self, requirement_id: str,
code_elements: List[str]):
"""Trace requirement to code elements"""
for req in self.requirements:
if req.id == requirement_id:
req.code_trace = code_elements
class Singleton:
"""Singleton pattern"""
_instance = None
def __new__(cls):
if cls._instance is None:
cls._instance = super().__new__(cls)
return cls._instance
class Factory:
"""Factory pattern"""
@staticmethod
def create_product(product_type: str):
products = {
"a": ProductA,
"b": ProductB
}
return products[product_type]()
class Builder:
"""Builder pattern"""
def __init__(self):
self.product = Product()
def set_part_a(self, value):
self.product.a = value
return self
def set_part_b(self, value):
self.product.b = value
return self
def build(self):
return self.product
class Adapter:
"""Adapter pattern"""
def __init__(self, adaptee):
self.adaptee = adaptee
def request(self):
return self.adaptee.specific_request()
class Decorator:
"""Decorator pattern"""
def __init__(self, component):
self.component = component
def operation(self):
return self.component.operation()
class Observer:
"""Observer pattern"""
def __init__(self):
self.observers = []
def attach(self, observer):
self.observers.append(observer)
def notify(self, *args):
for observer in self.observers:
observer.update(*args)
class Strategy:
"""Strategy pattern"""
def __init__(self, algorithm):
self.algorithm = algorithm
def execute(self, data):
return self.algorithm.process(data)
class TestPyramid:
"""Testing pyramid implementation"""
@staticmethod
def unit_tests():
"""Many fast, isolated unit tests"""
pass
@staticmethod
def integration_tests():
"""Fewer integration tests"""
pass
@staticmethod
def e2e_tests():
"""Few end-to-end tests"""
pass
class CodeMetrics:
"""Code quality metrics"""
@staticmethod
def cyclomatic_complexity(control_flow: dict) -> int:
"""Cyclomatic complexity"""
return control_flow.get("decisions", 0) + 1
@staticmethod
def cognitive_complexity(code: str) -> int:
"""Cognitive complexity"""
# Count nesting, jumps, etc.
return 0
@staticmethod
def maintainability_index(halstead: dict,
cyclomatic: int,
lines: int) -> float:
"""Maintainability index 0-100"""
import math
volume = halstead.get("volume", 1)
mi = 171 - 5.2 * math.log(volume) - \
0.23 * cyclomatic - 16.2 * math.log(lines)
return max(0, min(100, mi * 100 / 171))