Files
Bewerbungszauberer/openspec/changes/archive/2025-11-03-add-profile-template/proposal.md
T
gurixandClaude 84a229c255 chore: archive completed OpenSpec changes
Archive all completed changes and create final specifications:

Archived changes (2025-11-03):
- add-application-email (8 requirements)
- add-application-management (9 requirements)
- add-application-validation (9 requirements)
- add-cover-letter-generation (13 requirements)
- add-cover-letter-pdf-conversion (7 requirements)
- add-profile-template (4 requirements)
- add-profile-validation (3 requirements)

Created specifications:
- applicant-profile: User profile management with validation
- application-email: Email generation for job applications
- application-management: Application workflow and folder structure
- application-validation: Application completeness checking
- cover-letter-generation: Tailored cover letter creation
- cover-letter-pdf-conversion: PDF export with Swiss formatting

All features are now fully documented in openspec/specs/ and ready for use.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 20:38:51 +01:00

26 lines
1.4 KiB
Markdown

# Add Applicant Profile Template
## Why
The job application workflow requires applicant information (personal details, experience, skills, education) to generate CVs, cover letters, and emails. Currently, there's no structured way to store and access this information, forcing Claude Code to ask repeatedly or requiring manual input each time.
## What Changes
- Create `src/` directory to hold the distributable framework files (separate from this development project)
- Add `src/profile.md` template file for storing applicant's personal and professional information
- Create `src/CLAUDE.md` with instructions for Claude Code to read `profile.md` when helping with job applications
- Define a structured markdown format for the profile that covers all necessary sections (personal info, experience, education, skills, projects)
## Impact
- **Affected specs**: Creates new capability `applicant-profile`
- **Affected code**:
- New directory: `src/` (contains the distributable framework)
- New file: `src/profile.md` (template for users to fill out)
- New file: `src/CLAUDE.md` (framework instructions for Claude Code)
- **User benefit**:
- Clear separation between framework development and framework usage
- Users can copy `src/` folder to any location to start using the framework
- One-time profile setup, reusable for all applications
- **No breaking changes**: This is the first foundational piece of the framework