소스 정보
- 저장소
- reggiechan74/JobOps
- 최근 소스 활동
- 2026년 5월 28일 13:24
- 감지된 SKILL.md 언어
- 영어
- 스타
- 23
- 포크
- 4
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/reggiechan74/JobOps --skill github-portfolio명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Build a complete resume through all 3 steps (draft, provenance check, final)
Initialize JobOps workspace - configure output directories, install templates, and optionally migrate legacy files
Assess candidate against job posting using pre-created scoring rubric
| name | github-portfolio |
| description | Create or update GitHub portfolio documentation from repository analysis |
| disable-model-invocation | true |
Read .jobops/config.json. If missing, stop with:
JOBOPS NOT CONFIGURED Run /jobops:setup to initialize your workspace.
Use config.directories.<key> for all file paths in this skill.
Use config.preferences.cultural_profile if this skill generates resume-style content.
Use config.preferences.default_jurisdiction if this skill has jurisdiction-sensitive logic (crisis/legal skills accept --jurisdiction=<ISO-3166-2> to override).
Creates or updates a GitHub portfolio document.
Output file: {config.directories.career_analysis}/github_portfolio_{YYYYMMDD}.md — a fresh timestamped snapshot is written on every run (create, add, or refresh).
Usage forms:
/github-portfolio <repository-url> — create if no prior snapshot exists, otherwise add the repo to the latest snapshot./github-portfolio <repository-url> -create — force a brand-new snapshot (first repository)./github-portfolio <repository-url> -update — add the repository to the latest existing snapshot./github-portfolio -update — full portfolio refresh/reorganization of the latest snapshot (no URL needed).Arguments:
$1: Repository URL (required for adding repositories) OR the -update flag for refresh-only mode.$2: Mode flag (optional, defaults to auto-detect):
-create: Force create a new portfolio snapshot.-update: Force update of the latest portfolio snapshot.Repository URL: $1 Mode Flag: ${2:-auto}
Checking arguments:
$1 is -update and no $2: Refresh Mode (reorganize existing portfolio)$1 is a URL: Repository Addition Mode (create or update)
$2 flagChecking whether a prior portfolio snapshot already exists in {config.directories.career_analysis}/ (any file matching github_portfolio_*.md). When more than one exists, use the most recent by date suffix as the working snapshot for add/refresh operations.
Result: [Snapshot exists/does not exist]
Based on arguments and portfolio existence:
Purpose: Create initial github_portfolio_{YYYYMMDD}.md snapshot with first repository.
Repository URL Provided: $1
I'll try to access the repository directly to read its README and structure.
Attempting to fetch: $1
Access Methods:
[If WebFetch succeeds]:
[If WebFetch fails with 403/private/inaccessible]:
The repository is not publicly accessible or I cannot reach it directly.
No problem! Please run this analysis script in the repository's codespace/terminal and paste the complete results back to me:
#!/bin/bash
echo "=== REPOSITORY ANALYSIS FOR PORTFOLIO DOCUMENTATION ==="
echo ""
echo "## Basic Repository Information"
echo "Repository: $(basename $(git rev-parse --show-toplevel 2>/dev/null || pwd))"
echo "Current Branch: $(git branch --show-current 2>/dev/null || echo 'N/A')"
echo "Total Commits: $(git rev-list --count HEAD 2>/dev/null || echo 'N/A')"
echo "Last Commit: $(git log -1 --format='%h - %s (%ar)' 2>/dev/null || echo 'N/A')"
echo ""
echo "## File Structure"
echo "Total Files: $(find . -type f -not -path '*/\.*' | wc -l)"
echo ""
echo "Directory Tree (top 3 levels):"
tree -L 3 -I 'node_modules|.git|__pycache__|*.pyc' 2>/dev/null || find . -type d -not -path '*/\.*' -maxdepth 3 | sort
echo ""
echo "## README Content"
if [ -f README.md ]; then
echo "--- START README.md ---"
cat README.md
echo "--- END README.md ---"
else
echo "No README.md found"
[ -f package.json ];
package.json
[ -f requirements.txt ];
requirements.txt
[ -f pyproject.toml ];
pyproject.toml
file $(find . \( -name -o -name -o -name \) | grep -v | grep -v | -5);
-50
git --oneline -10 2>/dev/null ||
git shortlog -sn --no-merges | -5 2>/dev/null ||
Instructions:
Once you provide the analysis, I'll create your initial portfolio entry.
Purpose: Add new repository to the latest snapshot and write a new timestamped snapshot.
Repository URL Provided: $1
Read the most recent {config.directories.career_analysis}/github_portfolio_*.md file.
Current Portfolio Status:
Attempting to fetch: $1
Access Methods:
[If WebFetch succeeds]:
The repository is not publicly accessible.
Please run this analysis script in the repository's codespace and paste the results:
#!/bin/bash
echo "=== REPOSITORY ANALYSIS FOR PORTFOLIO DOCUMENTATION ==="
echo ""
echo "## Basic Repository Information"
echo "Repository: $(basename $(git rev-parse --show-toplevel 2>/dev/null || pwd))"
echo "Current Branch: $(git branch --show-current 2>/dev/null || echo 'N/A')"
echo "Total Commits: $(git rev-list --count HEAD 2>/dev/null || echo 'N/A')"
echo "Last Commit: $(git log -1 --format='%h - %s (%ar)' 2>/dev/null || echo 'N/A')"
echo ""
echo "## File Structure"
echo "Total Files: $(find . -type f -not -path '*/\.*' | wc -l)"
echo ""
echo "Directory Tree (top 3 levels):"
tree -L 3 -I 'node_modules|.git|__pycache__|*.pyc' 2>/dev/null || find . -type d -not -path '*/\.*' -maxdepth 3 | sort
echo ""
echo "## README Content"
if [ -f README.md ]; then
echo "--- START README.md ---"
cat README.md
echo "--- END README.md ---"
else
echo "No README.md found"
[ -f package.json ];
package.json
[ -f requirements.txt ];
requirements.txt
[ -f pyproject.toml ];
pyproject.toml
file $(find . \( -name -o -name -o -name \) | grep -v | grep -v | -5);
-50
git --oneline -10 2>/dev/null ||
git shortlog -sn --no-merges | -5 2>/dev/null ||
After receiving analysis:
Purpose: Full portfolio reorganization and content refresh without adding new repositories.
Triggered When: User runs /github-portfolio -update with no URL
Read the most recent {config.directories.career_analysis}/github_portfolio_*.md file as the working snapshot.
Current Portfolio Status:
Repository Entries Consistency:
Capability Matrices Accuracy:
Positioning and Messaging:
Table of Contents:
Version and Date:
Quality Checks:
After refresh, provide summary of:
When adding a new repository, use this comprehensive structure:
### N. [repository-name](https://github.com/username/repo-name)
**Status**: Production (vX.Y.Z) | **License**: [License] | **Commits**: N
One-paragraph description highlighting core purpose and key technologies.
**Technical Architecture**:
- **Key Component 1**: Description with metrics
- **Key Component 2**: Description with metrics
- **Key Component 3**: Description with metrics
- **Key Component 4**: Description with metrics
- **Key Component 5**: Description with metrics
**Technical Sophistication**:
- **Scale Metric**: Total files, lines of code, complexity indicators
- **Advanced Pattern 1**: Specific implementation details
- **Advanced Pattern 2**: Specific implementation details
- **Advanced Pattern 3**: Specific implementation details
- **Advanced Pattern 4**: Specific implementation details
**Skills Demonstrated**:
- **Skill 1** (proficiency level: specific evidence)
- **Skill 2** (proficiency level: specific evidence)
- **Skill 3** (proficiency level: specific evidence)
- **Skill 4** (proficiency level: specific evidence)
- **Skill 5** (proficiency level: specific evidence)
- **Skill 6** (proficiency level: specific evidence)
**Business Impact**:
Quantified improvement 1
Quantified improvement 2
Quantified improvement 3
Use case or application context
:
How this was built, key learning journey, relationship to other repositories, development philosophy demonstrated.
(if applicable):
Specific industry domain, technical specialty, or problem space this addresses.
:
: One-paragraph description of the unique approach, pattern, or solution this repository demonstrates. What makes this different or notable.
:
: List of components/features
: List of components/features
When updating portfolio, ensure these capability matrices remain comprehensive and accurate:
Matrix Format:
| Capability | Proficiency | Evidence | Development Method |
|---|---|---|---|
| **Capability Name** | Proficiency description | Specific evidence from repositories | How acquired/developed |
Always maintain these core positioning principles:
File Location: {config.directories.career_analysis}/github_portfolio_{YYYYMMDD}.md (new timestamped snapshot per run)
YAML Front Matter:
---
title: GitHub Repositories & Derived Technical Capabilities
person: Reggie Chan
lastUpdated: YYYY-MM-DD (today's date)
category: Technology Portfolio
keywords: AI-assisted-development, Python, machine-learning, financial-systems, Claude-Code
shareable: true
profileType: technical-portfolio
---
Version Tracking:
lastUpdated field to today's datePortfolio Version at end of document (format: X.Y)
Quality Checks:
Let me proceed with the selected mode.