# Project Commands

> Manages project-specific commands for development, testing, and deployment. Use when needing to run project commands or when setting up commands for a new project.

- Skill: `tomevault-io/project-commands` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/project-commands`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/project-commands/raw
- Safety review: pending (external: skill-scanner PASS, skillspector CAUTION)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/project-commands

---


# Project Commands Skill

This skill helps agents find and use the correct commands for the current project.

## Finding Commands

All project-specific commands are defined in `.claude/commands.md`. Always read this file before running commands.

```bash
# Read the commands file
cat .claude/commands.md
```

## Command Categories

### Development
- **Install**: Set up project dependencies
- **Dev**: Start development server
- **Build**: Create production build

### Testing
- **Test**: Run all tests
- **Test:unit**: Unit tests only
- **Test:e2e**: End-to-end tests (Playwright)
- **Test:coverage**: Tests with coverage report

### Code Quality
- **Lint**: Check code style
- **Format**: Auto-format code
- **Typecheck**: Verify types

## Setting Up Commands for a New Project

1. Copy the template:
```bash
cp .claude/commands.template.md [target-project]/.claude/commands.md
```

2. Replace placeholders with actual commands:
```
{{install}} → npm install (or yarn, pnpm, etc.)
{{dev}} → npm run dev
{{dev_url}} → http://localhost:3000
{{test}} → npm test
```

3. Remove unused sections (database, docker, etc.)

## Common Patterns by Stack

### Node.js / npm
```
{{install}}: npm install
{{dev}}: npm run dev
{{test}}: npm test
{{build}}: npm run build
```

### Python / pip
```
{{install}}: pip install -r requirements.txt
{{dev}}: python manage.py runserver
{{test}}: pytest
{{build}}: python setup.py build
```

### Go
```
{{install}}: go mod download
{{dev}}: go run .
{{test}}: go test ./...
{{build}}: go build
```

### Rust
```
{{install}}: cargo build
{{dev}}: cargo run
{{test}}: cargo test
{{build}}: cargo build --release
```

## Agent Usage

When an agent needs to run a command:

1. Check `.claude/commands.md` for the correct command
2. Use the command exactly as specified
3. If a command is missing, ask the user or check `package.json`/equivalent

## Updating Commands

If you discover the correct command for an action:
1. Update `.claude/commands.md` with the correct command
2. Ensure other agents can find it in the future

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/shwilliamson) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

