원클릭으로
faculty-publications
Ensure the library has collected all publications by faculty in a department - a collection completeness requirement
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Ensure the library has collected all publications by faculty in a department - a collection completeness requirement
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | faculty-publications |
| description | Ensure the library has collected all publications by faculty in a department - a collection completeness requirement |
Ensure the library owns all publications authored by faculty in a department. This is a collection requirement - the library must collect the scholarly output of its own faculty.
When asked to verify faculty publications for a department:
Get Faculty List
Search Each Faculty Member's Publications
search_openalex(query="[faculty name] [institution/department]")search_worldcat(query="[faculty name]")limit (start with 50, increase if needed)Create Master Table Immediately
Check Holdings for Each Item For each row:
set_row_status(rowIndex, "Checking holdings...")search_primo(field='isbn', query=isbn)search_primo(query=title, operator='exact')lookup_isbn(title=..., author=...) then check againset_row_status(rowIndex, "✓")Identify Gaps
Provide Acquisition Recommendations
User: "Check if we have everything published by our History department faculty"
1. Get faculty list (user provides or you search)
Faculty: Dr. Jane Smith, Dr. John Doe, Dr. Maria Garcia
2. Search each faculty member:
search_openalex(query="Jane Smith History University", limit=50)
search_openalex(query="John Doe History University", limit=50)
search_openalex(query="Maria Garcia History University", limit=50)
search_worldcat(query="Jane Smith") # for books
search_worldcat(query="John Doe")
search_worldcat(query="Maria Garcia")
3. Combine all results into one table (e.g., 87 publications total)
4. Check holdings for each:
Row 0: Smith, J. (2023). "Climate History..." → search_primo → "Owned"
Row 1: Smith, J. (2022). "Book Title" → search_primo → "NOT OWNED" ⚠
Row 2: Doe, J. (2024). "Article..." → search_primo → "Owned"
...
5. Summarize gaps:
"Found 87 publications. Library owns 71. MISSING 16 items:
- 8 books
- 5 journal articles (may have electronic access through databases)
- 3 book chapters"
6. Recommend acquisition:
Create filtered table of 16 missing items with ISBNs and acquisition details
This is a requirement, not optional:
Be thorough:
Focus on actionable gaps:
Can acquire:
Cannot acquire individually:
Verify before recommending:
Since this can involve many faculty and publications:
set_row_status to show progressProvide a clear acquisition list:
Your goal is to ensure complete collection coverage of faculty scholarly output and identify specific gaps for acquisition.