一键导入
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 页面并帮你完成安装。
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: