Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Your agents are failing silently. CueAPI tells you when and why.

**Cron has no concept of success. Cue does.**
*Cron has no concept of success. Cue does.*

[![License](https://img.shields.io/badge/license-MIT-black)](LICENSE)
[![Python](https://img.shields.io/badge/python-3.9%2B-blue)](https://pypi.org/project/cueapi/)
Expand All @@ -13,6 +13,8 @@ Your agents are failing silently. CueAPI tells you when and why.

The official CLI for [CueAPI](https://cueapi.ai). Manage your cues, check executions, and verify outcomes from the terminal.

Built for AI builders running agents in production. Schedule your agent tasks, confirm delivery, and verify outcomes without leaving the terminal.

---

## Install
Expand Down Expand Up @@ -41,9 +43,16 @@ cueapi list

## Why CueAPI over cron?

Your agent ran at 3am. Did it succeed? Cron does not know.
Cron fires a job. That is it. No retries. No delivery confirmation. No outcome tracking. No visibility.

CueAPI tracks every execution with proof of outcome. Every job becomes something you can verify.
| Feature | Cron | CueAPI |
|---------|------|--------|
| Fires on schedule | Yes | Yes |
| Confirms delivery | No | Yes |
| Tracks outcomes | No | Yes |
| Retries on failure | No | Yes (1, 5, 15 min) |
| Alerts on failure | No | Yes |
| Execution history | No | Yes |

---

Expand Down
Loading