원클릭으로
systems-design
Design or refine software architecture.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Design or refine software architecture.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Apply the Systems Thinking workflow from AGENTS.md when a task may be misframed, under-specified, or tangled with adjacent concerns.
Test hypotheses through experiments and disposable tools.
Research the workspace for a topic. Report patterns in the corpus.
Open the files, directories, and links relevant to the current context.
Iteratively improve writing.
Delegate task(s) to background sub-agent(s).
| name | systems-design |
| description | Design or refine software architecture. |
Use @../refactor/SKILL.md.
Model the system as a sequence of stages from input to output.
Split stages where data changes meaning, ownership, or crosses an effect boundary.
Define explicit input and output types for each stage.
Make each stage either a transform or an effect.
Place persistent state behind stage boundaries: files, queues, or databases.
Define stage boundaries as contracts with substitutable implementations.
Use the most specific concrete implementation within each stage.
Keep transform stages referentially transparent.
Test effect stages through substitutable boundary implementations.