# Auxiliary Only Skill

> A skill that uses only shell and config code blocks for testing contamination.

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

---

# Auxiliary Only Skill

This skill uses bash commands and config files but no application languages.

## Setup

Install the required tools:

```bash
brew install jq yq
```

## Configuration

Create a config file:

```yaml
server:
  host: localhost
  port: 8080
```

Alternatively use JSON:

```json
{
  "server": {
    "host": "localhost",
    "port": 8080
  }
}
```

## Running

Start the service:

```sh
./start.sh --config config.yaml
```

