# C Apps

> Install, update, and search Mac App Store apps from the command line using mas.

- Skill: `daxaur/c-apps` (Agent Skill)
- Install (CLI): `npx skillmds@latest add daxaur/c-apps`
- Raw SKILL.md: https://api.skillmd.com/api/skills/daxaur/c-apps/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: daxaur (https://skillmd.com/u/daxaur)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/daxaur/c-apps

---


# Mac App Store (mas)

```bash
# Search for apps
mas search Xcode
mas search "Bear Notes"

# Install by app ID
mas install 497799835    # Xcode

# List installed apps
mas list

# Check for outdated apps
mas outdated

# Upgrade all outdated apps
mas upgrade

# Upgrade specific app
mas upgrade 497799835

# Show app info
mas info 497799835

# Open app page in App Store
mas open 497799835
```

## Guidelines

- User must be signed into the Mac App Store
- On macOS 15+, install/upgrade requires admin password
- Use `mas search` to find app IDs before installing
- `mas upgrade` updates all apps — confirm with user first
- Free and paid apps both work (paid requires prior purchase)

