Prompt Categorisation & Saving
Automatically identifies prompt types, saves them to the appropriate category, and updates the index — a professional, structured capability.
When to Use
- The user says "save this prompt", "make a note of this", "store this one"
- The user pastes a prompt and says "help me organise this"
Core Features
- Automatic type identification: 5 main categories (Technical Development / Content Creation / Teaching Design / Product Consulting / General Tools)
- Extract key information: Purpose, source, applicable scenarios, key characteristics
- Auto-save:
[category]/prompt-[sequence]-[title].md
- Update index: Add an entry to
INDEX.md
5 Category Rules
| Category | Keywords | Example |
param($m)
$inner = $m.Groups[1].Value
# Split by | and fix each cell separator
$cells = $inner -split '\|'
$fixedCells = $cells | ForEach-Object {
$cell = ---
name: huashu-prompt-save
description: Automatically identifies the prompt type and saves it to the appropriate category (Technical / Content / Teaching / Product / General). Use when the user mentions "save prompt", "record prompt", or "organise prompts".
Prompt Categorisation & Saving
Automatically identifies prompt types, saves them to the appropriate category, and updates the index — a professional, structured capability.
When to Use
- The user says "save this prompt", "make a note of this", "store this one"
- The user pastes a prompt and says "help me organise this"
Core Features
- Automatic type identification: 5 main categories (Technical Development / Content Creation / Teaching Design / Product Consulting / General Tools)
- Extract key information: Purpose, source, applicable scenarios, key characteristics
- Auto-save:
[category]/prompt-[sequence]-[title].md
- Update index: Add an entry to
INDEX.md
5 Category Rules
| Category |
Keywords |
Example |
| Technical Development |
programming, debugging, code, optimisation |
"Python Code Optimiser Prompt" |
| Content Creation |
writing, copywriting, script, creative |
"WeChat Article Generator" |
| Teaching Design |
curriculum, teaching, explanation, training |
"Knowledge Breakdown Prompt" |
| Product Consulting |
requirements, product, users, growth |
"User Needs Analysis Prompt" |
| General Tools |
general, productivity, assistant |
"Universal Translation Tool" |
Save Format
# [One-line title]
**Source**: Self-created / From the web / Adapted from xxx
**Tags**: #tag1 #tag2 #tag3
**Applicable Scenarios**: xxx
## Prompt Content
[Full prompt, preserving original format]
## Usage Examples
[If there are examples or usage notes]
## Results / Notes
[Usage outcomes, caveats]
Execution Workflow
- Identify type: Classify based on keywords and content
- Extract information: Purpose, source, tags, applicable scenarios
- Generate filename:
prompt-[auto-increment sequence]-[short-title].md
- Save file: To
/Prompt-Library/[category]/ directory
- Update index: Add an entry to
/Prompt-Library/INDEX.md
Notes
- If the category is unclear, ask the user for clarification
- Titles should be practical and immediately understandable (no more than 15 characters)
- Tags are for quick retrieval — 3–5 tags is ideal
- Preserve the original format and structure of the prompt
- For prompts sourced from the web, record the origin where possible
Reference Resources
/Prompt-Library/CLAUDE.md — Prompt management rules
Last Updated: 2025-11-07
By Huashu | AI Native Coder · Independent Developer
WeChat Official Account "Huashu" | 300k+ followers | AI Tools & Productivity
Flagship products: Kitty Catchlight (AppStore Paid Rankings Top 1) · Play DeepSeek with One Book
.Trim()
if ($cell -match '^:?-+:?
| Technical Development | programming, debugging, code, optimisation | "Python Code Optimiser Prompt" |
| Content Creation | writing, copywriting, script, creative | "WeChat Article Generator" |
| Teaching Design | curriculum, teaching, explanation, training | "Knowledge Breakdown Prompt" |
| Product Consulting | requirements, product, users, growth | "User Needs Analysis Prompt" |
| General Tools | general, productivity, assistant | "Universal Translation Tool" |
Save Format
# [One-line title]
**Source**: Self-created / From the web / Adapted from xxx
**Tags**: #tag1 #tag2 #tag3
**Applicable Scenarios**: xxx
## Prompt Content
[Full prompt, preserving original format]
## Usage Examples
[If there are examples or usage notes]
## Results / Notes
[Usage outcomes, caveats]
Execution Workflow
- Identify type: Classify based on keywords and content
- Extract information: Purpose, source, tags, applicable scenarios
- Generate filename:
prompt-[auto-increment sequence]-[short-title].md
- Save file: To
/Prompt-Library/[category]/ directory
- Update index: Add an entry to
/Prompt-Library/INDEX.md
Notes
- If the category is unclear, ask the user for clarification
- Titles should be practical and immediately understandable (no more than 15 characters)
- Tags are for quick retrieval — 3–5 tags is ideal
- Preserve the original format and structure of the prompt
- For prompts sourced from the web, record the origin where possible
Reference Resources
/Prompt-Library/CLAUDE.md — Prompt management rules
Last Updated: 2025-11-07
By Huashu | AI Native Coder · Independent Developer
WeChat Official Account "Huashu" | 300k+ followers | AI Tools & Productivity
Flagship products: Kitty Catchlight (AppStore Paid Rankings Top 1) · Play DeepSeek with One Book
) {
" $cell "
} else {
" $cell "
}
}
'|' + ($fixedCells -join '|') + '|'
| Technical Development | programming, debugging, code, optimisation | "Python Code Optimiser Prompt" |
| Content Creation | writing, copywriting, script, creative | "WeChat Article Generator" |
| Teaching Design | curriculum, teaching, explanation, training | "Knowledge Breakdown Prompt" |
| Product Consulting | requirements, product, users, growth | "User Needs Analysis Prompt" |
| General Tools | general, productivity, assistant | "Universal Translation Tool" |
Save Format
# [One-line title]
**Source**: Self-created / From the web / Adapted from xxx
**Tags**: #tag1 #tag2 #tag3
**Applicable Scenarios**: xxx
## Prompt Content
[Full prompt, preserving original format]
## Usage Examples
[If there are examples or usage notes]
## Results / Notes
[Usage outcomes, caveats]
Execution Workflow
- Identify type: Classify based on keywords and content
- Extract information: Purpose, source, tags, applicable scenarios
- Generate filename:
prompt-[auto-increment sequence]-[short-title].md
- Save file: To
/Prompt-Library/[category]/ directory
- Update index: Add an entry to
/Prompt-Library/INDEX.md
Notes
- If the category is unclear, ask the user for clarification
- Titles should be practical and immediately understandable (no more than 15 characters)
- Tags are for quick retrieval — 3–5 tags is ideal
- Preserve the original format and structure of the prompt
- For prompts sourced from the web, record the origin where possible
Reference Resources
/Prompt-Library/CLAUDE.md — Prompt management rules
Last Updated: 2025-11-07
By Huashu | AI Native Coder · Independent Developer
WeChat Official Account "Huashu" | 300k+ followers | AI Tools & Productivity
Flagship products: Kitty Catchlight (AppStore Paid Rankings Top 1) · Play DeepSeek with One Book
1---2name: huashu-prompt-save3description: Automatically identifies the prompt type and saves it to the appropriate category (Technical / Content / Teaching / Product / General). Use when the user mentions "save prompt", "record prompt", or "organise prompts".4---56# Prompt Categorisation & Saving78Automatically identifies prompt types, saves them to the appropriate category, and updates the index — a professional, structured capability.910## When to Use1112- The user says "save this prompt", "make a note of this", "store this one"13- The user pastes a prompt and says "help me organise this"1415## Core Features16171. **Automatic type identification**: 5 main categories (Technical Development / Content Creation / Teaching Design / Product Consulting / General Tools)182. **Extract key information**: Purpose, source, applicable scenarios, key characteristics193. **Auto-save**: `[category]/prompt-[sequence]-[title].md`204. **Update index**: Add an entry to `INDEX.md`2122## 5 Category Rules2324| Category | Keywords | Example |2526 param($m)27 $inner = $m.Groups[1].Value28 # Split by | and fix each cell separator29 $cells = $inner -split '\|'30 $fixedCells = $cells | ForEach-Object {31 $cell = ---32name: huashu-prompt-save33description: Automatically identifies the prompt type and saves it to the appropriate category (Technical / Content / Teaching / Product / General). Use when the user mentions "save prompt", "record prompt", or "organise prompts".34---3536# Prompt Categorisation & Saving3738Automatically identifies prompt types, saves them to the appropriate category, and updates the index — a professional, structured capability.3940## When to Use4142- The user says "save this prompt", "make a note of this", "store this one"43- The user pastes a prompt and says "help me organise this"4445## Core Features46471. **Automatic type identification**: 5 main categories (Technical Development / Content Creation / Teaching Design / Product Consulting / General Tools)482. **Extract key information**: Purpose, source, applicable scenarios, key characteristics493. **Auto-save**: `[category]/prompt-[sequence]-[title].md`504. **Update index**: Add an entry to `INDEX.md`5152## 5 Category Rules5354| Category | Keywords | Example |55|----------|----------|---------|56| Technical Development | programming, debugging, code, optimisation | "Python Code Optimiser Prompt" |57| Content Creation | writing, copywriting, script, creative | "WeChat Article Generator" |58| Teaching Design | curriculum, teaching, explanation, training | "Knowledge Breakdown Prompt" |59| Product Consulting | requirements, product, users, growth | "User Needs Analysis Prompt" |60| General Tools | general, productivity, assistant | "Universal Translation Tool" |6162## Save Format6364```markdown65# [One-line title]6667**Source**: Self-created / From the web / Adapted from xxx68**Tags**: #tag1 #tag2 #tag369**Applicable Scenarios**: xxx7071## Prompt Content72[Full prompt, preserving original format]7374## Usage Examples75[If there are examples or usage notes]7677## Results / Notes78[Usage outcomes, caveats]79```8081## Execution Workflow82831. **Identify type**: Classify based on keywords and content842. **Extract information**: Purpose, source, tags, applicable scenarios853. **Generate filename**: `prompt-[auto-increment sequence]-[short-title].md`864. **Save file**: To `/Prompt-Library/[category]/` directory875. **Update index**: Add an entry to `/Prompt-Library/INDEX.md`8889## Notes9091- If the category is unclear, ask the user for clarification92- Titles should be practical and immediately understandable (no more than 15 characters)93- Tags are for quick retrieval — 3–5 tags is ideal94- Preserve the original format and structure of the prompt95- For prompts sourced from the web, record the origin where possible9697## Reference Resources9899- `/Prompt-Library/CLAUDE.md` — Prompt management rules100101**Last Updated**: 2025-11-07102103---104105> **By Huashu** | AI Native Coder · Independent Developer106> WeChat Official Account "Huashu" | 300k+ followers | AI Tools & Productivity107> Flagship products: Kitty Catchlight (AppStore Paid Rankings Top 1) · *Play DeepSeek with One Book*108.Trim()109 if ($cell -match '^:?-+:?110| Technical Development | programming, debugging, code, optimisation | "Python Code Optimiser Prompt" |111| Content Creation | writing, copywriting, script, creative | "WeChat Article Generator" |112| Teaching Design | curriculum, teaching, explanation, training | "Knowledge Breakdown Prompt" |113| Product Consulting | requirements, product, users, growth | "User Needs Analysis Prompt" |114| General Tools | general, productivity, assistant | "Universal Translation Tool" |115116## Save Format117118```markdown119# [One-line title]120121**Source**: Self-created / From the web / Adapted from xxx122**Tags**: #tag1 #tag2 #tag3123**Applicable Scenarios**: xxx124125## Prompt Content126[Full prompt, preserving original format]127128## Usage Examples129[If there are examples or usage notes]130131## Results / Notes132[Usage outcomes, caveats]133```134135## Execution Workflow1361371. **Identify type**: Classify based on keywords and content1382. **Extract information**: Purpose, source, tags, applicable scenarios1393. **Generate filename**: `prompt-[auto-increment sequence]-[short-title].md`1404. **Save file**: To `/Prompt-Library/[category]/` directory1415. **Update index**: Add an entry to `/Prompt-Library/INDEX.md`142143## Notes144145- If the category is unclear, ask the user for clarification146- Titles should be practical and immediately understandable (no more than 15 characters)147- Tags are for quick retrieval — 3–5 tags is ideal148- Preserve the original format and structure of the prompt149- For prompts sourced from the web, record the origin where possible150151## Reference Resources152153- `/Prompt-Library/CLAUDE.md` — Prompt management rules154155**Last Updated**: 2025-11-07156157---158159> **By Huashu** | AI Native Coder · Independent Developer160> WeChat Official Account "Huashu" | 300k+ followers | AI Tools & Productivity161> Flagship products: Kitty Catchlight (AppStore Paid Rankings Top 1) · *Play DeepSeek with One Book*162) {163 " $cell "164 } else {165 " $cell "166 }167 }168 '|' + ($fixedCells -join '|') + '|'169 170| Technical Development | programming, debugging, code, optimisation | "Python Code Optimiser Prompt" |171| Content Creation | writing, copywriting, script, creative | "WeChat Article Generator" |172| Teaching Design | curriculum, teaching, explanation, training | "Knowledge Breakdown Prompt" |173| Product Consulting | requirements, product, users, growth | "User Needs Analysis Prompt" |174| General Tools | general, productivity, assistant | "Universal Translation Tool" |175176## Save Format177178```markdown179# [One-line title]180181**Source**: Self-created / From the web / Adapted from xxx182**Tags**: #tag1 #tag2 #tag3183**Applicable Scenarios**: xxx184185## Prompt Content186[Full prompt, preserving original format]187188## Usage Examples189[If there are examples or usage notes]190191## Results / Notes192[Usage outcomes, caveats]193```194195## Execution Workflow1961971. **Identify type**: Classify based on keywords and content1982. **Extract information**: Purpose, source, tags, applicable scenarios1993. **Generate filename**: `prompt-[auto-increment sequence]-[short-title].md`2004. **Save file**: To `/Prompt-Library/[category]/` directory2015. **Update index**: Add an entry to `/Prompt-Library/INDEX.md`202203## Notes204205- If the category is unclear, ask the user for clarification206- Titles should be practical and immediately understandable (no more than 15 characters)207- Tags are for quick retrieval — 3–5 tags is ideal208- Preserve the original format and structure of the prompt209- For prompts sourced from the web, record the origin where possible210211## Reference Resources212213- `/Prompt-Library/CLAUDE.md` — Prompt management rules214215**Last Updated**: 2025-11-07216217---218219> **By Huashu** | AI Native Coder · Independent Developer220> WeChat Official Account "Huashu" | 300k+ followers | AI Tools & Productivity221> Flagship products: Kitty Catchlight (AppStore Paid Rankings Top 1) · *Play DeepSeek with One Book*