ワンクリックで
framework-oriented-design
Guidance on how code should be written in this repo. If you add or modify code, load this skill.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Guidance on how code should be written in this repo. If you add or modify code, load this skill.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Load this skill when creating a GitHub project backlog issue or drafting an issue title, body, type, or labels.
Backlog and project-management instructions using GitHub Issues. Load this skill when reading, listing, searching, understanding, or modifying project backlog issues.
Load this skill if you need to work with the backlog or meeting minutes
Load this skill if you need to review meeting minutes with the user
Load this skill if you need to prepare or review meeting minutes.
Load this skill if you need to create meeting minutes from transcript files.
| name | Framework-oriented Design |
| description | Guidance on how code should be written in this repo. If you add or modify code, load this skill. |
An application is a combination of framework and business logic.
We seek to separate framework code for business logic code.
Framework refers to the internal, helper code that supports the primary API of the application, as well as the conventions and patterns used in the codebase to create consistency and structure.
When preparing to implement a feature, understand the existing framework:
Then consider: should changes be made to the framework to support the new feature?
The business logic of the new feature should fit cleanly within the framework. Therefore, a change to the framework may be needed first, followed by a change to the business logic.
If a change to the framework is needed, refactor the code accordingly without adding any new behavior.
Guidance: