usertold 1.11.1 → 1.11.2
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.
- package/package.json +1 -1
- package/usertold +4 -4
package/package.json
CHANGED
package/usertold
CHANGED
|
@@ -13122,7 +13122,7 @@ Each signal must include ALL of these fields:
|
|
|
13122
13122
|
- evidence_grade: self-assessment of evidence strength — one of ["direct","strong_circumstantial","weak"]. "direct" = explicit quote + matching behavior. "strong_circumstantial" = clear behavioral pattern without explicit statement. "weak" = single ambiguous cue.
|
|
13123
13123
|
- page_url: the page URL where this moment occurred. Look for the most recent [page] line before this moment in the transcript, or consult the Page Navigation History section. Set to null only if the session has no page/navigation data.
|
|
13124
13124
|
- page_title: the page title from the same source as page_url. Set to null only if unavailable.
|
|
13125
|
-
- preceding_actions: array of 2-5 user actions leading up to this moment, from [event] lines that occur before this moment. Set to null only if no
|
|
13125
|
+
- preceding_actions: array of 2-5 user actions leading up to this moment, from [event] and [page] lines that occur before this moment. Include clicks, navigation, focus changes — any user-initiated action. Set to null only if there are genuinely no [event] or [page] lines within 60 seconds before this moment.
|
|
13126
13126
|
- user_goal: what the user was trying to accomplish, inferred from the surrounding conversation and actions. Set to null only if genuinely unclear.
|
|
13127
13127
|
- outcome: what happened — did they succeed, fail, work around it, give up? Set to null only if genuinely unclear.
|
|
13128
13128
|
- context: what was happening — situational detail beyond the structured fields above.
|
|
@@ -13187,7 +13187,7 @@ When you see these audio cues near a participant quote, factor them into your co
|
|
|
13187
13187
|
const SIGNAL_REFINEMENT_PROMPT = `You are a user research quality filter applying Critical Incident Technique standards. You will receive an array of extracted signals from a single session and must return the indices of signals to KEEP.
|
|
13188
13188
|
|
|
13189
13189
|
Remove a signal if ANY of the following apply:
|
|
13190
|
-
- Insufficient evidence: the quote is
|
|
13190
|
+
- Insufficient evidence: the quote is a generic acknowledgment, navigational narration (reading a label or button name aloud), or filler utterance that does not express any stance, judgment, need, frustration, or decision. Behavioral context can compensate for a short quote only when the quote itself carries evaluative meaning (e.g., "Какой тупой вопрос?" is 3 words but expresses clear frustration and rejection — KEEP. "Pricing" or "All right." carry no evaluative content regardless of surrounding actions — REMOVE).
|
|
13191
13191
|
- Overclaimed: the analysis is stronger than what the quote and context actually support (e.g., context says "Paused 2 seconds" but analysis says "User was deeply frustrated")
|
|
13192
13192
|
- Too vague: the quote or analysis does not identify a specific behaviour, moment, or need (e.g. "seems fine", "looks good", generic agreement)
|
|
13193
13193
|
- Within-session duplicate: the same issue or outcome is captured by another signal with a clearer or higher-confidence quote — keep only the strongest representative
|
|
@@ -14734,7 +14734,7 @@ function printExtractHelp() {
|
|
|
14734
14734
|
console.log(EXTRACT_HELP);
|
|
14735
14735
|
}
|
|
14736
14736
|
|
|
14737
|
-
const CLI_VERSION$1 = '1.11.
|
|
14737
|
+
const CLI_VERSION$1 = '1.11.2';
|
|
14738
14738
|
const GLOBAL_FLAGS = [
|
|
14739
14739
|
'env',
|
|
14740
14740
|
'json',
|
|
@@ -15030,7 +15030,7 @@ function printCompletionsHelp() {
|
|
|
15030
15030
|
console.log(COMPLETIONS_HELP);
|
|
15031
15031
|
}
|
|
15032
15032
|
|
|
15033
|
-
const CLI_VERSION = '1.11.
|
|
15033
|
+
const CLI_VERSION = '1.11.2';
|
|
15034
15034
|
function detectJsonMode() {
|
|
15035
15035
|
const argv = process$2.argv.slice(2);
|
|
15036
15036
|
if (argv.includes('--json')) return true;
|