Skip to main content
GitHub 仓库

arch26

arch26 收录了来自 argenkiwi 的 6 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
6
Stars
3
更新
2026-05-01
Forks
1
职业覆盖
2 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

create-feature
软件开发工程师

Scaffolds a complete feature package — Model, View, and Presenter unit tests — following the project's Molecule + Koin architecture. Orchestrates the create-model, create-view, and create-model-test skills. Creates a module file only when third-party dependencies are needed. Use this when the user wants to add a new screen end-to-end.

2026-05-01
create-repository
软件开发工程师

Creates a Repository interface, its implementation, optional SQLDelight schema, and a Fake for testing — following the project's Koin + StateFlow architecture. Use this skill whenever the user wants to add a data layer for a feature, persist data, fetch from an API, connect a Presenter to real data, or asks about "repository", "data layer", "database table", or "API integration" in this project.

2026-05-01
init-app
软件开发工程师

Migrates an existing Android application module to the Molecule + Koin + Navigation3 architecture used in this project, so the create-feature skill can be used to add features. Updates build.gradle.kts (plugins, Java 17, dependencies), creates the Application class, retainMolecule.kt, and rewrites MainActivity with the Navigation3 scaffold. Use this when porting an app from any other architecture.

2026-04-15
create-model
软件开发工程师

Creates a new Model file following the project's architecture (object with State, Action/Actions, and a @Factory Presenter). Use this when the user wants to add a new screen's logic or data state.

2026-04-15
create-model-test
软件质量保证分析师与测试员

Creates unit tests for a Model's Presenter following the project's Molecule + Turbine testing pattern. Use this when the user wants to add tests for a Model created with the create-model skill.

2026-04-15
create-view
软件开发工程师

Creates a new View file for a Model following the project's Compose + Molecule architecture (object with two Pane overloads — a connected one that injects the Presenter, and a stateless one that takes State directly). Optionally wires it into MainActivity navigation and the ListView menu. Use this when the user wants to add a screen UI for an existing or new Model.

2026-04-15