Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

author-profile作者简介

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

470

周安装

20

GitHub Stars

29

下载量

165
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mwguerra/claude-code-plugins --skill author-profile

简介

创建和维护作者写作风格档案,统一技术文章与文档的语气与表达方式。

  • 支持多语言、专业角色与写作偏好配置,提升内容一致性。
  • 适用于团队协作写作、品牌文案管理与多作者项目规范化。
  • 安装需通过 npx skills add 添加 claude-code-plugins 仓库中的 author-profile 技能。
  • 作者信息存储于本地 SQLite 数据库,支持手动问卷与自动识别两种建立方式。

SKILL.md

Author Profile

Create and maintain consistent author voice across all articles.

Profile Location

Stored in: .article_writer/article_writer.db (authors table)

Schema: .article_writer/schemas/authors.schema.json

Two Ways to Create an Author

Option 1: Manual Questionnaire

Ask questions in conversational groups (2-3 at a time):

Identity

  1. What name/identifier for this author? (e.g., "mwguerra")
  2. Display name? (e.g., "MW Guerra")
  3. Professional role(s)?
  4. Years/areas of experience?
  5. Expertise areas?

Languages

  1. Primary writing language? (e.g., pt_BR, en_US)
  2. Translation target languages?

Tone (1-10)

  1. Casual (1) vs Formal (10)?
  2. Neutral (1) vs Opinionated (10)?

Vocabulary

  1. Terms readers know (use freely)?
  2. Terms to always explain?

Style

  1. Signature phrases?
  2. Phrases to avoid?

Positions

  1. Strong technology opinions?
  2. Topics to stay neutral on?

Example

  1. Write 2-3 sentences in your voice as example.

Option 2: Extract from Transcripts

Use Skill(voice-extractor) for transcript analysis.

If the author has recordings (podcasts, interviews, videos, meetings):

  1. Prepare transcripts - Get transcription files with speaker labels
  2. Run analysis: bun run "${CLAUDE_PLUGIN_ROOT}"/scripts/voice-extractor.ts --speaker "Name" transcripts/*.txt
  3. Review extracted data - Communication style, phrases, vocabulary
  4. Add identity info - Name, role, expertise, languages (manual)
  5. Merge - Combine extracted + manual data

Option 3: Combined Approach (Recommended)

Best results come from combining both:

  1. Extract voice patterns from transcripts
  2. Add identity/expertise info manually
  3. Review and refine the merged profile

Author JSON Structure

{
  "id": "author-slug",
  "name": "Display Name",
  "languages": ["pt_BR", "en_US"],
  "role": "Senior Developer",
  "experience": "10+ years",
  "expertise": ["Laravel", "PHP", "Architecture"],
  "tone": {
    "formality": 4,
    "opinionated": 7
  },
  "vocabulary": {
    "use_freely": ["Controllers", "Middleware", "API"],
    "always_explain": ["DDD", "CQRS", "Event Sourcing"]
  },
  "phrases": {
    "signature": ["Na prática...", "Vamos direto ao ponto:"],
    "avoid": ["Simplesmente", "É só fazer..."]
  },
  "opinions": {
    "strong_positions": ["Tests are essential", "Fat models are bad"],
    "stay_neutral": ["Tabs vs spaces", "IDE preferences"]
  },
  "example_voice": "Sample paragraph in author's voice...",
  "voice_analysis": {
    "extracted_from": ["podcast_ep1.txt", "interview.txt"],
    "sample_count": 156,
    "total_words": 12450,
    "sentence_structure": {
      "avg_length": 14.5,
      "variety": "moderate length, conversational",
      "question_ratio": 12.3
    },
    "communication_style": [
      { "trait": "enthusiasm", "percentage": 28.5 },
      { "trait": "analytical", "percentage": 24.1 }
    ],
    "characteristic_expressions": ["you know", "the thing is"],
    "sentence_starters": ["I think", "So the"],
    "signature_vocabulary": ["approach", "strategy", "implementation"],
    "analyzed_at": "2025-01-15T10:00:00Z"
  },
  "notes": "Additional style notes..."
}

Voice Analysis Fields

When transcripts are analyzed, these fields are populated:

FieldDescription
extracted_fromTranscript files analyzed
sample_countSpeaking turns analyzed
total_wordsTotal words in analysis
sentence_structureLength, variety, question frequency
communication_styleTraits: enthusiasm, hedging, directness, etc.
characteristic_expressionsFrequently used phrases/fillers
sentence_startersCommon ways to start sentences
signature_vocabularyWords that characterize the speaker

Using Voice Analysis When Writing

When writing articles, use voice_analysis data:

  1. Sentence structure: Match avg_length and variety
  2. Tone: Follow communication_style traits
  3. Natural speech: Sprinkle characteristic_expressions naturally
  4. Vocabulary: Prefer words from signature_vocabulary
  5. Sentence starters: Use patterns from sentence_starters

Multi-Language Workflow

  1. Article written in author's primary language (first in array)
  2. After completion, translated to other languages
  3. Each file named: {slug}.{language}.md

Example for author with ["pt_BR", "en_US"]:

content/articles/2025_01_15_rate-limiting/
├── rate-limiting.pt_BR.md    # Primary (written first)
└── rate-limiting.en_US.md    # Translation

Default Author

If article task doesn't specify author:

  • Author with lowest sort_order in the database is used
  • Their language settings apply
  • Their voice/tone is followed

Updating Authors

Add More Transcript Data

# Analyze new transcripts for existing author
bun run "${CLAUDE_PLUGIN_ROOT}"/scripts/voice-extractor.ts \
  --speaker "Name" \
  --author-json \
  new_podcast.txt > new_analysis.json

# Merge into existing profile (manually or via command)

When to Update

  • New transcript data available
  • Writing style evolves
  • Feedback indicates tone mismatch
  • New expertise develops

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.78%
按下载量换算56

Claude

28.86%
按下载量换算48

Cursor

18.49%
按下载量换算31

Gemini CLI

9.65%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills