"""액션아이템 Feature Plugin. API: /api/v1/action-items ADR-018 Phase 2: DB 상태관리 독립 트리거 분석: 리포트 없이 직접 트리거 평가 → 저장 """ import streamlit as st from . import overview FEATURE_CONFIG = { "key": "action_items", "name": "액션아이템", "icon": "✅", "description": "트리거 분석 + 액션아이템 관리 (상태 추적, 담당자 배정)", "api_base": "/api/v1/action-items", "order": 4, } def render(base_ctx): """액션아이템 feature 렌더링.""" st.caption("14개 트리거 규칙으로 신호를 탐지하고 액션아이템으로 관리합니다") overview.render(base_ctx)