> ## Documentation Index
> Fetch the complete documentation index at: https://wiki.mira.tg/llms.txt
> Use this file to discover all available pages before exploring further.

# For Developers

> How developers use Mira to code, debug, and ship faster

# For Developers

Mira is your AI pair programmer — debugging, writing code, managing repos, and deploying, all from Telegram.

## Daily use cases

<CardGroup cols={2}>
  <Card title="Code review" icon="code">
    "Review this function for security issues and performance"
  </Card>

  <Card title="Bug triage" icon="bug">
    "Create a GitHub issue: login fails on iOS 17.5"
  </Card>

  <Card title="Deploy check" icon="rocket">
    "Check Vercel deploy status for the latest commit"
  </Card>

  <Card title="Docs lookup" icon="book">
    "How does the React useEffect cleanup work?"
  </Card>

  <Card title="PR summary" icon="git-pull-request">
    "Summarize the changes in PR #42"
  </Card>

  <Card title="Daily push" icon="bell">
    Get a morning digest with open issues and failed deploys
  </Card>
</CardGroup>

## Time-saving workflows

### Writing code

```
Write a Python function that validates email addresses with regex
Create a TypeScript interface for a User with name, email, role, createdAt
Explain this error: TypeError: Cannot read property 'map' of undefined
```

### Git & GitHub

```
Create a branch called feature/auth from main
List open PRs in the mira-wiki repo
Close issue #15 with a comment: "Fixed in PR #23"
```

### Debugging

```
Why is this API returning 403?
Debug this SQL query — it's returning duplicate rows
Explain this stack trace and suggest a fix
```

### DevOps

```
Check if the latest Vercel deployment succeeded
What's the status of the production API?
List recent GitHub Actions runs
```

## Popular use cases

* **Boilerplate generation** — scaffold components, APIs, configs
* **Regex builder** — describe what you need, get the regex
* **API design** — outline endpoints, request/response schemas
* **Error explanation** — paste stack traces, get human-readable explanations
* **Code translation** — convert code between languages
* **Test writing** — generate unit tests from function signatures
* **Infrastructure as code** — generate Terraform, Docker configs
* **Security audit** — review code for common vulnerabilities

<Tip>Create a skill called "Dev Bot" that auto-reviews code and creates issues for bugs found.</Tip>
