Agent Skillsdeanpeters/Product-Manager-Skills › skill-authoring-workflow

skill-authoring-workflow

GitHub

将原始PM内容转化为符合标准的SKILL.md文件,确保通过验证并融入仓库。适用于创建或更新技能资产,利用脚本工具规范流程,严格检查元数据、章节顺序及引用完整性,实现从草稿到发布就绪的标准化转换。

skills/skill-authoring-workflow/SKILL.md deanpeters/Product-Manager-Skills

Trigger Scenarios

需要创建新的技能资产 需要更新现有技能以符合标准 将会议记录或提示词转换为合规的SKILL.md

Install

npx skills add deanpeters/Product-Manager-Skills --skill skill-authoring-workflow -g -y
More Options

Use without installing

npx skills use deanpeters/Product-Manager-Skills@skill-authoring-workflow

指定 Agent (Claude Code)

npx skills add deanpeters/Product-Manager-Skills --skill skill-authoring-workflow -a claude-code -g -y

安装 repo 全部 skill

npx skills add deanpeters/Product-Manager-Skills --all -g -y

预览 repo 内 skill

npx skills add deanpeters/Product-Manager-Skills --list

SKILL.md

Frontmatter
{
    "name": "skill-authoring-workflow",
    "type": "workflow",
    "intent": "Create or update PM skills without chaos. This workflow turns rough notes, workshop content, or half-baked prompt dumps into compliant `skills\/<skill-name>\/SKILL.md` assets that actually pass validation and belong in this repo.",
    "best_for": [
        "Creating a new repo skill from notes or source material",
        "Updating an existing skill while keeping standards intact",
        "Running the full authoring and validation workflow before commit"
    ],
    "scenarios": [
        "Help me turn these workshop notes into a new PM skill",
        "I need to update an existing skill without breaking the repo standards",
        "What workflow should I use to author a new skill in this repo?"
    ],
    "description": "Turn raw PM content into a compliant, publish-ready skill. Use when creating or updating a repo skill without breaking standards.",
    "argument-hint": "[source content or skill to update]"
}

Purpose

Create or update PM skills without chaos. This workflow turns rough notes, workshop content, or half-baked prompt dumps into compliant skills/<skill-name>/SKILL.md assets that actually pass validation and belong in this repo.

Use it when you want to ship a new skill without "looks good to me" roulette.

Input

Bring the raw material and the intent — rough is fine; the workflow exists to get it the rest of the way:

  • Works best with: the source content (notes, transcript, framework, prompt sequence) or the existing skill you want to update
  • Also useful: the intended skill type (component/interactive/workflow), target audience, and any naming preference

If you supply this inline with your request (e.g., "turn research/pricing-workshop-notes.md into an interactive advisor"), the workflow starts at Phase 1 with that context — it won't re-ask for what you already gave. If you provide nothing, it opens by asking what content you want to turn into a skill and offers the entry modes from the facilitation protocol.

Example: Use skill-authoring-workflow: convert research/pricing-workshop-notes.md into an interactive pricing advisor.

Key Concepts

Dogfood First

Use repo-native tools and standards before inventing a custom process:

  • scripts/find-a-skill.sh
  • scripts/add-a-skill.sh
  • scripts/build-a-skill.sh
  • scripts/test-a-skill.sh
  • scripts/check-skill-metadata.py

Pick the Right Creation Path

  • Guided wizard (build-a-skill.sh): Best when you have an idea but not final prose.
  • Content-first generator (add-a-skill.sh): Best when you already have source content.
  • Manual edit + validate: Best for tightening an existing skill.

Definition of Done (No Exceptions)

A skill is done only when:

  1. Frontmatter is valid (name, description, intent, type)
  2. Section order is compliant (Purpose, Input, Key Concepts, Application, Examples, Common Pitfalls, References)
  3. Metadata limits are respected (name <= 64 chars, description <= 200 chars)
  4. Description says both what the skill does and when to use it
  5. The Input section says what the user can bring, shows an example invocation, tells the agent to use inline input instead of re-asking, and makes clear that arriving with partial or zero input is fine — in plain language, never runtime template syntax like $ARGUMENTS (rationale: CONTRIBUTING.md, "Why We Don't Use $ARGUMENTS")
  6. Intent carries the fuller repo-facing summary without replacing the trigger-oriented description
  7. Cross-references resolve
  8. README catalog counts and tables are updated (if adding/removing skills)

Facilitation Source of Truth

When running this workflow as a guided conversation, use workshop-facilitation as the interaction protocol.

It defines:

  • session heads-up + entry mode (Guided, Context dump, Best guess)
  • one-question turns with plain-language prompts
  • progress labels (for example, Context Qx/8 and Scoring Qx/5)
  • interruption handling and pause/resume behavior
  • numbered recommendations at decision points
  • quick-select numbered response options for regular questions (include Other (specify) when useful)

This file defines the workflow sequence and domain-specific outputs. If there is a conflict, follow this file's workflow logic.

Application

Phase 1: Preflight (Avoid Duplicate Work)

  1. Search for overlapping skills:
./scripts/find-a-skill.sh --keyword "<topic>"
  1. Decide type:
  • Component: one artifact/template
  • Interactive: 3-5 adaptive questions + numbered options
  • Workflow: multi-phase orchestration

Phase 2: Generate Draft

If you have source material:

./scripts/add-a-skill.sh research/your-framework.md

If you want guided prompts:

./scripts/build-a-skill.sh

Phase 3: Tighten the Skill

Manually review for:

  • Clear "when to use" guidance
  • One concrete example
  • One explicit anti-pattern
  • No filler or vague consultant-speak

Phase 4: Validate Hard

Run strict checks before thinking about commit:

./scripts/test-a-skill.sh --skill <skill-name> --smoke
python3 scripts/check-skill-metadata.py skills/<skill-name>/SKILL.md
python3 scripts/check-skill-triggers.py skills/<skill-name>/SKILL.md --show-cases

Phase 5: Integrate with Repo Docs

If this is a new skill:

  1. Add it to the correct README category table
  2. Update skill totals and category counts
  3. Verify link paths resolve

Phase 6: Optional Packaging

If targeting Claude custom skill upload:

./scripts/zip-a-skill.sh --skill <skill-name>
# or zip one category:
./scripts/zip-a-skill.sh --type component --output dist/skill-zips
# or use a curated starter preset:
./scripts/zip-a-skill.sh --preset core-pm --output dist/skill-zips

Examples

Example: Turn Workshop Notes into a Skill

Input: research/pricing-workshop-notes.md
Goal: new interactive advisor

./scripts/add-a-skill.sh research/pricing-workshop-notes.md
./scripts/test-a-skill.sh --skill <new-skill-name> --smoke
python3 scripts/check-skill-metadata.py skills/<new-skill-name>/SKILL.md

Expected result:

  • New skill folder exists
  • Skill passes structural and metadata checks
  • README catalog entry added/updated

Anti-Pattern Example

"We wrote a cool skill, skipped validation, forgot README counts, and shipped anyway."

Result:

  • Broken references
  • Inconsistent catalog numbers
  • Confusion for contributors and users

Common Pitfalls

  • Shipping vibes, not standards.
  • Choosing workflow when the task is really a component template.
  • Bloated descriptions that exceed upload limits.
  • Descriptions that say what the skill is but not when Claude should trigger it.
  • Descriptions that silently hit the 200-char limit and get cut off mid-thought.
  • Letting intent become a substitute for a weak trigger description.
  • Forgetting to update README counts after adding a skill.
  • Treating generated output as final without review.

References

  • README.md
  • AGENTS.md
  • CLAUDE.md
  • docs/Building PM Skills.md
  • docs/Add-a-Skill Utility Guide.md
  • Anthropic's Complete Guide to Building Skills for Claude
  • scripts/add-a-skill.sh
  • scripts/build-a-skill.sh
  • scripts/find-a-skill.sh
  • scripts/test-a-skill.sh
  • scripts/check-skill-metadata.py
  • scripts/check-skill-triggers.py
  • scripts/zip-a-skill.sh

Version History

  • 3998607 Current 2026-07-05 15:46

Same Skill Collection

skills/acquisition-channel-advisor/SKILL.md
skills/agent-orchestration-advisor/SKILL.md
skills/ai-shaped-readiness-advisor/SKILL.md
skills/altitude-horizon-framework/SKILL.md
skills/business-health-diagnostic/SKILL.md
skills/company-intel/SKILL.md
skills/company-research/SKILL.md
skills/context-engineering-advisor/SKILL.md
skills/customer-journey-map/SKILL.md
skills/customer-journey-mapping-workshop/SKILL.md
skills/derisk-measurement-advisor/SKILL.md
skills/director-readiness-advisor/SKILL.md
skills/discovery-interview-prep/SKILL.md
skills/discovery-process/SKILL.md
skills/eol-message/SKILL.md
skills/epic-breakdown-advisor/SKILL.md
skills/epic-hypothesis/SKILL.md
skills/executive-onboarding-playbook/SKILL.md
skills/feature-investment-advisor/SKILL.md
skills/finance-based-pricing-advisor/SKILL.md
skills/finance-metrics-quickref/SKILL.md
skills/jobs-to-be-done/SKILL.md
skills/lean-ux-canvas/SKILL.md
skills/opportunity-solution-tree/SKILL.md
skills/organic-growth-advisor/SKILL.md
skills/pestel-analysis/SKILL.md
skills/pm-skill-creator/SKILL.md
skills/pol-probe-advisor/SKILL.md
skills/pol-probe/SKILL.md
skills/positioning-statement/SKILL.md
skills/positioning-workshop/SKILL.md
skills/prd-development/SKILL.md
skills/press-release/SKILL.md
skills/prioritization-advisor/SKILL.md
skills/problem-framing-canvas/SKILL.md
skills/problem-statement/SKILL.md
skills/product-sense-interview-answer/SKILL.md
skills/product-strategy-session/SKILL.md
skills/proto-persona/SKILL.md
skills/recommendation-canvas/SKILL.md
skills/roadmap-planning/SKILL.md
skills/saas-economics-efficiency-metrics/SKILL.md
skills/saas-revenue-growth-metrics/SKILL.md
skills/stakeholder-engagement-advisor/SKILL.md
skills/stakeholder-identification/SKILL.md
skills/stakeholder-mapping/SKILL.md
skills/storyboard/SKILL.md
skills/tam-sam-som-calculator/SKILL.md
skills/user-story-mapping-workshop/SKILL.md
skills/user-story-mapping/SKILL.md
skills/user-story-splitting/SKILL.md
skills/user-story/SKILL.md
skills/vp-cpo-readiness-advisor/SKILL.md
skills/workshop-facilitation/SKILL.md

Metadata

Files
0
Version
3998607
Hash
4e83007c
Indexed
2026-07-05 15:46

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-14 06:58
浙ICP备14020137号-1 $Map of visitor$