Product Manager Walkthrough¶
This walkthrough guides you through building and sharing a reusable artifact collection for your product team. You'll create a PM collection, add or author PM-focused artifacts (PRD templates, user research prompts, story generators), bundle them for your team, and track usage across your organization.
Persona F: You're a Product Manager — Your team needs consistent templates for PRDs, research, and story writing. Instead of storing them in Docs or email, you want a versioned, searchable library that everyone on your team can use, update, and improve together.
Prerequisites¶
What you need
- SkillMeat installed — See Quickstart Guide
- Membership in a team or organization collection — You have read/write access to a shared collection (ask your admin to add you)
- Basic terminal comfort — A few CLI commands, but web UI is primary
- Team context — Know who your team members are (you'll add them to your bundle)
- (Optional) Existing PM templates — If you have PRD templates or research prompts in Docs, you can import them
Step 1: Set Up Your Team Collection¶
Via Web UI (Recommended)¶
- Open SkillMeat Web UI:
http://localhost:3000 - Click Collections in the left sidebar
- Click Create New Collection (or ask your admin if a team collection already exists)
- Fill in:
- Name:
team-pm-library(or your team's name) - Type: "Team Collection"
- Members: Add your team members' email addresses
- Click Create
Your team collection is now ready. Everyone you added can see and use artifacts in this collection.
Via CLI (Alternative)¶
# Create a new team collection
skillmeat init team-pm-library --team --members "alice@company.com,bob@company.com"
Verify it was created:
You should see:
Step 2: Add PM-Focused Artifacts to Your Collection¶
Now you'll populate the collection with artifacts your team needs. You have two options: search the marketplace for existing PM skills, or create your own.
Option A: Search Marketplace for PM Skills¶
The SkillMeat marketplace has curated PM-focused artifacts like PRD templates, research prompts, and story generators.
- Click Marketplace in the top navigation
- Search for PM skills:
- Search:
PRD template - Filter by Type: "Skill"
- Filter by Tag: "product-management"
- Review results. Look for highly-rated artifacts with recent activity
- Click an artifact you want to add (e.g., "PRD Template - Anthropic Style")
- Click Install to Collection and select
team-pm-library - SkillMeat will show a security summary. Review and confirm
Repeat for other artifacts: - Research & Discovery prompts - User Story generators - OKR tracking templates - Competitive analysis frameworks
# Search for PM artifacts
skillmeat marketplace-search --type skill --tag "product-management" --query "PRD"
# Install to your team collection
skillmeat add skill anthropics/pm-skills/prd-template \
--collection team-pm-library
# Add more artifacts
skillmeat add skill user/repo/research-prompts \
--collection team-pm-library
skillmeat add skill user/repo/story-generator \
--collection team-pm-library
List what you've added:
Option B: Create Your Own PM Templates¶
If you have PRD templates or research prompts in Documents, Google Docs, or Notion, you can import them as SkillMeat artifacts.
- Create a skill from your template:
- Create a new markdown file in your local
.claude/directory - Structure it as a SkillMeat skill (see Skill Authoring Guide)
-
Add metadata: title, description, usage instructions
-
Import into your collection:
-
Verify it was added:
Step 3: Create a Bundle for Team Distribution¶
Once you have artifacts, bundle them together so your team can install everything at once instead of adding skills one at a time.
Via Web UI¶
- Click Collection in the left sidebar
- Select your team collection (
team-pm-library) - Click Create Bundle button
- Fill in:
- Bundle Name: "PM Essentials" or "Q1 2026 PM Toolkit"
- Description: "Curated PRD templates, research prompts, and story generators for product team"
- Version: "1.0.0"
- Artifacts to include: Select checkboxes for all PM skills you added
- Click Create
Your bundle is now ready to share.
Via CLI¶
Create a bundle configuration file:
# Create bundle metadata
cat > ~/.skillmeat/collection/bundles/pm-essentials.toml << 'EOF'
[bundle]
name = "PM Essentials"
version = "1.0.0"
description = "Curated PRD templates, research prompts, and story generators for product team"
[[members]]
name = "prd-template"
type = "skill"
source = "team-pm-library/prd-template"
[[members]]
name = "research-prompts"
type = "skill"
source = "team-pm-library/research-prompts"
[[members]]
name = "story-generator"
type = "skill"
source = "team-pm-library/story-generator"
EOF
Build the bundle:
Verify:
For full bundle creation details, see Bundle & Composite Authoring.
Step 4: Publish Bundle to Team Marketplace¶
Once your bundle is ready, publish it so all team members can discover and install it easily.
Via Web UI¶
- Go to your bundle in the Collection view
- Click Publish to Team Marketplace
- Fill in publication details:
- Visibility: "Team" (only your team can see it)
- License: "MIT" or your organization's standard license
- Release Notes: "Initial bundle with PRD template, research prompts, story generator"
- Click Publish
The bundle is now in your team marketplace. Team members will see it when they search or browse.
Via CLI¶
skillmeat bundle publish pm-essentials \
--visibility team \
--license MIT \
--release-notes "Initial bundle with PRD template, research prompts, story generator"
Verify it was published:
Step 5: Share with Your Team¶
Now your team can discover and use your bundle.
Notify Your Team¶
Send a message to your team:
Hey team! I've created a "PM Essentials" bundle in our team marketplace with PRD templates, research prompts, and story generators. You can install it with:
Or browse in the Web UI: go to Marketplace → search "PM Essentials" → Install to Collection.
Team Members: Install the Bundle¶
Each team member can install your bundle:
After installation, they'll see all artifacts in the bundle ready to use in their Claude Code projects.
Step 6: Track Usage & Analytics¶
As a PM sharing templates with your team, you want to know: Is the bundle being used? Who's using which templates? Are people finding what they need?
Via Web UI¶
- Click Collections → select your team collection (
team-pm-library) - Click Analytics tab
- You'll see:
- Bundle Downloads: How many times "PM Essentials" was installed
- Artifact Usage: Which skills in the bundle are used most
- Team Activity: Who installed, when, and what they're using
- Feedback: Comments from team members on bundle quality
Governance Insights¶
The analytics view also shows:
- Version Adoption: Which version of the bundle is your team using? (Important if you release updates)
- Deprecation Tracking: If you retire an old template, see who's still using it
- Update Recommendations: "3 team members still using v1.0 of PRD Template. Consider upgrading to v1.1."
Via CLI (Optional)¶
# Get usage statistics
skillmeat bundle analytics pm-essentials --collection team-pm-library
# See who has installed the bundle
skillmeat bundle downloads pm-essentials
Step 7: Update & Version Your Bundle¶
Over time, you'll improve templates and add new artifacts. Update your bundle thoughtfully using semantic versioning.
When to Update¶
| Change Type | Version Bump | Example |
|---|---|---|
| Bug fixes, typo corrections | Patch (1.0.1) | Fix formatting in PRD template |
| New templates, improved prompts | Minor (1.1.0) | Add "Sprint Planning" template |
| Breaking changes, major restructure | Major (2.0.0) | Overhaul PRD format; retire old template |
How to Update¶
- Edit artifacts in your collection (update the template, improve the prompt, etc.)
- Bump bundle version in the bundle metadata (1.0.0 → 1.0.1)
-
Publish new version:
-
Notify your team about the update so they can upgrade if they want
Team members will see "Update available: v1.0.1" in the Web UI and can upgrade with one click.
Verification Checklist¶
Before declaring success, verify:
- [ ] Your team collection is created and visible to all members
- [ ] At least 3 PM artifacts (skills, templates, or prompts) are in the collection
- [ ] A bundle called "PM Essentials" (or similar) exists and lists all artifacts
- [ ] Bundle is published to team marketplace (visibility: "Team")
- [ ] You can search and find your bundle in marketplace
- [ ] A teammate can install the bundle from the marketplace
- [ ] After installation, teammate can see all artifacts in their collection
- [ ] Analytics show at least 1 download / 1 user
Success!
You've successfully created a governance-enabled artifact collection for your product team. Your templates are now version-controlled, discoverable, and shareable. As templates improve, updates flow to the team automatically.
Troubleshooting¶
"Collection already exists"¶
You already have a team collection with that name:
# List existing collections
skillmeat list --collections
# Use the existing collection instead
skillmeat add skill ... --collection existing-name
"Teammate can't see the bundle"¶
Check visibility:
"Analytics not showing usage"¶
Analytics data updates every 5 minutes. Wait a moment and refresh:
What Just Happened¶
You've successfully:
- ✅ Created a team-scoped artifact collection
- ✅ Added or authored PM-focused artifacts (templates, prompts, generators)
- ✅ Bundled artifacts for easy team distribution
- ✅ Published your bundle to the team marketplace
- ✅ Shared with teammates and tracked usage
Your team now has a centralized, versioned library of PM templates and tools — no more scattered Documents or email chains.
Next Steps¶
Now that you have your first PM bundle shared:
- Team Admin? See Team / Enterprise Admin Walkthrough for governance, approval workflows, and audit logging.
- Want to improve templates? See Bundle & Composite Authoring for advanced customization and versioning strategies.
- Ready to publish to the public marketplace? See Marketplace — Search, Install, Publish, Lifecycle for publisher submission and community sharing.
- Need to sync bundles with another team? See Collection Refresh & Rollback for staying in sync with upstream updates.
Quick Links¶
- Marketplace — Full Guide — Comprehensive marketplace search, publishing, and lifecycle
- Bundle & Composite Authoring — Create and customize bundles
- Collection Init & Configuration — Team and personal collection setup
- Web UI Guide — Master the visual interface
- CLI Reference — All available commands
Time to complete: ~20 minutes
Complexity: Intermediate
Prerequisites met: ✅
Key outcome: Reusable, versioned PM artifact bundle shared with your team