AugmentClaude

Setup Wizard

Guide users through creating recurring tasks, data feeds, and automated workflows step by step.

Installation

  1. Make sure Claude is on your device and in your terminal.

    Skills load from ~/.claude/skills/ when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then run claude in any terminal to verify.

    One-time setup
    npm i -g @anthropic-ai/claude-code

    Already have it? Skip ahead.

  2. Paste into Claude Code or into your terminal.

    This copies the whole skill folder into ~/.claude/skills/setup-wizard-receptron/ — the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.

    Faster alternative (instruction-only skills)

    Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.

    Quick install (SKILL.md only)
    Sign up to copy
  3. Restart Claude Code.

    Quit and reopen Claude Code (or any other agent that loads from ~/.claude/skills/). New skills are picked up on startup.

  4. Just ask Claude.

    Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.

Prefer to read the source first? Open on GitHub.

When Claude uses it

Set up automations conversationally — when users want recurring tasks, data feeds, or scheduled workflows, guide them through setup using existing MCP tools (manageAutomations, manageSkills) plus the Feeds mechanism. Respond in the user's language.

What this skill does

Setup Wizard

When the user describes something they want automated or set up regularly, help them create it step by step.

Flow

  1. Clarify — ask what, how often, and where the results go
  2. Show plan — list what you'll create (feed, task, skill) and ask for confirmation
  3. Execute — call the MCP tools
  4. Confirm — summarize what's running and when

Tools to use

  • Feeds — for monitoring websites / RSS / podcasts / JSON APIs: read config/helps/feeds.md and author feeds/<slug>/schema.json directly (no tool call — the host's retrieval engine fetches on a schedule)
  • manageAutomations createTask — for recurring tasks (daily/interval, times in UTC)
  • Collections with a calendarField — for dated items / one-off events: read config/helps/collection-skills.md and author a collection schema (no calendar tool exists)
  • manageSkills save — for on-demand workflows

Timezone

Always ask the user's timezone. Convert to UTC:

  • US Pacific: +7/+8h, US Eastern: +4/+5h, Japan: -9h, Central Europe: -1/-2h

Rules

  • Always confirm before creating anything
  • Show both user's timezone and UTC
  • Write task prompts as clear instructions for another Claude instance

Related skills