General
PromptBeginner5 minmarkdown
Untitled Skill
193
For DeepSeek Chat IDE, DeepSeek Coder, and agents with `AGENTS.md` / rules support.
Loading actions...
Main instructions and any bundled files for this skill.
TypeScript and ESLint rules that MUST be followed when creating, modifying, or reviewing any file under apps/frontend/, including .ts, .tsx, .js, and .jsx files. Also apply when discussing frontend li...
risks
For DeepSeek Chat IDE, DeepSeek Coder, and agents with AGENTS.md / rules support.
cd your-android-project
git clone https://github.com/haidrrrry/compose-kotlin-agent-skills.git .deepseek/skills/compose-kotlin-agent-skills
Add to project AGENTS.md:
## compose-kotlin-agent-skills
Path: `.deepseek/skills/compose-kotlin-agent-skills/`
Rules:
- Read `SKILL.md` first for all Android/Kotlin tasks
- Use `references/` for topic-specific guidance
- ViewModel owns state; composables are stateless
- LazyColumn requires `key = { it.id }`
Copy skill to .cursor/skills/ or .continue/ and point model to DeepSeek — skill content is model-agnostic.
Ask: "Implement Room DAO with Flow following compose-kotlin-agent-skills."
Should output @Dao, Flow<List<T>>, suspend writes, repository layer.