merge remote changes

This commit is contained in:
mohitagw15856
2026-04-02 09:04:17 +01:00
3 changed files with 9 additions and 18 deletions
+5 -10
View File
@@ -22,18 +22,16 @@ Click **Fork** in the top right of the GitHub repo. This creates your own copy.
### Step 2: Clone your fork
```bash
git clone https://github.com/YOUR_USERNAME/pm-claude-skills.git
cd pm-claude-skills
```
### Step 3: Create your skill folder
Skills live in the `skills/` directory. Create a folder named after your skill using lowercase and hyphens:
```bash
mkdir skills/your-skill-name
```
**Naming rules:**
- Lowercase only
@@ -46,7 +44,6 @@ Every skill needs exactly one file: `SKILL.md` (uppercase, `.md` extension).
**Minimum required structure:**
```markdown
---
name: your-skill-name
description: "One sentence. Use when [trigger condition]. Produces [output description]."
@@ -55,7 +52,7 @@ description: "One sentence. Use when [trigger condition]. Produces [output descr
# Skill Title
[Your skill instructions here]
```
**The description field is the most important part.** It's what Claude reads (~100 tokens) to decide if your skill is relevant. Write it like this:
@@ -65,7 +62,6 @@ description: "One sentence. Use when [trigger condition]. Produces [output descr
**Full recommended structure for a quality skill:**
```markdown
---
name: your-skill-name
description: "..."
@@ -91,7 +87,7 @@ A checklist Claude runs before delivering output.
- "Example phrase that would activate this skill"
- "Another example"
```
### Step 5: Test your skill locally
@@ -105,11 +101,10 @@ Before submitting:
### Step 6: Commit and push
```bash
git add skills/your-skill-name/SKILL.md
git commit -m "feat: add [skill-name] skill for [profession/use case]"
git push origin main
```
### Step 7: Open a Pull Request
+1 -2
View File
@@ -40,10 +40,9 @@ Get your first PM Skill working in 5 minutes.
Start a new conversation and try:
```
Help me write a PRD for a mobile app feature
that lets users save articles for later reading
```
Claude should automatically use the PRD Template Skill and create a structured PRD.
+3 -6
View File
@@ -10,17 +10,15 @@ A community-built library of Claude Skills covering product management, marketin
In Claude Code, run:
```bash
/plugin marketplace add mohitagw15856/pm-claude-skills
```
Or clone and symlink for auto-updates:
```bash
git clone https://github.com/mohitagw15856/pm-claude-skills.git ~/pm-claude-skills
mkdir -p ~/.claude/skills
ln -s ~/pm-claude-skills/skills/* ~/.claude/skills/
```
That's it. All 53 skills are now available in every Claude Code session.
@@ -129,7 +127,6 @@ This is an open-source community library. If you've built a skill that saves you
4. Raise a pull request with a short description of what the skill does and why you built it
**SKILL.md template:**
```markdown
---
name: your-skill-name
description: "One sentence description. Use when [trigger condition]. Does [output description]."
@@ -138,7 +135,7 @@ description: "One sentence description. Use when [trigger condition]. Does [outp
# Skill Title
[Instructions for Claude to follow when this skill is invoked]
```
**What makes a good skill:**
- Solves a recurring professional workflow (not a one-off task)