kerplunk-ai-prompts 0.1.32 → 0.1.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e44781ea30772be52c182d8d40880f7fde9f9b7c948ce0dcbe3a960f58b4181d
|
4
|
+
data.tar.gz: 930de18dcf8bf3841702222de285ab6c45548e0f8b24b44200366c47dac26990
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 988e8a35d9e1553fee26feba9d2b612f388c94207bcfdfd6014c579225aecc09464f6c7311e806f0bfb5cf6666837715f1b34bd7a3a9c7df0c70fbd6d8b8bb63
|
7
|
+
data.tar.gz: a95e8a275229e60d8a43ae06f80c8e5682cc394f28debb6fd77ed3c1956df6e707bc8578ff32544a51bd99472aae11e4fbd024e69d384ffac6524cad1cb89c35
|
@@ -11,14 +11,14 @@ module Kerplunk
|
|
11
11
|
# @param num_of_questions [Integer] the resume text to base the resume questions on
|
12
12
|
# @return [String] the generated prompt for resume questions
|
13
13
|
def self.generate_prompt(description, resume_text, num_of_questions)
|
14
|
-
raise ArgumentError,
|
15
|
-
raise ArgumentError,
|
16
|
-
raise ArgumentError,
|
14
|
+
raise ArgumentError, 'description is required' if description.nil? || description.empty?
|
15
|
+
raise ArgumentError, 'resume_text is required' if resume_text.nil? || resume_text.empty?
|
16
|
+
raise ArgumentError, 'num_of_questions is required' if num_of_questions.nil?
|
17
17
|
|
18
18
|
<<~PROMPT
|
19
19
|
Respond with a RAW JSON object only. Do not include any explanatory text outside the JSON.
|
20
20
|
|
21
|
-
You
|
21
|
+
You're an expert recruiter conducting a candidate interview to effectively evaluate them across multiple dimensions: personal skills, technical skills, role-specific competencies, soft skills, and any unique "x-factor" qualities. You are now reviewing the candidate's resume alongside the job description. Your goal is to identify specific, empathetic, and effective questions to ask during the interview. These questions should help clarify alignment with the role and uncover meaningful context behind the candidate's experience, including any notable transitions, gaps in employment, career shifts, or other resume details that may warrant a deeper understanding. All questions should remain non-biased, professional, and phrased with emotional intelligence, suitable for reuse in future prompts analyzing interview responses.
|
22
22
|
|
23
23
|
Please output the questions in a JSON array. Please make sure that there are exactly #{num_of_questions} questions that you'd ask the candidate.
|
24
24
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kerplunk-ai-prompts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Schutt
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A collection of AI prompt templates for use in Kerplunk
|
14
14
|
email:
|