# Is Positive

> Check if a number is positive

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

---


# Is Positive

Checks if the input value is a positive number (greater than zero).

## Purpose

Simple boolean condition for numeric validation and control flow.

## Input Format

Accepts:
- Integer or float value
- String representation of number

## Output Format

Returns boolean:
- `True` if value > 0
- `False` otherwise

## Examples

Input: 5
Output: True

Input: -3
Output: False

Input: "42"
Output: True


