slopless 0.1.0
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/README.md +64 -0
- package/dist/families/metrics/avg-sentence-length.js +22 -0
- package/dist/families/metrics/avg-sentence-length.js.map +1 -0
- package/dist/families/metrics/coleman-liau.js +27 -0
- package/dist/families/metrics/coleman-liau.js.map +1 -0
- package/dist/families/metrics/flesch-kincaid.js +27 -0
- package/dist/families/metrics/flesch-kincaid.js.map +1 -0
- package/dist/families/metrics/gunning-fog.js +27 -0
- package/dist/families/metrics/gunning-fog.js.map +1 -0
- package/dist/families/metrics/paragraph-length.js +21 -0
- package/dist/families/metrics/paragraph-length.js.map +1 -0
- package/dist/families/metrics/word-repetition.js +46 -0
- package/dist/families/metrics/word-repetition.js.map +1 -0
- package/dist/families/orthography/colon-dramatic.js +117 -0
- package/dist/families/orthography/colon-dramatic.js.map +1 -0
- package/dist/families/orthography/em-dashes.js +41 -0
- package/dist/families/orthography/em-dashes.js.map +1 -0
- package/dist/families/orthography/exclamation-density.js +51 -0
- package/dist/families/orthography/exclamation-density.js.map +1 -0
- package/dist/families/orthography/fake-timestamps.js +103 -0
- package/dist/families/orthography/fake-timestamps.js.map +1 -0
- package/dist/families/orthography/sentence-case.js +66 -0
- package/dist/families/orthography/sentence-case.js.map +1 -0
- package/dist/families/orthography/smart-quotes.js +53 -0
- package/dist/families/orthography/smart-quotes.js.map +1 -0
- package/dist/families/phrases/cliches.js +17 -0
- package/dist/families/phrases/cliches.js.map +1 -0
- package/dist/families/phrases/corporate-speak.js +23 -0
- package/dist/families/phrases/corporate-speak.js.map +1 -0
- package/dist/families/phrases/data/cliches.json +699 -0
- package/dist/families/phrases/data/corporate-speak.json +27 -0
- package/dist/families/phrases/data/prohibited-phrases.json +8 -0
- package/dist/families/phrases/data/skunked-terms.json +10 -0
- package/dist/families/phrases/data/uncomparables.json +57 -0
- package/dist/families/phrases/humble-bragger.js +26 -0
- package/dist/families/phrases/humble-bragger.js.map +1 -0
- package/dist/families/phrases/jargon-faker.js +84 -0
- package/dist/families/phrases/jargon-faker.js.map +1 -0
- package/dist/families/phrases/llm-disclaimer.js +54 -0
- package/dist/families/phrases/llm-disclaimer.js.map +1 -0
- package/dist/families/phrases/prohibited-phrases.js +17 -0
- package/dist/families/phrases/prohibited-phrases.js.map +1 -0
- package/dist/families/phrases/skunked-terms.js +23 -0
- package/dist/families/phrases/skunked-terms.js.map +1 -0
- package/dist/families/phrases/uncomparables.js +78 -0
- package/dist/families/phrases/uncomparables.js.map +1 -0
- package/dist/families/semantic-thinness/patterns/abstract-contrast.json +85 -0
- package/dist/families/semantic-thinness/patterns/abstract-metaphor-claim.json +112 -0
- package/dist/families/semantic-thinness/patterns/body-emotion-shorthand.json +77 -0
- package/dist/families/semantic-thinness/patterns/body-knows.json +80 -0
- package/dist/families/semantic-thinness/patterns/deictic-summary.json +109 -0
- package/dist/families/semantic-thinness/patterns/empty-atmosphere-shift.json +70 -0
- package/dist/families/semantic-thinness/patterns/empty-emotional-weather.json +104 -0
- package/dist/families/semantic-thinness/patterns/empty-scene-state.json +117 -0
- package/dist/families/semantic-thinness/patterns/empty-scene-transition.json +98 -0
- package/dist/families/semantic-thinness/patterns/gaze-choreography.json +87 -0
- package/dist/families/semantic-thinness/patterns/generic-lesson-extraction.json +82 -0
- package/dist/families/semantic-thinness/patterns/generic-pressure-or-stakes.json +107 -0
- package/dist/families/semantic-thinness/patterns/generic-realization.json +113 -0
- package/dist/families/semantic-thinness/patterns/hollow-significance.json +103 -0
- package/dist/families/semantic-thinness/patterns/low-information-physical-blocking.json +113 -0
- package/dist/families/semantic-thinness/patterns/point-is-frame.json +81 -0
- package/dist/families/semantic-thinness/patterns/real-work-begins.json +66 -0
- package/dist/families/semantic-thinness/patterns/silence-as-actor.json +69 -0
- package/dist/families/semantic-thinness/patterns/something-shifted.json +73 -0
- package/dist/families/semantic-thinness/patterns/truth-answer-moves.json +75 -0
- package/dist/families/semantic-thinness/patterns/vague-connective-payoff.json +90 -0
- package/dist/families/semantic-thinness/patterns/vague-threshold-change.json +98 -0
- package/dist/families/semantic-thinness/private/pattern-data-a.js +15 -0
- package/dist/families/semantic-thinness/private/pattern-data-a.js.map +1 -0
- package/dist/families/semantic-thinness/private/pattern-data-b.js +15 -0
- package/dist/families/semantic-thinness/private/pattern-data-b.js.map +1 -0
- package/dist/families/semantic-thinness/private/pattern-data-c.js +9 -0
- package/dist/families/semantic-thinness/private/pattern-data-c.js.map +1 -0
- package/dist/families/semantic-thinness/private/pattern-data-d.js +17 -0
- package/dist/families/semantic-thinness/private/pattern-data-d.js.map +1 -0
- package/dist/families/semantic-thinness/private/pattern-data.js +11 -0
- package/dist/families/semantic-thinness/private/pattern-data.js.map +1 -0
- package/dist/families/semantic-thinness/private/pattern-matcher.js +172 -0
- package/dist/families/semantic-thinness/private/pattern-matcher.js.map +1 -0
- package/dist/families/semantic-thinness/semantic-thinness.js +25 -0
- package/dist/families/semantic-thinness/semantic-thinness.js.map +1 -0
- package/dist/families/syntactic-patterns/authority/authority-padding.js +81 -0
- package/dist/families/syntactic-patterns/authority/authority-padding.js.map +1 -0
- package/dist/families/syntactic-patterns/closers/affirmation-closers.js +48 -0
- package/dist/families/syntactic-patterns/closers/affirmation-closers.js.map +1 -0
- package/dist/families/syntactic-patterns/closers/boilerplate-conclusion.js +131 -0
- package/dist/families/syntactic-patterns/closers/boilerplate-conclusion.js.map +1 -0
- package/dist/families/syntactic-patterns/closers/false-question.js +30 -0
- package/dist/families/syntactic-patterns/closers/false-question.js.map +1 -0
- package/dist/families/syntactic-patterns/closers/summative-closer.js +33 -0
- package/dist/families/syntactic-patterns/closers/summative-closer.js.map +1 -0
- package/dist/families/syntactic-patterns/contrast/blame-reframe.js +59 -0
- package/dist/families/syntactic-patterns/contrast/blame-reframe.js.map +1 -0
- package/dist/families/syntactic-patterns/contrast/contrastive-aphorism.js +203 -0
- package/dist/families/syntactic-patterns/contrast/contrastive-aphorism.js.map +1 -0
- package/dist/families/syntactic-patterns/contrast/negation-reframe.js +20 -0
- package/dist/families/syntactic-patterns/contrast/negation-reframe.js.map +1 -0
- package/dist/families/syntactic-patterns/contrast/private/negation-reframe-matcher.js +218 -0
- package/dist/families/syntactic-patterns/contrast/private/negation-reframe-matcher.js.map +1 -0
- package/dist/families/syntactic-patterns/contrast/private/negation-reframe-parts.js +136 -0
- package/dist/families/syntactic-patterns/contrast/private/negation-reframe-parts.js.map +1 -0
- package/dist/families/syntactic-patterns/generalization/softening-language.js +143 -0
- package/dist/families/syntactic-patterns/generalization/softening-language.js.map +1 -0
- package/dist/families/syntactic-patterns/generalization/universalizing-claims.js +137 -0
- package/dist/families/syntactic-patterns/generalization/universalizing-claims.js.map +1 -0
- package/dist/families/syntactic-patterns/lead-ins/boilerplate-framing.js +104 -0
- package/dist/families/syntactic-patterns/lead-ins/boilerplate-framing.js.map +1 -0
- package/dist/families/syntactic-patterns/lead-ins/generic-signposting.js +230 -0
- package/dist/families/syntactic-patterns/lead-ins/generic-signposting.js.map +1 -0
- package/dist/families/syntactic-patterns/lead-ins/lesson-framing.js +76 -0
- package/dist/families/syntactic-patterns/lead-ins/lesson-framing.js.map +1 -0
- package/dist/families/syntactic-patterns/lead-ins/llm-openers.js +24 -0
- package/dist/families/syntactic-patterns/lead-ins/llm-openers.js.map +1 -0
- package/dist/families/syntactic-patterns/lead-ins/observer-guidance.js +95 -0
- package/dist/families/syntactic-patterns/lead-ins/observer-guidance.js.map +1 -0
- package/dist/families/syntactic-patterns/llm-artifacts/response-wrapper.js +106 -0
- package/dist/families/syntactic-patterns/llm-artifacts/response-wrapper.js.map +1 -0
- package/dist/families/syntactic-patterns/repetition/demonstrative-emphasis.js +251 -0
- package/dist/families/syntactic-patterns/repetition/demonstrative-emphasis.js.map +1 -0
- package/dist/families/syntactic-patterns/repetition/empty-emphasis.js +108 -0
- package/dist/families/syntactic-patterns/repetition/empty-emphasis.js.map +1 -0
- package/dist/families/syntactic-patterns/repetition/fragment-stacking.js +306 -0
- package/dist/families/syntactic-patterns/repetition/fragment-stacking.js.map +1 -0
- package/dist/families/syntactic-patterns/repetition/triple-repeat.js +149 -0
- package/dist/families/syntactic-patterns/repetition/triple-repeat.js.map +1 -0
- package/dist/families/term-policy/recommended-terms.js +87 -0
- package/dist/families/term-policy/recommended-terms.js.map +1 -0
- package/dist/families/term-policy/required-terms.js +32 -0
- package/dist/families/term-policy/required-terms.js.map +1 -0
- package/dist/families/words/data/prohibited-words.json +12 -0
- package/dist/families/words/data/simplicity-pairs.json +7 -0
- package/dist/families/words/hedge-stacking.js +43 -0
- package/dist/families/words/hedge-stacking.js.map +1 -0
- package/dist/families/words/llm-vocabulary.js +33 -0
- package/dist/families/words/llm-vocabulary.js.map +1 -0
- package/dist/families/words/prohibited-words.js +17 -0
- package/dist/families/words/prohibited-words.js.map +1 -0
- package/dist/families/words/simplicity.js +27 -0
- package/dist/families/words/simplicity.js.map +1 -0
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -0
- package/dist/presets/everything.js +52 -0
- package/dist/presets/everything.js.map +1 -0
- package/dist/registries/metrics.js +15 -0
- package/dist/registries/metrics.js.map +1 -0
- package/dist/registries/orthography.js +15 -0
- package/dist/registries/orthography.js.map +1 -0
- package/dist/registries/phrases.js +19 -0
- package/dist/registries/phrases.js.map +1 -0
- package/dist/registries/semantic-thinness.js +5 -0
- package/dist/registries/semantic-thinness.js.map +1 -0
- package/dist/registries/syntactic-patterns/authority.js +5 -0
- package/dist/registries/syntactic-patterns/authority.js.map +1 -0
- package/dist/registries/syntactic-patterns/closers.js +11 -0
- package/dist/registries/syntactic-patterns/closers.js.map +1 -0
- package/dist/registries/syntactic-patterns/contrast.js +9 -0
- package/dist/registries/syntactic-patterns/contrast.js.map +1 -0
- package/dist/registries/syntactic-patterns/generalization.js +7 -0
- package/dist/registries/syntactic-patterns/generalization.js.map +1 -0
- package/dist/registries/syntactic-patterns/lead-ins.js +13 -0
- package/dist/registries/syntactic-patterns/lead-ins.js.map +1 -0
- package/dist/registries/syntactic-patterns/llm-artifacts.js +5 -0
- package/dist/registries/syntactic-patterns/llm-artifacts.js.map +1 -0
- package/dist/registries/syntactic-patterns/repetition.js +11 -0
- package/dist/registries/syntactic-patterns/repetition.js.map +1 -0
- package/dist/registries/syntactic-patterns.js +17 -0
- package/dist/registries/syntactic-patterns.js.map +1 -0
- package/dist/registries/term-policy.js +7 -0
- package/dist/registries/term-policy.js.map +1 -0
- package/dist/registries/words.js +11 -0
- package/dist/registries/words.js.map +1 -0
- package/dist/shared/matchers/phrases.js +71 -0
- package/dist/shared/matchers/phrases.js.map +1 -0
- package/dist/shared/matchers/prose-patterns.js +104 -0
- package/dist/shared/matchers/prose-patterns.js.map +1 -0
- package/dist/shared/text/document.js +18 -0
- package/dist/shared/text/document.js.map +1 -0
- package/dist/shared/text/normalize.js +30 -0
- package/dist/shared/text/normalize.js.map +1 -0
- package/dist/shared/text/quotes.js +20 -0
- package/dist/shared/text/quotes.js.map +1 -0
- package/dist/shared/text/sections.js +119 -0
- package/dist/shared/text/sections.js.map +1 -0
- package/dist/shared/text/sentences.js +79 -0
- package/dist/shared/text/sentences.js.map +1 -0
- package/dist/shared/text/tokens.js +18 -0
- package/dist/shared/text/tokens.js.map +1 -0
- package/dist/shared/text/traverse.js +10 -0
- package/dist/shared/text/traverse.js.map +1 -0
- package/dist/shared/text/whitespace.js +25 -0
- package/dist/shared/text/whitespace.js.map +1 -0
- package/package.json +115 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "gaze-choreography",
|
|
3
|
+
"class": "body-camera",
|
|
4
|
+
"purpose": "Catch eye and gaze choreography where body-part camera movement stands in for a concrete observation, decision, or reaction.",
|
|
5
|
+
"templates": [
|
|
6
|
+
"{gazeSubject} {gazeVerb} {gazeTarget}.",
|
|
7
|
+
"{gazeSubject} {movementVerb} from {gazeTarget} to {gazeTarget}.",
|
|
8
|
+
"{humanSubject} followed {possessive} gaze to {gazeTarget}.",
|
|
9
|
+
"{humanSubject} traced {objectSubject} with {possessive} eyes."
|
|
10
|
+
],
|
|
11
|
+
"slots": {
|
|
12
|
+
"gazeSubject": [
|
|
13
|
+
"her gaze",
|
|
14
|
+
"his gaze",
|
|
15
|
+
"their gaze",
|
|
16
|
+
"her eyes",
|
|
17
|
+
"his eyes",
|
|
18
|
+
"their eyes",
|
|
19
|
+
"his gold eyes",
|
|
20
|
+
"her almond eyes"
|
|
21
|
+
],
|
|
22
|
+
"gazeVerb": [
|
|
23
|
+
"fell to",
|
|
24
|
+
"moved to",
|
|
25
|
+
"went to",
|
|
26
|
+
"darted across",
|
|
27
|
+
"measured",
|
|
28
|
+
"searched",
|
|
29
|
+
"tracked"
|
|
30
|
+
],
|
|
31
|
+
"movementVerb": ["moved", "went", "traveled", "shifted"],
|
|
32
|
+
"gazeTarget": [
|
|
33
|
+
"the ground",
|
|
34
|
+
"the floor",
|
|
35
|
+
"the yard",
|
|
36
|
+
"the room",
|
|
37
|
+
"the door",
|
|
38
|
+
"the street",
|
|
39
|
+
"the shadows",
|
|
40
|
+
"the rooftops",
|
|
41
|
+
"the line of small chests",
|
|
42
|
+
"the dark rim of the clay"
|
|
43
|
+
],
|
|
44
|
+
"humanSubject": [
|
|
45
|
+
"he",
|
|
46
|
+
"she",
|
|
47
|
+
"they",
|
|
48
|
+
"we",
|
|
49
|
+
"the group",
|
|
50
|
+
"cassia",
|
|
51
|
+
"arden",
|
|
52
|
+
"the cubs"
|
|
53
|
+
],
|
|
54
|
+
"possessive": ["her", "his", "their", "my"],
|
|
55
|
+
"objectSubject": [
|
|
56
|
+
"the trail",
|
|
57
|
+
"the badge",
|
|
58
|
+
"the line",
|
|
59
|
+
"the print",
|
|
60
|
+
"the prints"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"rejectIf": [
|
|
64
|
+
"sentence states the concrete clue being observed",
|
|
65
|
+
"sentence names a deliberate search goal",
|
|
66
|
+
"sentence includes a physical action beyond looking",
|
|
67
|
+
"sentence is quoted dialogue"
|
|
68
|
+
],
|
|
69
|
+
"positiveExamples": [
|
|
70
|
+
"Her gaze fell to the ground.",
|
|
71
|
+
"His gold eyes measured the line of small chests.",
|
|
72
|
+
"Her almond eyes darted across the yard.",
|
|
73
|
+
"They followed her gaze to the dark rim of the clay.",
|
|
74
|
+
"Cassia traced the trail with her eyes.",
|
|
75
|
+
"His eyes moved from the shadows to the rooftops."
|
|
76
|
+
],
|
|
77
|
+
"negativeExamples": [
|
|
78
|
+
"Cassia looked for the single stitch out of place.",
|
|
79
|
+
"He checked for straight backs and tucked tails.",
|
|
80
|
+
"She looked under the bench for the missing badge.",
|
|
81
|
+
"His eyes watered after the forge smoke reached the room."
|
|
82
|
+
],
|
|
83
|
+
"notes": [
|
|
84
|
+
"This pattern is about camera-like gaze movement, not every verb of seeing.",
|
|
85
|
+
"The strongest signals are gaze as grammatical subject and eyes as a moving camera."
|
|
86
|
+
]
|
|
87
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "generic-lesson-extraction",
|
|
3
|
+
"class": "lesson-extraction",
|
|
4
|
+
"purpose": "Catch generic lesson, answer, fix, or point lines whose complement is a thin evaluative word or abstract noun.",
|
|
5
|
+
"templates": [
|
|
6
|
+
"The {summaryNoun} {linkingVerb} {thinComplement}.",
|
|
7
|
+
"The {summaryNoun} {linkingVerb} simple.",
|
|
8
|
+
"The {summaryNoun} {linkingVerb} not {heroicComplement}.",
|
|
9
|
+
"The {summaryNoun} {linkingVerb} usually {thinComplement}."
|
|
10
|
+
],
|
|
11
|
+
"slots": {
|
|
12
|
+
"summaryNoun": [
|
|
13
|
+
"lesson",
|
|
14
|
+
"answer",
|
|
15
|
+
"fix",
|
|
16
|
+
"point",
|
|
17
|
+
"move",
|
|
18
|
+
"strategy",
|
|
19
|
+
"trick",
|
|
20
|
+
"truth",
|
|
21
|
+
"work",
|
|
22
|
+
"practice",
|
|
23
|
+
"solution",
|
|
24
|
+
"pattern",
|
|
25
|
+
"result",
|
|
26
|
+
"difference",
|
|
27
|
+
"takeaway",
|
|
28
|
+
"message"
|
|
29
|
+
],
|
|
30
|
+
"linkingVerb": ["is", "was", "becomes", "became", "remains", "stays"],
|
|
31
|
+
"thinComplement": [
|
|
32
|
+
"simple",
|
|
33
|
+
"small",
|
|
34
|
+
"boring",
|
|
35
|
+
"plain",
|
|
36
|
+
"clear",
|
|
37
|
+
"obvious",
|
|
38
|
+
"consistency",
|
|
39
|
+
"practice",
|
|
40
|
+
"patience",
|
|
41
|
+
"repair",
|
|
42
|
+
"attention",
|
|
43
|
+
"discipline",
|
|
44
|
+
"repetition",
|
|
45
|
+
"a smaller move",
|
|
46
|
+
"a quieter practice",
|
|
47
|
+
"a steadier rhythm"
|
|
48
|
+
],
|
|
49
|
+
"heroicComplement": [
|
|
50
|
+
"heroic",
|
|
51
|
+
"dramatic",
|
|
52
|
+
"complicated",
|
|
53
|
+
"mysterious",
|
|
54
|
+
"glamorous",
|
|
55
|
+
"magical"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"rejectIf": [
|
|
59
|
+
"complement starts an infinitive concrete fix",
|
|
60
|
+
"sentence names a specific technical action",
|
|
61
|
+
"sentence includes a concrete example after a colon",
|
|
62
|
+
"sentence is a heading or list label rather than prose"
|
|
63
|
+
],
|
|
64
|
+
"positiveExamples": [
|
|
65
|
+
"The lesson was simple.",
|
|
66
|
+
"The answer is consistency.",
|
|
67
|
+
"The fix is boring.",
|
|
68
|
+
"The move is smaller than people want.",
|
|
69
|
+
"The point is practice.",
|
|
70
|
+
"The truth is not dramatic."
|
|
71
|
+
],
|
|
72
|
+
"negativeExamples": [
|
|
73
|
+
"The fix is to initialize the parser before reading offsets.",
|
|
74
|
+
"The answer is 42.",
|
|
75
|
+
"The lesson is that expired tokens must be rejected before refresh.",
|
|
76
|
+
"The strategy is to call every patient within 48 hours."
|
|
77
|
+
],
|
|
78
|
+
"notes": [
|
|
79
|
+
"A related syntactic-pattern rule already catches some lesson framing.",
|
|
80
|
+
"This pattern should focus on low-information complements."
|
|
81
|
+
]
|
|
82
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "generic-pressure-or-stakes",
|
|
3
|
+
"class": "stakes",
|
|
4
|
+
"purpose": "Catch generic pressure, stakes, or weight lines that imply importance without concrete risk or consequence.",
|
|
5
|
+
"templates": [
|
|
6
|
+
"{stakesSubject} {linkingVerb} {thinStakesComplement}.",
|
|
7
|
+
"{stakesSubject} {pressureVerb} {weakPlace}.",
|
|
8
|
+
"{genericSubject} {stakesVerb} {weakDegree}.",
|
|
9
|
+
"{pressureSubject} {pressureVerb} {weakPlace}."
|
|
10
|
+
],
|
|
11
|
+
"slots": {
|
|
12
|
+
"stakesSubject": [
|
|
13
|
+
"the stakes",
|
|
14
|
+
"the pressure",
|
|
15
|
+
"the weight",
|
|
16
|
+
"the cost",
|
|
17
|
+
"the risk",
|
|
18
|
+
"the burden",
|
|
19
|
+
"the choice",
|
|
20
|
+
"the decision",
|
|
21
|
+
"the moment",
|
|
22
|
+
"the work"
|
|
23
|
+
],
|
|
24
|
+
"genericSubject": [
|
|
25
|
+
"it",
|
|
26
|
+
"this",
|
|
27
|
+
"that",
|
|
28
|
+
"everything",
|
|
29
|
+
"the moment",
|
|
30
|
+
"the work",
|
|
31
|
+
"the decision",
|
|
32
|
+
"the choice"
|
|
33
|
+
],
|
|
34
|
+
"pressureSubject": [
|
|
35
|
+
"pressure",
|
|
36
|
+
"a pressure",
|
|
37
|
+
"weight",
|
|
38
|
+
"a weight",
|
|
39
|
+
"tension",
|
|
40
|
+
"a tension",
|
|
41
|
+
"stress",
|
|
42
|
+
"a stress"
|
|
43
|
+
],
|
|
44
|
+
"linkingVerb": ["was", "is", "felt", "became", "seemed", "remained"],
|
|
45
|
+
"thinStakesComplement": [
|
|
46
|
+
"real",
|
|
47
|
+
"high",
|
|
48
|
+
"heavy",
|
|
49
|
+
"different",
|
|
50
|
+
"harder",
|
|
51
|
+
"clear",
|
|
52
|
+
"not small",
|
|
53
|
+
"bigger than expected",
|
|
54
|
+
"hard to ignore",
|
|
55
|
+
"more than symbolic"
|
|
56
|
+
],
|
|
57
|
+
"pressureVerb": [
|
|
58
|
+
"sat",
|
|
59
|
+
"hung",
|
|
60
|
+
"settled",
|
|
61
|
+
"built",
|
|
62
|
+
"grew",
|
|
63
|
+
"landed",
|
|
64
|
+
"returned"
|
|
65
|
+
],
|
|
66
|
+
"weakPlace": [
|
|
67
|
+
"in the room",
|
|
68
|
+
"between them",
|
|
69
|
+
"around them",
|
|
70
|
+
"over the table",
|
|
71
|
+
"in the air",
|
|
72
|
+
"there",
|
|
73
|
+
"again"
|
|
74
|
+
],
|
|
75
|
+
"stakesVerb": [
|
|
76
|
+
"mattered",
|
|
77
|
+
"counted",
|
|
78
|
+
"weighed",
|
|
79
|
+
"landed",
|
|
80
|
+
"changed things"
|
|
81
|
+
],
|
|
82
|
+
"weakDegree": ["now", "then", "more", "a lot", "in the end", "after that"]
|
|
83
|
+
},
|
|
84
|
+
"rejectIf": [
|
|
85
|
+
"sentence names the actual risk, cost, deadline, actor, patient, money amount, legal consequence, or system failure",
|
|
86
|
+
"sentence includes a concrete reason the stakes are high",
|
|
87
|
+
"sentence follows with a colon and concrete explanation"
|
|
88
|
+
],
|
|
89
|
+
"positiveExamples": [
|
|
90
|
+
"The stakes felt real.",
|
|
91
|
+
"The pressure sat in the room.",
|
|
92
|
+
"The weight was hard to ignore.",
|
|
93
|
+
"It mattered now.",
|
|
94
|
+
"The decision felt bigger than expected.",
|
|
95
|
+
"A pressure settled between them."
|
|
96
|
+
],
|
|
97
|
+
"negativeExamples": [
|
|
98
|
+
"The stakes were high because the permit expired at midnight.",
|
|
99
|
+
"The pressure rose to 80 psi before the relief valve opened.",
|
|
100
|
+
"The cost was $42,000 higher than the approved budget.",
|
|
101
|
+
"The decision mattered because it changed the custody schedule."
|
|
102
|
+
],
|
|
103
|
+
"notes": [
|
|
104
|
+
"This pattern should require missing concrete consequence.",
|
|
105
|
+
"It overlaps with emotional weather but targets importance language."
|
|
106
|
+
]
|
|
107
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "generic-realization",
|
|
3
|
+
"class": "realization",
|
|
4
|
+
"purpose": "Catch realization lines that announce understanding without naming what was learned.",
|
|
5
|
+
"templates": [
|
|
6
|
+
"{humanSubject} {realizationVerb} {genericObject}.",
|
|
7
|
+
"{humanSubject} {realizationVerb} that {genericSubject} {thinPredicate}.",
|
|
8
|
+
"{realizationSubject} {linkingVerb} {thinComplement}.",
|
|
9
|
+
"{humanSubject} finally {realizationVerb}."
|
|
10
|
+
],
|
|
11
|
+
"slots": {
|
|
12
|
+
"humanSubject": [
|
|
13
|
+
"he",
|
|
14
|
+
"she",
|
|
15
|
+
"they",
|
|
16
|
+
"we",
|
|
17
|
+
"i",
|
|
18
|
+
"the team",
|
|
19
|
+
"the group",
|
|
20
|
+
"the couple",
|
|
21
|
+
"the manager",
|
|
22
|
+
"the parent",
|
|
23
|
+
"the child",
|
|
24
|
+
"everyone",
|
|
25
|
+
"someone"
|
|
26
|
+
],
|
|
27
|
+
"realizationVerb": [
|
|
28
|
+
"realized",
|
|
29
|
+
"understood",
|
|
30
|
+
"saw",
|
|
31
|
+
"noticed",
|
|
32
|
+
"learned",
|
|
33
|
+
"recognized",
|
|
34
|
+
"remembered",
|
|
35
|
+
"accepted",
|
|
36
|
+
"knew",
|
|
37
|
+
"felt"
|
|
38
|
+
],
|
|
39
|
+
"genericObject": [
|
|
40
|
+
"the truth",
|
|
41
|
+
"the pattern",
|
|
42
|
+
"the point",
|
|
43
|
+
"the lesson",
|
|
44
|
+
"the answer",
|
|
45
|
+
"what mattered",
|
|
46
|
+
"what had changed",
|
|
47
|
+
"what was happening",
|
|
48
|
+
"why it mattered"
|
|
49
|
+
],
|
|
50
|
+
"genericSubject": [
|
|
51
|
+
"things",
|
|
52
|
+
"everything",
|
|
53
|
+
"it",
|
|
54
|
+
"this",
|
|
55
|
+
"that",
|
|
56
|
+
"the work",
|
|
57
|
+
"the process",
|
|
58
|
+
"the relationship",
|
|
59
|
+
"the moment"
|
|
60
|
+
],
|
|
61
|
+
"thinPredicate": [
|
|
62
|
+
"was different",
|
|
63
|
+
"had changed",
|
|
64
|
+
"mattered",
|
|
65
|
+
"was harder",
|
|
66
|
+
"was simple",
|
|
67
|
+
"was not simple",
|
|
68
|
+
"would take time",
|
|
69
|
+
"was the point"
|
|
70
|
+
],
|
|
71
|
+
"realizationSubject": [
|
|
72
|
+
"the realization",
|
|
73
|
+
"the lesson",
|
|
74
|
+
"the truth",
|
|
75
|
+
"the answer",
|
|
76
|
+
"the point"
|
|
77
|
+
],
|
|
78
|
+
"linkingVerb": ["was", "is", "became", "remained"],
|
|
79
|
+
"thinComplement": [
|
|
80
|
+
"simple",
|
|
81
|
+
"clear",
|
|
82
|
+
"harder",
|
|
83
|
+
"different",
|
|
84
|
+
"the point",
|
|
85
|
+
"the lesson",
|
|
86
|
+
"what mattered"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"rejectIf": [
|
|
90
|
+
"sentence names the concrete fact learned",
|
|
91
|
+
"sentence includes a source of evidence",
|
|
92
|
+
"sentence includes a concrete action that follows from the realization",
|
|
93
|
+
"sentence is quoted dialogue"
|
|
94
|
+
],
|
|
95
|
+
"positiveExamples": [
|
|
96
|
+
"She realized the truth.",
|
|
97
|
+
"They understood what mattered.",
|
|
98
|
+
"He finally saw the pattern.",
|
|
99
|
+
"The realization was simple.",
|
|
100
|
+
"They learned that everything had changed.",
|
|
101
|
+
"She noticed what was happening."
|
|
102
|
+
],
|
|
103
|
+
"negativeExamples": [
|
|
104
|
+
"She realized the router was still using the old DNS record.",
|
|
105
|
+
"They understood that the grant deadline moved to March 14.",
|
|
106
|
+
"He saw the cracked valve under the sink.",
|
|
107
|
+
"The lesson was to cap retries after three failed requests."
|
|
108
|
+
],
|
|
109
|
+
"notes": [
|
|
110
|
+
"This is lower confidence than empty scene transition.",
|
|
111
|
+
"It needs concrete-object rejection to avoid normal narrative and technical prose."
|
|
112
|
+
]
|
|
113
|
+
}
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "hollow-significance",
|
|
3
|
+
"class": "significance",
|
|
4
|
+
"purpose": "Catch lines that assert importance, sticking power, or consequence without naming a concrete referent or result.",
|
|
5
|
+
"templates": [
|
|
6
|
+
"{deicticSubject} {significanceVerb} {intensifier}.",
|
|
7
|
+
"{summarySubject} {linkingVerb} {importanceComplement}.",
|
|
8
|
+
"{summarySubject} {linkingVerb} the part that {stickVerb}.",
|
|
9
|
+
"{deicticSubject} {changePhrase}."
|
|
10
|
+
],
|
|
11
|
+
"slots": {
|
|
12
|
+
"deicticSubject": [
|
|
13
|
+
"this",
|
|
14
|
+
"that",
|
|
15
|
+
"it",
|
|
16
|
+
"this part",
|
|
17
|
+
"that part",
|
|
18
|
+
"this moment",
|
|
19
|
+
"that moment",
|
|
20
|
+
"this change",
|
|
21
|
+
"that change",
|
|
22
|
+
"this result",
|
|
23
|
+
"that result"
|
|
24
|
+
],
|
|
25
|
+
"summarySubject": [
|
|
26
|
+
"the result",
|
|
27
|
+
"the lesson",
|
|
28
|
+
"the point",
|
|
29
|
+
"the answer",
|
|
30
|
+
"the shift",
|
|
31
|
+
"the move",
|
|
32
|
+
"the work",
|
|
33
|
+
"the change",
|
|
34
|
+
"the thing",
|
|
35
|
+
"the part",
|
|
36
|
+
"the detail",
|
|
37
|
+
"the truth",
|
|
38
|
+
"the difference"
|
|
39
|
+
],
|
|
40
|
+
"significanceVerb": [
|
|
41
|
+
"mattered",
|
|
42
|
+
"counts",
|
|
43
|
+
"sticks",
|
|
44
|
+
"lasts",
|
|
45
|
+
"helps",
|
|
46
|
+
"worked",
|
|
47
|
+
"changed",
|
|
48
|
+
"landed"
|
|
49
|
+
],
|
|
50
|
+
"linkingVerb": ["is", "was", "became", "remained"],
|
|
51
|
+
"importanceComplement": [
|
|
52
|
+
"what mattered",
|
|
53
|
+
"the key",
|
|
54
|
+
"the point",
|
|
55
|
+
"the part that matters",
|
|
56
|
+
"the part that sticks",
|
|
57
|
+
"the useful part",
|
|
58
|
+
"the real work",
|
|
59
|
+
"where it starts",
|
|
60
|
+
"where things change"
|
|
61
|
+
],
|
|
62
|
+
"stickVerb": ["sticks", "matters", "lasts", "changes", "helps", "works"],
|
|
63
|
+
"changePhrase": [
|
|
64
|
+
"changed everything",
|
|
65
|
+
"made the difference",
|
|
66
|
+
"helped a lot",
|
|
67
|
+
"mattered more than it seemed",
|
|
68
|
+
"stuck with them"
|
|
69
|
+
],
|
|
70
|
+
"intensifier": [
|
|
71
|
+
"more than it seemed",
|
|
72
|
+
"more than expected",
|
|
73
|
+
"more than anyone knew",
|
|
74
|
+
"in the end",
|
|
75
|
+
"after all",
|
|
76
|
+
"a lot"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
"rejectIf": [
|
|
80
|
+
"sentence names the concrete referent of this or that",
|
|
81
|
+
"sentence includes a concrete result",
|
|
82
|
+
"previous sentence has a precise referent and this sentence is a legitimate summary",
|
|
83
|
+
"line is part of a quoted reaction or cited claim"
|
|
84
|
+
],
|
|
85
|
+
"positiveExamples": [
|
|
86
|
+
"That mattered more than it seemed.",
|
|
87
|
+
"It changed everything.",
|
|
88
|
+
"The result was what mattered.",
|
|
89
|
+
"The lesson is the part that sticks.",
|
|
90
|
+
"That one change helped a lot.",
|
|
91
|
+
"The answer was the real work."
|
|
92
|
+
],
|
|
93
|
+
"negativeExamples": [
|
|
94
|
+
"The patched offset mapper changed every reported range in the fixture.",
|
|
95
|
+
"That mattered because it removed the last failing repayment case.",
|
|
96
|
+
"The result was a 14 percent drop in missed appointments.",
|
|
97
|
+
"The lesson is to initialize the parser before reading paragraph offsets."
|
|
98
|
+
],
|
|
99
|
+
"notes": [
|
|
100
|
+
"This overlaps with existing syntactic-pattern rules and should be reviewed before activation.",
|
|
101
|
+
"This pattern needs previous-sentence referent checks."
|
|
102
|
+
]
|
|
103
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "low-information-physical-blocking",
|
|
3
|
+
"class": "physical-blocking",
|
|
4
|
+
"purpose": "Catch bland physical action beats that move bodies around without adding object, goal, cause, or consequence.",
|
|
5
|
+
"templates": [
|
|
6
|
+
"{humanSubject} {weakAdverb} {bodyVerb} {weakLocative}.",
|
|
7
|
+
"{humanSubject} {bodyVerb} {weakLocative}.",
|
|
8
|
+
"{humanSubject} {bodyVerb} and {bodyVerb} {weakLocative}.",
|
|
9
|
+
"{humanSubject} {bodyVerb} from {genericFace} to {genericFace}."
|
|
10
|
+
],
|
|
11
|
+
"slots": {
|
|
12
|
+
"humanSubject": [
|
|
13
|
+
"he",
|
|
14
|
+
"she",
|
|
15
|
+
"they",
|
|
16
|
+
"we",
|
|
17
|
+
"i",
|
|
18
|
+
"the man",
|
|
19
|
+
"the woman",
|
|
20
|
+
"the person",
|
|
21
|
+
"the kid",
|
|
22
|
+
"the child",
|
|
23
|
+
"the team",
|
|
24
|
+
"the group",
|
|
25
|
+
"the manager",
|
|
26
|
+
"the teacher",
|
|
27
|
+
"the parent",
|
|
28
|
+
"the doctor",
|
|
29
|
+
"the engineer",
|
|
30
|
+
"the couple",
|
|
31
|
+
"everyone",
|
|
32
|
+
"someone"
|
|
33
|
+
],
|
|
34
|
+
"weakAdverb": [
|
|
35
|
+
"just",
|
|
36
|
+
"simply",
|
|
37
|
+
"quietly",
|
|
38
|
+
"silently",
|
|
39
|
+
"slowly",
|
|
40
|
+
"finally",
|
|
41
|
+
"only",
|
|
42
|
+
"still"
|
|
43
|
+
],
|
|
44
|
+
"bodyVerb": [
|
|
45
|
+
"stood",
|
|
46
|
+
"sat",
|
|
47
|
+
"looked",
|
|
48
|
+
"turned",
|
|
49
|
+
"walked",
|
|
50
|
+
"stared",
|
|
51
|
+
"paused",
|
|
52
|
+
"waited",
|
|
53
|
+
"nodded",
|
|
54
|
+
"smiled",
|
|
55
|
+
"blinked",
|
|
56
|
+
"breathed",
|
|
57
|
+
"glanced",
|
|
58
|
+
"shifted",
|
|
59
|
+
"stepped",
|
|
60
|
+
"moved"
|
|
61
|
+
],
|
|
62
|
+
"weakLocative": [
|
|
63
|
+
"there",
|
|
64
|
+
"around",
|
|
65
|
+
"back",
|
|
66
|
+
"away",
|
|
67
|
+
"down",
|
|
68
|
+
"up",
|
|
69
|
+
"over",
|
|
70
|
+
"again",
|
|
71
|
+
"for a moment",
|
|
72
|
+
"in place",
|
|
73
|
+
"at each other",
|
|
74
|
+
"toward the door",
|
|
75
|
+
"into the room"
|
|
76
|
+
],
|
|
77
|
+
"genericFace": [
|
|
78
|
+
"one face",
|
|
79
|
+
"another face",
|
|
80
|
+
"the others",
|
|
81
|
+
"each other",
|
|
82
|
+
"the room",
|
|
83
|
+
"the table",
|
|
84
|
+
"the floor",
|
|
85
|
+
"the door"
|
|
86
|
+
]
|
|
87
|
+
},
|
|
88
|
+
"rejectIf": [
|
|
89
|
+
"sentence has a direct object that carries specific information",
|
|
90
|
+
"sentence has a purpose phrase",
|
|
91
|
+
"sentence has a cause clause",
|
|
92
|
+
"sentence has a concrete object being searched for, handled, measured, or changed",
|
|
93
|
+
"sentence is part of quoted dialogue attribution"
|
|
94
|
+
],
|
|
95
|
+
"positiveExamples": [
|
|
96
|
+
"They just stood there.",
|
|
97
|
+
"She looked around.",
|
|
98
|
+
"He turned and looked back.",
|
|
99
|
+
"They looked from one face to another.",
|
|
100
|
+
"The group waited quietly.",
|
|
101
|
+
"He sat there for a moment."
|
|
102
|
+
],
|
|
103
|
+
"negativeExamples": [
|
|
104
|
+
"She looked around for the missing inhaler.",
|
|
105
|
+
"He turned and looked back when the alarm sounded.",
|
|
106
|
+
"They stood there until the vibration sensor stopped moving.",
|
|
107
|
+
"The engineer stepped into the room and unplugged the failing router."
|
|
108
|
+
],
|
|
109
|
+
"notes": [
|
|
110
|
+
"This pattern is about low-information blocking, not physical action in general.",
|
|
111
|
+
"Reject purpose and cause aggressively."
|
|
112
|
+
]
|
|
113
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "point-is-frame",
|
|
3
|
+
"class": "summary-frame",
|
|
4
|
+
"purpose": "Catch point/lesson/truth frames that announce the interpretive frame instead of stating the concrete claim.",
|
|
5
|
+
"matchMode": "contains",
|
|
6
|
+
"maxTokens": 80,
|
|
7
|
+
"templates": [
|
|
8
|
+
"the {summaryNoun} {linkingVerb} to {abstractAction}.",
|
|
9
|
+
"the {summaryNoun} {linkingVerb} not {abstractNoun}.",
|
|
10
|
+
"the {summaryNoun} {linkingVerb} not to {abstractAction}.",
|
|
11
|
+
"the {summaryNoun} {linkingVerb} {thinComplement}.",
|
|
12
|
+
"the {summaryNoun} was not {abstractNoun} for its own sake."
|
|
13
|
+
],
|
|
14
|
+
"slots": {
|
|
15
|
+
"summaryNoun": [
|
|
16
|
+
"point",
|
|
17
|
+
"lesson",
|
|
18
|
+
"truth",
|
|
19
|
+
"answer",
|
|
20
|
+
"invitation",
|
|
21
|
+
"goal",
|
|
22
|
+
"work"
|
|
23
|
+
],
|
|
24
|
+
"linkingVerb": ["is", "was"],
|
|
25
|
+
"abstractAction": [
|
|
26
|
+
"be honest",
|
|
27
|
+
"be perfect",
|
|
28
|
+
"begin",
|
|
29
|
+
"listen",
|
|
30
|
+
"remember",
|
|
31
|
+
"return",
|
|
32
|
+
"trust",
|
|
33
|
+
"notice",
|
|
34
|
+
"choose clarity",
|
|
35
|
+
"be loyal to what is familiar"
|
|
36
|
+
],
|
|
37
|
+
"abstractNoun": [
|
|
38
|
+
"performance",
|
|
39
|
+
"perfection",
|
|
40
|
+
"revelation",
|
|
41
|
+
"escape",
|
|
42
|
+
"achievement",
|
|
43
|
+
"control",
|
|
44
|
+
"strategy",
|
|
45
|
+
"a thunderclap",
|
|
46
|
+
"the feature set"
|
|
47
|
+
],
|
|
48
|
+
"thinComplement": [
|
|
49
|
+
"simple",
|
|
50
|
+
"clear",
|
|
51
|
+
"enough",
|
|
52
|
+
"the work",
|
|
53
|
+
"the practice",
|
|
54
|
+
"the shift",
|
|
55
|
+
"what matters"
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
"rejectIf": [
|
|
59
|
+
"sentence gives a concrete rule after a colon",
|
|
60
|
+
"sentence names the actual lesson as a specific action",
|
|
61
|
+
"sentence uses point as a geometric or score noun"
|
|
62
|
+
],
|
|
63
|
+
"positiveExamples": [
|
|
64
|
+
"The point is not performance.",
|
|
65
|
+
"The point is to be honest enough to see what is there.",
|
|
66
|
+
"The lesson is simple.",
|
|
67
|
+
"The invitation is to trust the fog.",
|
|
68
|
+
"The point was not revelation for its own sake.",
|
|
69
|
+
"The answer is enough."
|
|
70
|
+
],
|
|
71
|
+
"negativeExamples": [
|
|
72
|
+
"The point is to rotate the signing key every 30 days.",
|
|
73
|
+
"The point was marked on the map with red ink.",
|
|
74
|
+
"The lesson is: measure twice before cutting the hinge.",
|
|
75
|
+
"The goal is to carry the ladder to the north wall before sunset."
|
|
76
|
+
],
|
|
77
|
+
"notes": [
|
|
78
|
+
"This is the generated-prose version of generic signposting.",
|
|
79
|
+
"It should remain separate because the semantic defect is the empty interpretive noun."
|
|
80
|
+
]
|
|
81
|
+
}
|