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

# momentic-mobile install-skills

> Install Momentic mobile skill files for coding agents (deprecated).

<Warning>
  `momentic-mobile install-skills` is deprecated. Use the standalone `skills`
  CLI instead:

  ```bash theme={null}
  npx skills add momentic-ai/skills
  ```
</Warning>

Installs Momentic mobile skill markdown so coding assistants get explicit
instructions for the Momentic MCP. See the
[MCP integration guide](/integrations/mcp-server) for the full setup flow.

```bash theme={null}
npx momentic-mobile install-skills --editor <editor>
```

## Legacy command

<Note>
  Only use this command if you are pinned to an older version of Momentic and
  need an older version of the skills.
</Note>

Skills give coding agents explicit instructions for using the Momentic MCP.
Without them, agents are more likely to make malformed tool calls. Run this
after configuring the MCP server.

### Options

<ParamField path="--editor <editor>" type="string" required>
  Editor whose skill directory to write into. One of `cursor`, `claude-code`,
  `codex`, `opencode`, or `copilot`.
</ParamField>

### Install location

Inside a git repository, the skill installs at `<git-root>/<path>`. Outside git,
it installs at `<cwd>/<path>`.

| Editor        | Path                                             |
| ------------- | ------------------------------------------------ |
| `cursor`      | `.cursor/skills/momentic-mobile-test/SKILL.md`   |
| `claude-code` | `.claude/skills/momentic-mobile-test/SKILL.md`   |
| `codex`       | `.agents/skills/momentic-mobile-test/SKILL.md`   |
| `opencode`    | `.opencode/skills/momentic-mobile-test/SKILL.md` |
| `copilot`     | `.github/skills/momentic-mobile-test/SKILL.md`   |

## Examples

Install skills for Cursor:

```bash theme={null}
npx momentic-mobile install-skills --editor cursor
```

Install skills for Claude Code:

```bash theme={null}
npx momentic-mobile install-skills --editor claude-code
```
