You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update README to reflect multi-job feature and current repo state
Major updates to align README with recent multi-job support PR:
- Add multi-job batch processing to Overview and Key Features
- Update Files section to list all 13 markdown files including:
* multi-job-workflow.md
* MARKETPLACE.md, SUBMISSION_GUIDE.md
* docs/ directory with schemas, plans, and testing
- Expand Architecture section with both single-job and multi-job workflows
- Add Quick Start section for batch mode with time savings metrics
- Include 2 new usage examples demonstrating multi-job scenarios
- Update Testing section to reference multi-job test checklist
Fixes documentation sync issue after PR #1 merge.
Copy file name to clipboardExpand all lines: README.md
+128-8Lines changed: 128 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@
22
22
23
23
This Claude Code skill generates high-quality, tailored resumes optimized for specific job descriptions while maintaining factual integrity. It goes beyond simple keyword matching by:
24
24
25
+
-**Multi-Job Batch Processing:** Process 3-5 similar jobs efficiently with shared experience discovery (NEW!)
25
26
-**Deep Research:** Analyzes company culture, role requirements, and success profiles
26
27
-**Experience Discovery:** Surfaces undocumented experiences through conversational branching interviews
27
28
-**Smart Matching:** Uses confidence-scored content selection with transparent gap identification
@@ -89,6 +90,7 @@ Add your existing resumes in markdown format:
89
90
90
91
## Quick Start
91
92
93
+
### Single Job Application
92
94
**1. Invoke the skill in Claude Code:**
93
95
```
94
96
"I want to apply for [Role] at [Company]. Here's the JD: [paste job description]"
@@ -108,16 +110,61 @@ Add your existing resumes in markdown format:
108
110
- Full transparency on content matching
109
111
- Option to revise or approve at each stage
110
112
113
+
### Multiple Jobs (Batch Mode - NEW!)
114
+
**1. Provide multiple job descriptions:**
115
+
```
116
+
"I want to apply for these 3 roles:
117
+
1. [Company 1] - [Role]: [JD or URL]
118
+
2. [Company 2] - [Role]: [JD or URL]
119
+
3. [Company 3] - [Role]: [JD or URL]"
120
+
```
121
+
122
+
**2. The skill will:**
123
+
1. Detect multi-job intent and offer batch mode
124
+
2. Build library once (shared across all jobs)
125
+
3. Analyze gaps across ALL jobs (deduplicates common requirements)
126
+
4. Conduct single discovery session addressing all gaps
127
+
5. Process each job individually (research + tailoring)
128
+
6. Present all resumes for batch review
129
+
130
+
**3. Time savings:**
131
+
- Shared discovery session (ask once, not 3-5 times)
132
+
- 11-27% faster than processing jobs sequentially
133
+
- Same quality as single-job mode
134
+
111
135
## Files
112
136
113
-
-`SKILL.md` - Main skill implementation
137
+
### Core Implementation
138
+
-`SKILL.md` - Main skill implementation with single-job and multi-job workflows
0 commit comments