From ios-dev
Remove TCA (Composable Architecture) - find usage, migrate to @Observable, delete reducers
npx claudepluginhub willsigmon/sigstack --plugin ios-devThis skill is limited to using the following tools:
Remove The Composable Architecture from Leavn codebase.
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.
Remove The Composable Architecture from Leavn codebase.
grep -r "Reducer" --include="*.swift" | grep -v "Pods\|DerivedData"
grep -r "Store\|ViewStore" --include="*.swift"
grep -r "@Dependency" --include="*.swift"
grep -r "ComposableArchitecture" --include="*.swift"
TCA Feature → @Observable ViewModel
Before (TCA):
@Reducer struct MyFeature {
@ObservableState struct State { var count = 0 }
enum Action { case increment }
var body: some ReducerOf<Self> { ... }
}
After (@Observable):
@Observable @MainActor
class MyViewModel {
var count = 0
func increment() { count += 1 }
}
find . -name "*Feature.swift" -o -name "*Reducer.swift" | wc -l
Use when: TCA removal, migration tracking, @Observable conversion