Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

brand-builder品牌建设者

Agent Skill

brand-builder 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

558

周安装

23

GitHub Stars

8

下载量

182
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:brand-builder(品牌建设者)
来源仓库:https://github.com/phrazzld/claude-config
仓库路径:skills/brand-builder
安装命令:
npx skills add https://github.com/phrazzld/claude-config --skill brand-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill brand-builder

简介

brand-builder 通过交互式问答建立品牌档案,输出 legacy 格式的 brand-profile.yaml 指导内容生成。

  • 适用于新项目品牌初始化与既有品牌升级,覆盖目标受众、核心价值与语调定义等关键维度。
  • 生成后可被 /post 与 /announce 技能消费,确保全站内容风格一致且符合预设定位。
  • 推荐新项目使用 /brand-init 以获得 unified brand.yaml 格式,此技能为向后兼容保留。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/brand-builder

Establish brand identity. Generate content that fits.

Note: For new projects, prefer /brand-init which outputs the unified brand.yaml format consumed by brand-kit. This skill outputs the legacy brand-profile.yaml format. Use /brand-init for the full brand-as-code pipeline (tokens + assets + templates).

What This Does

Interactive discovery process that creates a brand-profile.yaml in the project root. This profile guides /post and /announce skills to generate on-brand content.

Process

Phase 1: Discovery (Interactive)

Ask the user questions using AskUserQuestion:

1. Target Audience

Who is the primary user of [product]?
- Developers / technical users
- General consumers
- Business / enterprise
- Specific niche (describe)

2. Tone & Voice

What tone should [product] use?
- Professional & authoritative
- Casual & friendly
- Playful & fun
- Technical & precise

3. Core Value Proposition

In one sentence, what does [product] do for users?
(User provides free text)

4. Content Topics

What topics are relevant to [product]'s audience? (Select multiple)
- Product updates & features
- Industry news & trends
- Tips & tutorials
- Behind-the-scenes / building in public
- User stories & testimonials
- General interest in the domain

5. Competitors / Inspirations

What brands or products inspire [product]'s voice?
(User provides free text - optional)

Phase 2: Context Gathering (Automatic)

Gather additional context without user input:

Git History Analysis

# Recent commits to understand what's being built
git log --oneline -20

# Key features from README
cat README.md | head -100

# Tech stack from package.json / Cargo.toml / etc.
cat package.json 2>/dev/null | jq '{name, description, keywords}'

Existing Marketing Materials

  • Check for existing brand-profile.yaml
  • Look for marketing copy in README, landing page
  • Note any existing social presence

Phase 3: Profile Generation

Generate brand-profile.yaml combining user input and gathered context:

# Brand Profile for [Product Name]
# Generated by /brand-builder on [date]
# Used by /post and /announce for content generation

product:
  name: Volume
  domain: volume.app
  tagline: "Track your lifts. See your gains."
  category: health

audience:
  primary: "Gym-goers who want to track strength training progress"
  demographics:
    - Age 25-45
    - Fitness enthusiasts
    - Data-driven
  pain_points:
    - Hard to remember what weight to use
    - Can't see progress over time
    - Existing apps are too complex

voice:
  tone: casual_friendly
  personality:
    - Encouraging but not preachy
    - Data-focused without being nerdy
    - Celebrates small wins
  avoid:
    - Bro culture / toxic fitness
    - Overly technical jargon
    - Shaming language

content:
  mix:
    product_updates: 30%
    valuable_content: 70%

  topics:
    # Product-related (30%)
    - New features and improvements
    - Tips for using the app
    - User milestones

    # Domain-related (70%)
    - Strength training tips
    - Form and technique
    - Progress tracking psychology
    - Motivation and consistency
    - Gym culture and community

  hashtags:
    primary:
      - "#fitness"
      - "#strengthtraining"
      - "#gymlife"
    product:
      - "#volumeapp"
      - "#trackyourlifts"

  posting_frequency: "2-3 times per week"

inspirations:
  - "Strong app - clean and focused"
  - "Strava - community without being overwhelming"

twitter_account: "@MistyStepLLC"  # From products.yaml category

# Generated context
context:
  tech_stack: "Next.js, TypeScript, Convex"
  recent_features:
    - "Interval timer"
    - "Exercise library"
    - "Progress charts"
  github_repo: "MistyStep/volume"

Phase 4: Save & Confirm

Save to project root as brand-profile.yaml.

Confirm with user:

Brand profile created for [Product].

Summary:
- Audience: [primary audience]
- Tone: [tone]
- Content mix: 30% product / 70% valuable content
- Topics: [list top 3]

Saved to: ./brand-profile.yaml

Run /post [product] to generate content using this profile.

Usage

# In a project directory
/brand-builder

# Or specify project name
/brand-builder volume

Output

Creates brand-profile.yaml in:

  1. Current directory (if in a project)
  2. Or ~/.claude/skills/brand-builder/profiles/[product].yaml as fallback

Integration

Other skills use this profile:

  • /post - Reads profile for voice, topics, hashtags
  • /announce - Uses profile for launch messaging
  • /social-content - Generates content calendar from topics

Re-running

If brand-profile.yaml already exists:

  1. Load existing profile
  2. Ask if user wants to update specific sections
  3. Preserve unchanged sections
  4. Update modified sections

Example Session

> /brand-builder

I'll help establish a brand identity for this project.
Let me gather some context first...

[Reads README, package.json, git history]

Found: "Volume" - a fitness tracking app

Question 1 of 5: Who is your primary user?
[AskUserQuestion with options]

...

Brand profile created!

Summary:
- Audience: Gym-goers tracking strength progress
- Tone: Casual & encouraging
- Topics: Strength training, progress tracking, gym tips

Saved to: ./brand-profile.yaml

Next: Run /post volume "shipped interval timer" to generate a launch post.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.4%
按下载量换算68

Claude

31.12%
按下载量换算57

Cursor

18.92%
按下载量换算34

Gemini CLI

9.49%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills