Advertisement
smeech

Psychological assessment

Mar 18th, 2024 (edited)
107
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.99 KB | Software | 0 0
  1. # Espanso draft form and output for Bswizzles
  2.   - trigger: /mse
  3.     replace: >
  4.       Client presented as age {{form1.age}} and was {{form1.alert}}.
  5.        Client was {{form1.calm}} and {{form1.attended}} to the interview.
  6.        Client was dressed in {{form1.clothing}} clothing appropriate for the
  7.        setting with {{form1.hygiene}} as though {{form1.not1}} regularly
  8.        attending to ADLs.
  9.        Eye contact was {{form1.wnl}}. Speech was {{form1.rtv}}.
  10.        Client reported mood as {{form1.mood}}.
  11.        Observed affect was {{form1.congruent}}.
  12.        Client verbally denied {{form1.risk}} and did {{form1.not2}} appear
  13.        to be RTIS.
  14.        Insight {{form1.insight}}, impulse control {{form1.impulse}}, and
  15.        judgement {{form1.judge}}. TC {{form1.tc}}. TP {{form1.tp}}.
  16.        Client reported sleep as {{form1.sleep}}, appetite as {{form1.app}},
  17.        and energy as {{form1.energy}}.
  18.        No other changes to NVS reported.
  19.     vars:
  20.       - name: choices # Useful variable of simple choices to save repetition below
  21.         type: echo
  22.         params:
  23.           echo: |
  24.            good
  25.             moderate
  26.             poor
  27.       - name: form1
  28.         type: form
  29.         params:
  30.           layout:
  31.            "Client presented as age [[age]] and was [[alert]].\n
  32.            Client was [[calm]] and [[attended]] to the interview.\n
  33.            Client was dressed in [[clothing]] clothing appropriate for the
  34.            setting with [[hygiene]]\n
  35.            as though [[not1]] regularly attending to ADLs.\n
  36.            Eye contact was [[wnl]]. Speech was [[rtv]].\n
  37.            Client reported mood as [[mood]]. Observed affect was
  38.            [[congruent]].\n
  39.            Client verbally denied [[risk]] and did [[not2]] appear to be
  40.            RTIS.\n
  41.            Insight [[insight]], impulse control [[impulse]], and
  42.            judgement [[judge]].\n
  43.            TC [[tc]]. TP [[tp]].\n
  44.            Client reported sleep as [[sleep]], appetite as [[app]],
  45.            and energy as [[energy]].\n
  46.            No other changes to NVS reported."
  47.           fields:
  48.             alert:
  49.               type: choice
  50.               default: alert
  51.               values: |
  52.                alert
  53.                 sleepy
  54.                 intoxicated
  55.             calm:
  56.               type: text
  57.               default: calm
  58.               values: |
  59.                agitated
  60.                 anxious
  61.                 angry
  62.                 calm
  63.             attended:
  64.               type: choice
  65.               default: attended
  66.               values: |
  67.                attended
  68.                 did not attend
  69.             clothing:
  70.               multiline: true
  71.               default: clean
  72.             hygiene:
  73.               type: choice
  74.               default: good
  75.               values: "{{choices}}" # as defined above
  76.             not1:
  77.               type: list
  78.               values: |
  79.                not
  80.                 he was
  81.                 she was
  82.             wnl:
  83.               type: text
  84.               default: within normal limits
  85.             rtv:
  86.               type:
  87.             mood:
  88.               type: choice
  89.               default: good
  90.               values: "{{choices}}"
  91.             congruent:
  92.               type:
  93.             risk:
  94.             not2:
  95.             insight:
  96.               type: choice
  97.               default: good
  98.               values: "{{choices}}"
  99.             impulse:
  100.               type: choice
  101.               default: good
  102.               values: "{{choices}}"
  103.             judge:
  104.               type: choice
  105.               default: good
  106.               values: "{{choices}}"
  107.             tc:
  108.             tp:
  109.             sleep:
  110.               type: choice
  111.               default: good
  112.               values: "{{choices}}"
  113.             app:
  114.               type: choice
  115.               default: good
  116.               values: "{{choices}}"
  117.             energy:
  118.               type: choice
  119.               default: good
  120.               values: "{{choices}}"
Advertisement
Comments
  • smeech
    279 days (edited)
    # text 0.13 KB | 0 0
    1. I threw in a list: so you could see how it appears.
    2. Multiline changes the appearances of the other boxes on the line, unfortunately.
Add Comment
Please, Sign In to add comment
Advertisement