원클릭으로
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: