DeepSeek Setup

For DeepSeek Chat IDE, DeepSeek Coder, and agents with `AGENTS.md` / rules support.

promptBeginner5 min to valuemarkdown0
0 views
May 31, 2026

Loading actions...

Prompt Playground

1 Variables

Fill Variables

Preview

# DeepSeek Setup

For DeepSeek Chat IDE, DeepSeek Coder, and agents with `AGEN[T>]S.md` / rules support.

## Install

```bash
cd your-android-project
git clone https://github.com/haidrrrry/compose-kotlin-agent-skills.git .deepseek/skills/compose-kotlin-agent-skills
```

## AGEN[T>]S.md Integration

Add to project `AGEN[T>]S.md`:

```markdown
## 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 }`
```

## VS Code / Cursor with DeepSeek model

Copy skill to `.cursor/skills/` or `.continue/` and point model to DeepSeek — skill content is model-agnostic.

## Verification

Ask: "Implement Room DAO with Flow following compose-kotlin-agent-skills."

Should output `@Dao`, `Flow<List<[T>][T>][T>]`, `suspend` writes, repository layer.
Share: