📄 first-time-setup.md

← 返回目录


name: first-time-setup description: First-time setup flow for baoyu-post-to-wechat preferences

First-Time Setup

Overview

When no EXTEND.md is found, guide user through preference setup.

BLOCKING OPERATION: This setup MUST complete before ANY other workflow steps. Do NOT:

| v +---------------------+ | AskUserQuestion | | (all questions) | +---------------------+ | v +---------------------+ | Create EXTEND.md | +---------------------+ | v Continue to Step 1

Questions

Language: Use user's input language or saved language preference.

Use AskUserQuestion with ALL questions in ONE call:

Question 1: Default Theme

header: "Theme"
question: "Default theme for article conversion?"
options:
  - label: "default (Recommended)"
    description: "Classic layout - centered title with border, white-on-color H2 (default: blue)"
  - label: "grace"
    description: "Elegant - text shadows, rounded cards, refined blockquotes (default: purple)"
  - label: "simple"
    description: "Minimal modern - asymmetric rounded corners, clean whitespace (default: green)"
  - label: "modern"
    description: "Large rounded corners, pill headings, spacious (default: orange)"

Question 2: Default Color

header: "Color"
question: "Default color preset? (theme default if not set)"
options:
  - label: "Theme default (Recommended)"
    description: "Use the theme's built-in default color"
  - label: "blue"
    description: "#0F4C81 经典蓝"
  - label: "red"
    description: "#A93226 中国红"
  - label: "green"
    description: "#009874 翡翠绿"

Note: User can choose "Other" to type any preset name (vermilion, yellow, purple, sky, rose, olive, black, gray, pink, orange) or hex value.

Question 3: Default Publishing Method

header: "Method"
question: "Default publishing method?"
options:
  - label: "api (Recommended)"
    description: "Fast, requires API credentials (AppID + AppSecret)"
  - label: "browser"
    description: "Slow, requires Chrome and login session"

Question 4: Default Author

header: "Author"
question: "Default author name for articles?"
options:
  - label: "No default"
    description: "Leave empty, specify per article"

Note: User will likely choose "Other" to type their author name.

Question 5: Open Comments

header: "Comments"
question: "Enable comments on articles by default?"
options:
  - label: "Yes (Recommended)"
    description: "Allow readers to comment on articles"
  - label: "No"
    description: "Disable comments by default"

Question 6: Fans-Only Comments

header: "Fans only"
question: "Restrict comments to followers only?"
options:
  - label: "No (Recommended)"
    description: "All readers can comment"
  - label: "Yes"
    description: "Only followers can comment"

Question 7: Save Location

header: "Save"
question: "Where to save preferences?"
options:
  - label: "Project (Recommended)"
    description: ".baoyu-skills/ (this project only)"
  - label: "User"
    description: "~/.baoyu-skills/ (all projects)"

Save Locations

| Choice | Path | Scope | |--------|------|-------| | Project | .baoyu-skills/baoyu-post-to-wechat/EXTEND.md | Current project | | User | ~/.baoyu-skills/baoyu-post-to-wechat/EXTEND.md | All projects |

After Setup

1. Create directory if needed 2. Write EXTEND.md 3. Confirm: "Preferences saved to [path]" 4. Continue to Step 0 (load the saved preferences)

EXTEND.md Template

Single Account (Default)

default_theme: [default/grace/simple/modern]
default_color: [preset name, hex, or empty for theme default]
default_publish_method: [api/browser]
default_author: [author name or empty]
need_open_comment: [1/0]
only_fans_can_comment: [1/0]
chrome_profile_path:

Multi-Account

default_theme: [default/grace/simple/modern]
default_color: [preset name, hex, or empty for theme default]

accounts: - name: [display name] alias: [short key, e.g. "baoyu"] default: true default_publish_method: [api/browser] default_author: [author name] need_open_comment: [1/0] only_fans_can_comment: [1/0] app_id: [WeChat App ID, optional] app_secret: [WeChat App Secret, optional] - name: [second account name] alias: [short key, e.g. "ai-tools"] default_publish_method: [api/browser] default_author: [author name] need_open_comment: [1/0] only_fans_can_comment: [1/0]

Adding More Accounts Later

After initial setup, users can add accounts by editing EXTEND.md:

1. Add an accounts: block with list items 2. Move per-account settings (author, publish method, comments) into each account entry 3. Keep global settings (theme, color) at the top level 4. Each account needs a unique alias (used for CLI --account arg and Chrome profile naming) 5. Set default: true on the primary account

Modifying Preferences Later

Users can edit EXTEND.md directly or delete it to trigger setup again.