원클릭으로
aibdd-form-class-diagram
將推理包翻譯為 Mermaid `classDiagram` 檔(`.class.mmd`)。 目標路徑與協作者/關係聯集由呼叫方透過 DELEGATE 參數指定,本 skill 不自決。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
將推理包翻譯為 Mermaid `classDiagram` 檔(`.class.mmd`)。 目標路徑與協作者/關係聯集由呼叫方透過 DELEGATE 參數指定,本 skill 不自決。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
當要把一筆需求對齊進 plan package 時觸發,這筆需求可以是對既有規格的變更或缺陷,也可以是要落到既有或全新 plan package 的全新需求。把這筆需求追加進 spec.md 並校準 impact matrix。
跨 skill 共用資源庫,本身不會被執行,只存放供其他 skill 載入的共用資源(reference/asset/script)。
Turn a legal Red handoff for target feature files green by verifying drift, editing product code only, detecting failure oscillation, and emitting a Green handoff. TRIGGER when Green execute is requested after aibdd-red-execute. SKIP when no legal Red handoff exists or the request is test, DSL, runtime, or architecture repair.
當 reconcile 校準 impact matrix 後、本 owner 名下有 pending impact 待落成 persistent data schema 時觸發。以 `read --owner aibdd-data-plan --impact-status pending` 為 worklist,依 Discovery 真相(spec.md/feature truth)把須穩定保存的系統狀態推論成 state schema、在草稿上收斂後委派 boundary profile 宣告之 state_specifier 落地至 `${DATA_DIR}`,最後回寫 impact matrix。
Build the entity-to-table mapping (`entity_to_table_mapping.yml`) from a boundary's physical schema specs (DBML / SQL DDL), preserving existing entity names and naming new tables from the plan spec.
Create legal AIBDD red for target feature files by loading project config, mapping every Scenario step to DSL and core preset assets, rendering runtime-visible step definitions, and emitting a Red handoff. TRIGGER when Red execute is requested or delegated by implementation/debug flow. SKIP when the feature package or BDD stack config is absent.
| name | aibdd-form-class-diagram |
| description | 將推理包翻譯為 Mermaid `classDiagram` 檔(`.class.mmd`)。 目標路徑與協作者/關係聯集由呼叫方透過 DELEGATE 參數指定,本 skill 不自決。 |
| metadata | {"user-invocable":false} |
Formulation skill。把呼叫方已聯集好的協作者與關係翻成 .class.mmd,再用 scripts/evaluate.py 驗語法。
classDiagram
class RoomController {
<<controller>>
}
class GameController {
<<controller>>
}
class JoinUseCase {
<<usecase>>
}
class SubmitUseCase {
<<usecase>>
}
class RoomRepo {
<<repository>>
}
class CombatRules {
<<domain-service>>
}
RoomController ..> JoinUseCase
GameController ..> SubmitUseCase
JoinUseCase ..> RoomRepo
SubmitUseCase ..> RoomRepo
SubmitUseCase ..> CombatRules
note for CombatRules "僅 err path"
支援的行類別:
class <名稱> { <<<分類>>> },分類可用 controller、usecase、repository、domain-service、gateway<起點> <連線符號> <終點>,連線符號對應 — 使用 ..>、依賴 -->、繼承 --|>、實作 ..|>note for <類別名稱> "<說明>"不畫成員、方法、cssClass、style、namespace、泛型、多重度等其他 dialect。
.class.mmd 結尾。依 §1 模板逐類別、關係、註記渲染。
python3 scripts/evaluate.py <剛寫的檔>。回傳「狀態、輸出路徑、驗證報告」三項給呼叫方。