ワンクリックで
kanban-modeling
Procedures for database schema design for hierarchical tasks and event auditing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Procedures for database schema design for hierarchical tasks and event auditing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
The official Kanbrio development and review lifecycle using AI agents.
Naming conventions, function design, and readability standards.
YAGNI, simplicity, and continuous improvement mindset.
Procedures for auditing third-party dependencies for license compatibility and ensuring open-source compliance.
Rules for cross-package dependencies and monorepo structure.
Technical instructions for implementing probabilistic forecasting.
| name | kanban-modeling |
| description | Procedures for database schema design for hierarchical tasks and event auditing. |
This skill provides the architectural blueprints for a Business Map-inspired Kanban system.
Use recursive CTEs to calculate parent progress:
WITH RECURSIVE subordinates AS (
SELECT id, parent_id, status FROM cards WHERE id = ?
UNION ALL
SELECT c.id, c.parent_id, c.status FROM cards c
INNER JOIN subordinates s ON s.id = c.parent_id
)
SELECT status, count(*) FROM subordinates GROUP BY status;
Ensure the system enforces: