Skip to main content
Dépôt GitHub

arch26

arch26 contient 6 skills collectées depuis argenkiwi, avec une couverture métier par dépôt et des pages de détail sur le site.

skills collectés
6
Stars
3
mis à jour
2026-05-01
Forks
1
Couverture métier
2 catégories métier · 100% classifié
explorateur de dépôts

Skills dans ce dépôt

create-feature
Développeurs de logiciels

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
Développeurs de logiciels

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
Développeurs de logiciels

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
Développeurs de logiciels

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
Analystes en assurance qualité des logiciels et testeurs

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
Développeurs de logiciels

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