en un clic
systems-design
Design or refine software architecture.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Design or refine software architecture.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle 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.