在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用musubix-code-generation
星标13
分支2
更新时间2026年1月25日 07:33
設計仕様からコード生成ガイド。実装・機能作成に使用。
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
設計仕様からコード生成ガイド。実装・機能作成に使用。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Architecture Decision Records作成ガイド。技術選定・設計判断のドキュメント化に使用。
MUSUBIX学習済み17ベストプラクティスガイド。コード・設計・テストパターンの適用に使用。
C4モデル設計ドキュメント作成ガイド。アーキテクチャ図・コンポーネント設計に使用。
自動ドメイン検出・コンポーネント推論ガイド。プロジェクトドメイン特定に使用。
EARS形式要件の検証・作成ガイド。要件記述・構文検証に使用。
MUSUBIX SDD開発ワークフローガイド。10憲法条項に従った開発プロセスに使用。
| name | musubix-code-generation |
| description | 設計仕様からコード生成ガイド。実装・機能作成に使用。 |
| license | MIT |
設計ドキュメントからコードを生成し、トレーサビリティを維持。
| 言語 | 拡張子 | サポート機能 |
|---|---|---|
| TypeScript | .ts | フル型サポート |
| JavaScript | .js | ES6+ modules |
| Python | .py | 型ヒント |
| Java/Go/Rust/C# | 各種 | Interface/Struct生成 |
| WHEN | DO |
|---|---|
| コード生成前 | DES-*とREQ-*の存在確認 |
| 実装開始 | テスト先行(Article III) |
| コード作成 | @see タグでトレーサビリティ追加 |
/**
* UserService - Handles user operations
* @see REQ-INT-001 - Neuro-Symbolic Integration
* @see DES-INT-001 - Integration Layer Design
*/
export class UserService { ... }
| パターン | 用途 |
|---|---|
| Singleton | グローバルインスタンス管理 |
| Factory | 型に応じたオブジェクト生成 |
| Repository | データアクセス抽象化 |
/** @pattern Repository */
export interface Repository<T> {
findById(id: string): Promise<T | null>;
save(entity: T): Promise<T>;
delete(id: string): Promise<void>;
}
npx musubix codegen generate <design-file> # コード生成
npx musubix codegen generate <file> --full-skeleton # 4ファイル生成
npx musubix codegen generate <file> --with-tests # テスト付き
npx musubix codegen status <spec> # ステータス遷移コード
npx musubix codegen status <spec> --enum # enum型
npx musubix codegen analyze <file> # 静的解析
npx musubix codegen security <path> # セキュリティスキャン
any typesnpm run lint passesnpm run build succeeds┌─────────────────────────────────────────┐
│ Code Generated │
├─────────────────────────────────────────┤
│ Source: DES-AUTH-001 │
│ Files: 4 generated │
│ Patterns: Repository, Service │
│ Coverage: @see tags added │
│ Tests: test stubs generated │
└─────────────────────────────────────────┘