diff --git a/.gitignore b/.gitignore
index 590e1b67..fa484626 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,9 @@
#added by trueheads > will remove once supercombo adds multi-os support
launch.sh
+# Claude Code settings
+.claude/settings.local.json
+
# Dependencies
node_modules/
diff --git a/apps/app/src/components/views/board-view.tsx b/apps/app/src/components/views/board-view.tsx
index 3b7c361c..2836c917 100644
--- a/apps/app/src/components/views/board-view.tsx
+++ b/apps/app/src/components/views/board-view.tsx
@@ -445,6 +445,7 @@ export function BoardView() {
isMaximized={isMaximized}
showProfilesOnly={showProfilesOnly}
aiProfiles={aiProfiles}
+ allFeatures={hookFeatures}
/>
{/* Agent Output Modal */}
diff --git a/apps/app/src/components/views/board-view/components/kanban-card.tsx b/apps/app/src/components/views/board-view/components/kanban-card.tsx
index 11e67ac6..d32bfefe 100644
--- a/apps/app/src/components/views/board-view/components/kanban-card.tsx
+++ b/apps/app/src/components/views/board-view/components/kanban-card.tsx
@@ -330,6 +330,49 @@ export const KanbanCard = memo(function KanbanCard({
/>
)}
+ {/* Priority badge */}
+ {feature.priority && (
+
+ {feature.priority === 1
+ ? "High Priority"
+ : feature.priority === 2
+ ? "Medium Priority"
+ : "Low Priority"}
+