# Format Price

> Use this skill to format a numeric amount as a currency string with the correct symbol, thousands separators, and two decimals (USD, EUR, GBP, etc.). Handles ints, floats, and numeric strings. Deterministic, offline.

- Skill: `ncreighton/format-price` (Agent Skill, multi-file: 9 files)
- Install (CLI): `npx skillmds@latest add ncreighton/format-price`
- Raw SKILL.md: https://api.skillmd.com/api/skills/ncreighton/format-price/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: ncreighton (https://skillmd.com/u/ncreighton)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/ncreighton/format-price

---


# format-price

Use this skill to format a numeric amount as a currency string with the correct symbol, thousands separators, and two decimals (USD, EUR, GBP, etc.). Handles ints, floats, and numeric strings. Deterministic, offline.

- **Kind**: tool  |  **Niche**: reviews  |  **Cost tier**: free  |  **Version**: 0.1.0

## Empire Integration
```python
import sys
sys.path.insert(0, r'C:\D\Claude Code Projects\_SHARED')
import empire_bootstrap  # wires all shared paths
```

## Usage

**As a CLI:**
```bash
python run.py --amount <number>
```

**From a Python agent (ATEN runtime):**
```python
from skill_library import executor
result = executor.execute("format-price", {amount=...})
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `amount` | number | yes | The amount |
| `currency` | string | no | ISO code (USD/EUR/GBP/JPY), default USD |

## Returns

`object` — `{"status": "ok"|"error", "result": ...}`

