# Dailybot Featured

> Manage private Featured stars via the Dailybot CLI — list, set, and batch feature/unfeature Forms, Automations, and Check-ins for the authenticated user. Use when the developer asks to star/unstar dashboards items or manage Featured state. Not for organization Labels (use dailybot-labels).

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

---


# Dailybot Featured

> **Requires `dailybot-cli >= 3.9.0`** with `dailybot featured …` commands. If missing, ask the developer to run `dailybot upgrade`.

**Featured** is private per-user personalization — star Forms, Automations, or Check-ins so they surface first in your dashboards. Not gated by paid Labels.

## When to Use

- List which entities the user has starred
- Star or unstar one entity
- Batch feature/unfeature after bulk selection

Entity types: `forms`, `automations`, `checkins`.

## Step 1 — Verify Setup

Read [`../shared/auth.md`](../shared/auth.md). Featured requires a user-scoped session or API key.

## Step 2 — Common commands

```bash
dailybot featured list --entity-type forms
dailybot featured set <entity_uuid> --entity-type checkins
dailybot featured set <entity_uuid> --entity-type automations --unfeatured
dailybot featured batch --entity-type forms --uuids uuid-1,uuid-2
```

Add `--json` for machine-readable output.

## Step 3 — HTTP fallback

```bash
curl "https://api.dailybot.com/v1/me/featured/?entity_type=forms" \
  -H "Authorization: Bearer $DAILYBOT_CLI_TOKEN"
```

See [`../shared/http-fallback.md`](../shared/http-fallback.md).

## Non-Blocking Rule

If auth fails, warn briefly and continue the primary task.

