Create OpenSpec proposal to add profile.md template and framework structure under src/ directory. - Add src/ directory for distributable framework files - Create profile.md template with all required sections - Add CLAUDE.md instructions for Claude Code integration - Ensure framework can be copied and used independently 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
1.4 KiB
Markdown
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
|