From ios-dev
Debug Leavn navigation issues - NotificationCenter routing, deep links, tab selection, AppCoordinator, modal presentations
npx claudepluginhub willsigmon/sigstack --plugin ios-devThis skill is limited to using the following tools:
Fix navigation bugs in Leavn:
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides MCP server integration in Claude Code plugins via .mcp.json or plugin.json configs for stdio, SSE, HTTP types, enabling external services as tools.
Fix navigation bugs in Leavn:
Check notification handling:
Common Leavn patterns:
// Post navigation
NotificationCenter.default.post(
name: .OpenBibleReference,
userInfo: ["book": "Genesis", "chapter": 1]
)
// Handle in ContentView
.onReceive(NotificationCenter.default.publisher(for: .OpenBibleReference)) {
// Navigate to Bible
}
Debug steps:
Use when: Navigation broken, wrong screen, deep links fail, tab routing issues